100 lines
3.8 KiB
C++
100 lines
3.8 KiB
C++
/* Copyright (C) 2004, 2005, 2006, 2007, 2008 Bart Hakvoort
|
|
*
|
|
* 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 )
|
|
{
|
|
/*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 );
|
|
|
|
hbox = manage( new Gtk::HBox() ) ;
|
|
this ->get_vbox() ->pack_start( *hbox, Gtk::PACK_SHRINK );
|
|
|
|
vbox = manage( new Gtk::VBox() ) ;
|
|
vbox ->set_border_width( 10 ) ;
|
|
hbox ->pack_start( *vbox, Gtk::PACK_SHRINK );
|
|
|
|
image .set( Gtk::Stock::DIALOG_WARNING, Gtk::ICON_SIZE_DIALOG ) ;
|
|
vbox ->pack_start( image, Gtk::PACK_SHRINK );
|
|
|
|
vbox = manage( new Gtk::VBox() ) ;
|
|
vbox ->set_border_width( 10 ) ;
|
|
hbox ->pack_start( *vbox, Gtk::PACK_SHRINK );
|
|
|
|
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 msdos partition table.") ;
|
|
str_temp += "\n" ;
|
|
vbox ->pack_start( * Utils::mk_label( str_temp, true, Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, true ),
|
|
Gtk::PACK_SHRINK );
|
|
|
|
//advanced
|
|
str_temp = "<b>" ;
|
|
str_temp += _("Advanced") ;
|
|
expander_advanced .set_label( str_temp + "</b>" ) ;
|
|
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 ) ;
|
|
|
|
//standard warning
|
|
str_temp = "\n<i>" ;
|
|
/*TO TRANSLATORS: looks like Choosing the Create button will IMMEDIATELY ERASE ALL DATA on disk /dev/hda */
|
|
str_temp += String::ucompose( _("Choosing the Create button will IMMEDIATELY ERASE ALL DATA on disk %1"), device_path ) ;
|
|
str_temp += "\n</i>";
|
|
vbox ->pack_start( * Utils::mk_label( str_temp, true, Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, true ),
|
|
Gtk::PACK_SHRINK );
|
|
|
|
this ->add_button( Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL );
|
|
/*TO TRANSLATORS: This is the name of the button referred to in the previous text Choosing the Create button will .... */
|
|
this ->add_button( _("Create"), Gtk::RESPONSE_OK );
|
|
|
|
this ->show_all_children() ;
|
|
}
|
|
|
|
Glib::ustring Dialog_Disklabel::Get_Disklabel()
|
|
{
|
|
return labeltypes[ combo_labeltypes .get_active_row_number() ] ;
|
|
}
|
|
|
|
}//GParted
|