[gparted] Refactor Win_GParted::create_format_menu() (#688882)
- From: Curtis Gedak <gedakc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gparted] Refactor Win_GParted::create_format_menu() (#688882)
- Date: Mon, 25 Mar 2013 16:58:24 +0000 (UTC)
commit bc5b57ab35fdad3cde221e2d9725cc61681d78ef
Author: Mike Fleetwood <mike fleetwood googlemail com>
Date: Fri Dec 7 21:30:15 2012 +0000
Refactor Win_GParted::create_format_menu() (#688882)
Move some code into new create_format_menu_add_item() sub-function which
adds one file system entry to the Partition --> Format to -->
(file system list) menu.
Bug #688882 - Improve clearing of file system signatures
include/Win_GParted.h | 1 +
src/Win_GParted.cc | 55 +++++++++++++++++++++++++------------------------
2 files changed, 29 insertions(+), 27 deletions(-)
---
diff --git a/include/Win_GParted.h b/include/Win_GParted.h
index dab5fbd..4f1958a 100644
--- a/include/Win_GParted.h
+++ b/include/Win_GParted.h
@@ -50,6 +50,7 @@ private:
void init_toolbar() ;
void init_partition_menu() ;
Gtk::Menu * create_format_menu() ;
+ void create_format_menu_add_item( FILESYSTEM filesystem, bool activate ) ;
void init_device_info() ;
void init_hpaned_main() ;
diff --git a/src/Win_GParted.cc b/src/Win_GParted.cc
index 3e27dda..cd44b8e 100644
--- a/src/Win_GParted.cc
+++ b/src/Win_GParted.cc
@@ -406,45 +406,46 @@ void Win_GParted::init_partition_menu()
menu_partition .accelerate( *this ) ;
}
+//Create the Partition --> Format to --> (file system list) menu
Gtk::Menu * Win_GParted::create_format_menu()
{
+ const std::vector<FS> & fss = gparted_core .get_filesystems() ;
menu = manage( new Gtk::Menu() ) ;
- for ( unsigned int t =0; t < gparted_core .get_filesystems() .size() ; t++ )
+ for ( unsigned int t = 0 ; t < fss .size() ; t++ )
{
//Skip luks and unknown because these are not file systems
- if (
- gparted_core .get_filesystems()[ t ] .filesystem == GParted::FS_LUKS ||
- gparted_core .get_filesystems()[ t ] .filesystem == GParted::FS_UNKNOWN
+ if ( fss[ t ] .filesystem == FS_LUKS
+ || fss[ t ] .filesystem == FS_UNKNOWN
)
continue ;
- hbox = manage( new Gtk::HBox() );
-
- //the colored square
- hbox ->pack_start( * manage( new Gtk::Image(
- Utils::get_color_as_pixbuf(
- gparted_core .get_filesystems()[ t ] .filesystem, 16, 16 ) )
),
- Gtk::PACK_SHRINK ) ;
-
- //the label...
- hbox ->pack_start( * Utils::mk_label(
- " " +
- Utils::get_filesystem_string( gparted_core .get_filesystems()[ t ]
.filesystem ) ),
- Gtk::PACK_SHRINK );
-
- menu ->items() .push_back( * manage( new Gtk::MenuItem( *hbox ) ) );
- if ( gparted_core .get_filesystems()[ t ] .create )
- menu ->items() .back() .signal_activate() .connect(
- sigc::bind<GParted::FILESYSTEM>(sigc::mem_fun(*this,
&Win_GParted::activate_format),
- gparted_core .get_filesystems()[ t ] .filesystem ) ) ;
- else
- menu ->items() .back() .set_sensitive( false ) ;
+ create_format_menu_add_item( fss[ t ] .filesystem, fss[ t ] .create ) ;
}
-
+
return menu ;
}
-
+
+//Add one entry to the Partition --> Format to --> (file system list) menu
+void Win_GParted::create_format_menu_add_item( FILESYSTEM filesystem, bool activate )
+{
+ hbox = manage( new Gtk::HBox() ) ;
+ //the colored square
+ hbox ->pack_start( * manage( new Gtk::Image( Utils::get_color_as_pixbuf( filesystem, 16, 16 ) ) ),
+ Gtk::PACK_SHRINK ) ;
+ //the label...
+ hbox ->pack_start( * Utils::mk_label( " " + Utils::get_filesystem_string( filesystem ) ),
+ Gtk::PACK_SHRINK ) ;
+
+ menu ->items() .push_back( * manage( new Gtk::MenuItem( *hbox ) ) ) ;
+ if ( activate )
+ menu ->items() .back() .signal_activate() .connect(
+ sigc::bind<GParted::FILESYSTEM>( sigc::mem_fun( *this, &Win_GParted::activate_format
),
+ filesystem ) ) ;
+ else
+ menu ->items() .back() .set_sensitive( false ) ;
+}
+
void Win_GParted::init_device_info()
{
vbox_info.set_spacing( 5 );
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]