higgiefied the dialog a bit (#353104)
* src/DialogFeatures.cc: higgiefied the dialog a bit (#353104)
This commit is contained in:
parent
fc8014115e
commit
b84a88b557
|
@ -1,3 +1,7 @@
|
||||||
|
2006-09-16 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||||
|
|
||||||
|
* src/DialogFeatures.cc: higgiefied the dialog a bit (#353104)
|
||||||
|
|
||||||
2006-09-16 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
2006-09-16 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||||
|
|
||||||
* include/Win_GParted.h,
|
* include/Win_GParted.h,
|
||||||
|
|
|
@ -43,16 +43,20 @@ DialogFeatures::DialogFeatures()
|
||||||
//of course this url has to be selectable and (if possible) clickable
|
//of course this url has to be selectable and (if possible) clickable
|
||||||
treeview_filesystems .get_selection() ->set_mode( Gtk::SELECTION_NONE );
|
treeview_filesystems .get_selection() ->set_mode( Gtk::SELECTION_NONE );
|
||||||
treeview_filesystems .set_rules_hint( true ) ;
|
treeview_filesystems .set_rules_hint( true ) ;
|
||||||
get_vbox() ->pack_start( treeview_filesystems ) ;
|
|
||||||
|
hbox = manage( new Gtk::HBox() ) ;
|
||||||
|
hbox ->set_border_width( 6 ) ;
|
||||||
|
hbox ->pack_start( treeview_filesystems ) ;
|
||||||
|
get_vbox() ->pack_start( *hbox ) ;
|
||||||
|
|
||||||
//legend..
|
//legend..
|
||||||
hbox = manage( new Gtk::HBox ) ;
|
hbox = manage( new Gtk::HBox() ) ;
|
||||||
image = manage( new Gtk::Image( Gtk::Stock::APPLY, Gtk::ICON_SIZE_LARGE_TOOLBAR ) );
|
image = manage( new Gtk::Image( Gtk::Stock::APPLY, Gtk::ICON_SIZE_LARGE_TOOLBAR ) );
|
||||||
hbox ->pack_start( *image, Gtk::PACK_SHRINK ) ;
|
hbox ->pack_start( *image, Gtk::PACK_SHRINK ) ;
|
||||||
hbox ->pack_start( * Utils::mk_label( _("Available") ), Gtk::PACK_EXPAND_WIDGET ) ;
|
hbox ->pack_start( * Utils::mk_label( _("Available") ), Gtk::PACK_EXPAND_WIDGET ) ;
|
||||||
get_vbox() ->pack_start( *hbox ) ;
|
get_vbox() ->pack_start( *hbox ) ;
|
||||||
|
|
||||||
hbox = manage( new Gtk::HBox ) ;
|
hbox = manage( new Gtk::HBox() ) ;
|
||||||
image = manage( new Gtk::Image( Gtk::Stock::CANCEL, Gtk::ICON_SIZE_LARGE_TOOLBAR ) );
|
image = manage( new Gtk::Image( Gtk::Stock::CANCEL, Gtk::ICON_SIZE_LARGE_TOOLBAR ) );
|
||||||
hbox ->pack_start( *image, Gtk::PACK_SHRINK ) ;
|
hbox ->pack_start( *image, Gtk::PACK_SHRINK ) ;
|
||||||
hbox ->pack_start( * Utils::mk_label( _("Not Available") ), Gtk::PACK_EXPAND_WIDGET ) ;
|
hbox ->pack_start( * Utils::mk_label( _("Not Available") ), Gtk::PACK_EXPAND_WIDGET ) ;
|
||||||
|
|
Loading…
Reference in New Issue