removed separator in accordance to the HIG it's now possible to deactivate
* src/Dialog_Partition_Info.cc: removed separator in accordance to the HIG * include/Win_GParted.h, src/Win_GParted.cc: it's now possible to deactivate swap from within gparted. * src/GParted_Core.cc: sleep one second after deletion of a partition to give the kernel some time to reread the partitiontable.
This commit is contained in:
parent
f9ab3cdd3c
commit
1e6ad5884a
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2006-01-07 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||
|
||||
* src/Dialog_Partition_Info.cc: removed separator in accordance to the
|
||||
HIG
|
||||
* include/Win_GParted.h,
|
||||
src/Win_GParted.cc: it's now possible to deactivate swap from within
|
||||
gparted.
|
||||
* src/GParted_Core.cc: sleep one second after deletion of a partition to
|
||||
give the kernel some time to reread the partitiontable.
|
||||
|
||||
2006-01-07 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||
|
||||
* src/Utils.cc: commented 'ss .imbue( std::locale( "" ) )' (#157871)
|
||||
|
|
|
@ -102,8 +102,11 @@ private:
|
|||
void allow_unmount( bool b ) {
|
||||
menu_partition .items( )[ 10 ] .set_sensitive( b ); }
|
||||
|
||||
void allow_disable_swap( bool b ) {
|
||||
menu_partition .items( )[ 11 ] .set_sensitive( b ); }
|
||||
|
||||
void allow_info( bool b ) {
|
||||
menu_partition .items( )[ 12 ] .set_sensitive( b ); }
|
||||
menu_partition .items( )[ 13 ] .set_sensitive( b ); }
|
||||
|
||||
void allow_undo( bool b ) {
|
||||
toolbar_main .get_nth_item( 8 ) ->set_sensitive( b );
|
||||
|
@ -145,6 +148,7 @@ private:
|
|||
void activate_info();
|
||||
void activate_format( GParted::FILESYSTEM new_fs );
|
||||
void activate_unmount() ;
|
||||
void activate_disable_swap() ;
|
||||
void activate_disklabel() ;
|
||||
|
||||
void activate_undo( );
|
||||
|
@ -175,7 +179,7 @@ private:
|
|||
Gtk::Button *button;
|
||||
Gtk::Table *table ;
|
||||
Gtk::MenuItem *menu_item;
|
||||
Gtk::ProgressBar *pulsebar ;
|
||||
Gtk::ProgressBar pulsebar ;
|
||||
Gtk::TreeRow treerow;
|
||||
|
||||
VBox_VisualDisk vbox_visual_disk;
|
||||
|
|
|
@ -25,6 +25,7 @@ Dialog_Partition_Info::Dialog_Partition_Info( const Partition & partition )
|
|||
this ->partition = partition ;
|
||||
|
||||
this ->set_resizable( false ) ;
|
||||
this ->set_has_separator( false ) ;
|
||||
|
||||
/*TO TRANSLATORS: dialogtitle, looks like Information about /dev/hda3 */
|
||||
this ->set_title( String::ucompose( _( "Information about %1"), partition .partition ) );
|
||||
|
|
|
@ -571,6 +571,7 @@ bool GParted_Core::Delete( const Partition & partition )
|
|||
lp_partition = ped_disk_get_partition_by_sector( lp_disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
||||
|
||||
return_value = ( ped_disk_delete_partition( lp_disk, lp_partition ) && commit() ) ;
|
||||
sleep( 1 ) ; //give the kernel some time to reread the partitiontable
|
||||
|
||||
close_device_and_disk() ;
|
||||
}
|
||||
|
|
|
@ -19,6 +19,9 @@
|
|||
|
||||
#include <gtkmm/aboutdialog.h>
|
||||
|
||||
#include <cerrno>
|
||||
#include <sys/swap.h>
|
||||
|
||||
namespace GParted
|
||||
{
|
||||
|
||||
|
@ -75,9 +78,8 @@ Win_GParted::Win_GParted( )
|
|||
vpaned_main .pack2( hbox_operations, true, true ) ;
|
||||
|
||||
//statusbar...
|
||||
pulsebar = manage( new Gtk::ProgressBar( ) );
|
||||
pulsebar ->set_pulse_step( 0.01 );
|
||||
statusbar .add( *pulsebar );
|
||||
pulsebar .set_pulse_step( 0.01 );
|
||||
statusbar .add( pulsebar );
|
||||
vbox_main .pack_start( statusbar, Gtk::PACK_SHRINK );
|
||||
|
||||
this ->show_all_children( );
|
||||
|
@ -227,6 +229,10 @@ void Win_GParted::init_partition_menu( )
|
|||
Gtk::Menu_Helpers::MenuElem( _("Unmount"),
|
||||
sigc::mem_fun( *this, &Win_GParted::activate_unmount ) ) );
|
||||
|
||||
menu_partition .items() .push_back(
|
||||
Gtk::Menu_Helpers::MenuElem( _("Deactivate"),
|
||||
sigc::mem_fun( *this, &Win_GParted::activate_disable_swap ) ) );
|
||||
|
||||
menu_partition .items() .push_back( Gtk::Menu_Helpers::SeparatorElem() );
|
||||
|
||||
menu_partition .items() .push_back(
|
||||
|
@ -422,7 +428,7 @@ void Win_GParted::refresh_combo_devices()
|
|||
|
||||
void Win_GParted::Show_Pulsebar( )
|
||||
{
|
||||
pulsebar ->show();
|
||||
pulsebar .show();
|
||||
statusbar .push( _("Scanning all devices...") ) ;
|
||||
|
||||
//disable all input stuff
|
||||
|
@ -436,7 +442,7 @@ void Win_GParted::Show_Pulsebar( )
|
|||
//the actual 'pulsing'
|
||||
while ( pulse )
|
||||
{
|
||||
pulsebar ->pulse();
|
||||
pulsebar .pulse();
|
||||
while ( Gtk::Main::events_pending() )
|
||||
Gtk::Main::iteration();
|
||||
|
||||
|
@ -446,7 +452,7 @@ void Win_GParted::Show_Pulsebar( )
|
|||
thread ->join() ;
|
||||
conn .disconnect() ;
|
||||
|
||||
pulsebar ->hide();
|
||||
pulsebar .hide();
|
||||
statusbar .pop() ;
|
||||
|
||||
//enable all disabled stuff
|
||||
|
@ -622,6 +628,7 @@ void Win_GParted::Set_Valid_Operations( )
|
|||
{
|
||||
allow_new( false ); allow_delete( false ); allow_resize( false ); allow_copy( false );
|
||||
allow_paste( false ); allow_format( false ); allow_unmount( false ) ; allow_info( false ) ;
|
||||
allow_disable_swap( false ) ;
|
||||
|
||||
//no partition selected...
|
||||
if ( selected_partition .partition .empty() )
|
||||
|
@ -633,8 +640,13 @@ void Win_GParted::Set_Valid_Operations( )
|
|||
//only unmount is allowed
|
||||
if ( selected_partition .busy )
|
||||
{
|
||||
if ( selected_partition .filesystem != GParted::FS_LINUX_SWAP && selected_partition .type != GParted::TYPE_EXTENDED )
|
||||
if ( selected_partition .type != GParted::TYPE_EXTENDED )
|
||||
{
|
||||
if ( selected_partition .filesystem == GParted::FS_LINUX_SWAP )
|
||||
allow_disable_swap( true ) ;
|
||||
else
|
||||
allow_unmount( true ) ;
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
@ -1253,7 +1265,27 @@ void Win_GParted::activate_unmount( )
|
|||
Gtk::MessageDialog dialog( *this, str_temp + error, true, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true );
|
||||
dialog.run( ) ;
|
||||
}
|
||||
else
|
||||
|
||||
menu_gparted_refresh_devices() ;
|
||||
}
|
||||
|
||||
void Win_GParted::activate_disable_swap()
|
||||
{
|
||||
if ( swapoff( selected_partition .partition .c_str() ) )
|
||||
{
|
||||
str_temp = "<span weight=\"bold\" size=\"larger\">" ;
|
||||
str_temp += _("Could not deactivate swap") ;
|
||||
str_temp += "</span>\n\n" ;
|
||||
|
||||
Gtk::MessageDialog dialog( *this,
|
||||
str_temp + Glib::strerror( errno ),
|
||||
true,
|
||||
Gtk::MESSAGE_ERROR,
|
||||
Gtk::BUTTONS_OK,
|
||||
true );
|
||||
dialog.run() ;
|
||||
}
|
||||
|
||||
menu_gparted_refresh_devices() ;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue