99 lines
3.2 KiB
C++
99 lines
3.2 KiB
C++
/* Copyright (C) 2004 Bart
|
|
* Copyright (C) 2008, 2009 Curtis Gedak
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "../include/Dialog_Disklabel.h"
|
|
|
|
namespace GParted
|
|
{
|
|
|
|
Dialog_Disklabel::Dialog_Disklabel( const Glib::ustring & device_path, const std::vector<Glib::ustring> & disklabeltypes )
|
|
: image(Gtk::Stock::DIALOG_WARNING, Gtk::ICON_SIZE_DIALOG)
|
|
{
|
|
/*TO TRANSLATORS: dialogtitle, looks like Create partition table on /dev/hda */
|
|
this ->set_title( String::ucompose( _("Create partition table on %1"), device_path ) );
|
|
this ->set_has_separator( false ) ;
|
|
this ->set_resizable( false );
|
|
|
|
{
|
|
Gtk::HBox* hbox(manage(new Gtk::HBox()));
|
|
|
|
get_vbox()->pack_start(*hbox, Gtk::PACK_SHRINK);
|
|
|
|
Gtk::VBox* vbox(manage(new Gtk::VBox()));
|
|
|
|
vbox->set_border_width(10);
|
|
hbox->pack_start(*vbox, Gtk::PACK_SHRINK);
|
|
|
|
vbox->pack_start(image, Gtk::PACK_SHRINK);
|
|
|
|
vbox = manage(new Gtk::VBox());
|
|
vbox->set_border_width(10);
|
|
hbox->pack_start(*vbox, Gtk::PACK_SHRINK);
|
|
|
|
{
|
|
Glib::ustring str_temp("<span weight=\"bold\" size=\"larger\">");
|
|
|
|
/*TO TRANSLATORS: looks like WARNING: This will ERASE ALL DATA on the ENTIRE DISK /dev/hda */
|
|
str_temp += String::ucompose(_("WARNING: This will ERASE ALL DATA on the ENTIRE DISK %1"), device_path);
|
|
str_temp += "</span>\n";
|
|
vbox->pack_start(*Utils::mk_label(str_temp), Gtk::PACK_SHRINK);
|
|
|
|
str_temp = _("Default is to create an MS-DOS partition table.");
|
|
str_temp += "\n";
|
|
vbox->pack_start(*Utils::mk_label(str_temp, true, Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, true),
|
|
Gtk::PACK_SHRINK);
|
|
|
|
str_temp = "<b>";
|
|
str_temp += _("Advanced");
|
|
str_temp += "</b>";
|
|
expander_advanced.set_label(str_temp);
|
|
expander_advanced.set_use_markup(true);
|
|
|
|
vbox->pack_start(expander_advanced, Gtk::PACK_SHRINK);
|
|
|
|
hbox = manage(new Gtk::HBox(false, 5));
|
|
hbox->set_border_width(5);
|
|
str_temp = _("Select new partition table type:");
|
|
str_temp += "\t";
|
|
hbox->pack_start(*Utils::mk_label(str_temp), Gtk::PACK_SHRINK);
|
|
}
|
|
|
|
expander_advanced.add(*hbox);
|
|
|
|
//create and add combo with partition table types (label types)
|
|
this ->labeltypes = disklabeltypes ;
|
|
|
|
for (unsigned int t = 0; t < labeltypes.size(); ++t)
|
|
combo_labeltypes.append_text(labeltypes[t]);
|
|
|
|
combo_labeltypes.set_active(0);
|
|
hbox->pack_start(combo_labeltypes, Gtk::PACK_SHRINK);
|
|
}
|
|
|
|
this ->add_button( Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL );
|
|
this ->add_button( Gtk::Stock::APPLY, Gtk::RESPONSE_APPLY );
|
|
this ->show_all_children() ;
|
|
}
|
|
|
|
Glib::ustring Dialog_Disklabel::Get_Disklabel()
|
|
{
|
|
return labeltypes[ combo_labeltypes .get_active_row_number() ] ;
|
|
}
|
|
|
|
}//GParted
|