2004-09-19 14:24:53 -06:00
/* Copyright (C) 2004 Bart
*
* 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_Base_Partition.h"
namespace GParted
{
2004-10-08 09:59:03 -06:00
Dialog_Base_Partition : : Dialog_Base_Partition ( )
2004-09-19 14:24:53 -06:00
{
this - > set_has_separator ( false ) ;
frame_resizer_base = NULL ;
GRIP = false ;
2004-10-02 03:39:16 -06:00
this - > fixed_start = false ;
this - > set_resizable ( false ) ;
2005-01-22 10:23:52 -07:00
ORIG_BEFORE = ORIG_SIZE = ORIG_AFTER = - 1 ;
2004-09-19 14:24:53 -06:00
//pack resizer hbox
2004-12-12 07:57:04 -07:00
this - > get_vbox ( ) - > pack_start ( hbox_resizer , Gtk : : PACK_SHRINK ) ;
2004-09-19 14:24:53 -06:00
//add label_minmax
2004-12-12 07:57:04 -07:00
this - > get_vbox ( ) - > pack_start ( label_minmax , Gtk : : PACK_SHRINK ) ;
2004-09-19 14:24:53 -06:00
//pack hbox_main
2004-12-12 07:57:04 -07:00
this - > get_vbox ( ) - > pack_start ( hbox_main , Gtk : : PACK_SHRINK ) ;
2004-09-19 14:24:53 -06:00
//put the vbox with resizer stuff (cool widget and spinbuttons) in the hbox_main
2005-01-22 10:23:52 -07:00
hbox_main . pack_start ( vbox_resize_move , Gtk : : PACK_EXPAND_PADDING ) ;
2004-09-19 14:24:53 -06:00
//fill table
table_resize . set_border_width ( 5 ) ;
table_resize . set_row_spacings ( 5 ) ;
hbox_table . pack_start ( table_resize , Gtk : : PACK_EXPAND_PADDING ) ;
hbox_table . set_border_width ( 5 ) ;
vbox_resize_move . pack_start ( hbox_table , Gtk : : PACK_SHRINK ) ;
//add spinbutton_before
2005-12-13 14:30:13 -07:00
table_resize . attach ( * Utils : : mk_label ( ( Glib : : ustring ) _ ( " Free Space Preceding (MB): " ) + " \t " ) , 0 , 1 , 0 , 1 , Gtk : : SHRINK ) ;
2004-09-19 14:24:53 -06:00
spinbutton_before . set_numeric ( true ) ;
spinbutton_before . set_increments ( 1 , 100 ) ;
2005-01-22 10:23:52 -07:00
table_resize . attach ( spinbutton_before , 1 , 2 , 0 , 1 , Gtk : : FILL ) ;
2004-09-19 14:24:53 -06:00
//add spinbutton_size
2005-12-13 14:30:13 -07:00
table_resize . attach ( * Utils : : mk_label ( _ ( " New Size (MB): " ) ) , 0 , 1 , 1 , 2 ) ;
2004-09-19 14:24:53 -06:00
spinbutton_size . set_numeric ( true ) ;
spinbutton_size . set_increments ( 1 , 100 ) ;
2005-01-22 10:23:52 -07:00
table_resize . attach ( spinbutton_size , 1 , 2 , 1 , 2 , Gtk : : FILL ) ;
2004-09-19 14:24:53 -06:00
//add spinbutton_after
2005-12-13 14:30:13 -07:00
table_resize . attach ( * Utils : : mk_label ( _ ( " Free Space Following (MB): " ) ) , 0 , 1 , 2 , 3 ) ;
2004-09-19 14:24:53 -06:00
spinbutton_after . set_numeric ( true ) ;
spinbutton_after . set_increments ( 1 , 100 ) ;
2005-01-22 10:23:52 -07:00
table_resize . attach ( spinbutton_after , 1 , 2 , 2 , 3 , Gtk : : FILL ) ;
2004-09-19 14:24:53 -06:00
if ( ! fixed_start )
2005-01-22 10:23:52 -07:00
before_value = spinbutton_before . get_value ( ) ;
2004-09-19 14:24:53 -06:00
//connect signalhandlers of the spinbuttons
if ( ! fixed_start )
2006-01-07 08:04:42 -07:00
spinbutton_before . signal_value_changed ( ) . connect (
sigc : : bind < SPINBUTTON > ( sigc : : mem_fun ( * this , & Dialog_Base_Partition : : on_spinbutton_value_changed ) , BEFORE ) ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
spinbutton_size . signal_value_changed ( ) . connect (
sigc : : bind < SPINBUTTON > ( sigc : : mem_fun ( * this , & Dialog_Base_Partition : : on_spinbutton_value_changed ) , SIZE ) ) ;
spinbutton_after . signal_value_changed ( ) . connect (
sigc : : bind < SPINBUTTON > ( sigc : : mem_fun ( * this , & Dialog_Base_Partition : : on_spinbutton_value_changed ) , AFTER ) ) ;
2005-01-22 10:23:52 -07:00
this - > add_button ( Gtk : : Stock : : CANCEL , Gtk : : RESPONSE_CANCEL ) ;
2004-12-12 07:57:04 -07:00
this - > show_all_children ( ) ;
2004-09-19 14:24:53 -06:00
}
void Dialog_Base_Partition : : Set_Resizer ( bool extended )
{
if ( extended )
2004-10-02 03:39:16 -06:00
frame_resizer_base = new Frame_Resizer_Extended ( ) ;
2004-09-19 14:24:53 -06:00
else
{
2004-10-02 03:39:16 -06:00
frame_resizer_base = new Frame_Resizer_Base ( ) ;
2005-01-22 10:23:52 -07:00
frame_resizer_base - > signal_move . connect ( sigc : : mem_fun ( this , & Dialog_Base_Partition : : on_signal_move ) ) ;
2004-09-19 14:24:53 -06:00
}
frame_resizer_base - > set_border_width ( 5 ) ;
2005-01-22 10:23:52 -07:00
frame_resizer_base - > set_shadow_type ( Gtk : : SHADOW_ETCHED_OUT ) ;
2004-09-19 14:24:53 -06:00
//connect signals
2005-01-22 10:23:52 -07:00
frame_resizer_base - > signal_resize . connect ( sigc : : mem_fun ( this , & Dialog_Base_Partition : : on_signal_resize ) ) ;
2004-09-19 14:24:53 -06:00
2004-09-26 14:37:07 -06:00
hbox_resizer . pack_start ( * frame_resizer_base , Gtk : : PACK_EXPAND_PADDING ) ;
2004-09-19 14:24:53 -06:00
2004-12-12 07:57:04 -07:00
this - > show_all_children ( ) ;
2004-09-19 14:24:53 -06:00
}
2005-01-19 13:01:39 -07:00
Partition Dialog_Base_Partition : : Get_New_Partition ( )
2004-10-20 04:32:19 -06:00
{
2005-01-19 13:01:39 -07:00
if ( ORIG_BEFORE ! = spinbutton_before . get_value_as_int ( ) )
2005-01-22 10:23:52 -07:00
selected_partition . sector_start = START + spinbutton_before . get_value_as_int ( ) * MEGABYTE ;
2004-09-19 14:24:53 -06:00
2005-01-19 13:01:39 -07:00
if ( ORIG_AFTER ! = spinbutton_after . get_value_as_int ( ) )
2005-01-22 10:23:52 -07:00
selected_partition . sector_end = selected_partition . sector_start + spinbutton_size . get_value_as_int ( ) * MEGABYTE ;
2004-09-19 14:24:53 -06:00
//due to loss of precision during calcs from Sector -> MB and back, it is possible the new partition thinks it's bigger then it can be. Here we solve this.
2005-01-22 10:23:52 -07:00
if ( selected_partition . sector_start < START )
selected_partition . sector_start = START ;
if ( selected_partition . sector_end > ( START + total_length ) )
selected_partition . sector_end = START + total_length ;
2004-09-19 14:24:53 -06:00
//grow a bit into small freespace ( < 1MB )
2005-01-22 10:23:52 -07:00
if ( ( selected_partition . sector_start - START ) < MEGABYTE )
selected_partition . sector_start = START ;
if ( ( START + total_length - selected_partition . sector_end ) < MEGABYTE )
selected_partition . sector_end = START + total_length ;
2004-09-19 14:24:53 -06:00
//set new value of unused..
if ( selected_partition . sectors_used ! = - 1 )
2006-01-07 08:04:42 -07:00
selected_partition . sectors_unused =
( selected_partition . sector_end - selected_partition . sector_start ) - selected_partition . sectors_used ;
2004-09-19 14:24:53 -06:00
return selected_partition ;
}
void Dialog_Base_Partition : : Set_Confirm_Button ( CONFIRMBUTTON button_type )
{
switch ( button_type )
{
2006-01-07 08:04:42 -07:00
case NEW :
this - > add_button ( Gtk : : Stock : : ADD , Gtk : : RESPONSE_OK ) ;
break ;
case RESIZE_MOVE :
image_temp = manage ( new Gtk : : Image ( Gtk : : Stock : : GOTO_LAST , Gtk : : ICON_SIZE_BUTTON ) ) ;
hbox_resize_move . pack_start ( * image_temp , Gtk : : PACK_EXPAND_PADDING ) ;
hbox_resize_move . pack_start ( * Utils : : mk_label ( fixed_start ? _ ( " Resize " ) : _ ( " Resize/Move " ) ) , Gtk : : PACK_EXPAND_PADDING ) ;
button_resize_move . add ( hbox_resize_move ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
this - > add_action_widget ( button_resize_move , Gtk : : RESPONSE_OK ) ;
button_resize_move . set_sensitive ( false ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
break ;
case PASTE :
this - > add_button ( Gtk : : Stock : : PASTE , Gtk : : RESPONSE_OK ) ;
break ;
2004-09-19 14:24:53 -06:00
}
}
2004-10-02 05:34:18 -06:00
void Dialog_Base_Partition : : Set_MinMax_Text ( long min , long max )
{
str_temp = String : : ucompose ( _ ( " Minimum Size: %1 MB " ) , min ) + " \t \t " ;
str_temp + = String : : ucompose ( _ ( " Maximum Size: %1 MB " ) , max ) ;
label_minmax . set_text ( str_temp ) ;
}
2004-09-19 14:24:53 -06:00
void Dialog_Base_Partition : : on_signal_move ( int x_start , int x_end )
{
GRIP = true ;
2005-01-22 10:23:52 -07:00
spinbutton_before . set_value ( x_start = = 0 ? 0 : x_start * MB_PER_PIXEL ) ;
2004-09-19 14:24:53 -06:00
if ( x_end = = 500 )
{
2005-01-22 10:23:52 -07:00
spinbutton_after . set_value ( 0 ) ;
spinbutton_before . set_value ( TOTAL_MB - spinbutton_size . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
}
else
2005-01-22 10:23:52 -07:00
spinbutton_after . set_value ( TOTAL_MB - spinbutton_before . get_value ( ) - spinbutton_size . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
2004-12-12 07:57:04 -07:00
Check_Change ( ) ;
2004-09-19 14:24:53 -06:00
GRIP = false ;
}
2004-12-12 07:57:04 -07:00
void Dialog_Base_Partition : : on_signal_resize ( int x_start , int x_end , Frame_Resizer_Base : : ArrowType arrow )
2004-09-19 14:24:53 -06:00
{
GRIP = true ;
2004-12-12 07:57:04 -07:00
2004-09-19 14:24:53 -06:00
spinbutton_size . set_value ( ( x_end - x_start ) * MB_PER_PIXEL ) ;
2006-01-07 08:04:42 -07:00
before_value = fixed_start ? 0 : spinbutton_before . get_value ( ) ;
2004-09-19 14:24:53 -06:00
if ( arrow = = Frame_Resizer_Base : : ARROW_RIGHT ) //don't touch freespace before, leave it as it is
{
if ( x_end = = 500 )
{
2004-12-12 07:57:04 -07:00
spinbutton_after . set_value ( 0 ) ;
2004-09-19 14:24:53 -06:00
spinbutton_size . set_value ( TOTAL_MB - before_value ) ;
}
else
2004-12-12 07:57:04 -07:00
spinbutton_after . set_value ( TOTAL_MB - before_value - spinbutton_size . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
}
else if ( arrow = = Frame_Resizer_Base : : ARROW_LEFT ) //don't touch freespace after, leave it as it is
{
if ( x_start = = 0 )
{
spinbutton_before . set_value ( 0 ) ;
2004-12-12 07:57:04 -07:00
spinbutton_size . set_value ( TOTAL_MB - spinbutton_after . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
}
else
2004-12-12 07:57:04 -07:00
spinbutton_before . set_value ( TOTAL_MB - spinbutton_size . get_value ( ) - spinbutton_after . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
}
2004-12-12 07:57:04 -07:00
Check_Change ( ) ;
2004-09-19 14:24:53 -06:00
GRIP = false ;
}
2004-10-02 05:34:18 -06:00
void Dialog_Base_Partition : : on_spinbutton_value_changed ( SPINBUTTON spinbutton )
2004-09-19 14:24:53 -06:00
{
if ( ! GRIP )
{
2006-01-07 08:04:42 -07:00
before_value = fixed_start ? 0 : spinbutton_before . get_value ( ) ;
2004-09-19 14:24:53 -06:00
//Balance the spinbuttons
switch ( spinbutton )
{
2006-01-07 08:04:42 -07:00
case BEFORE :
spinbutton_after . set_value ( TOTAL_MB - spinbutton_size . get_value ( ) - before_value ) ;
spinbutton_size . set_value ( TOTAL_MB - before_value - spinbutton_after . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
break ;
case SIZE :
spinbutton_after . set_value ( TOTAL_MB - before_value - spinbutton_size . get_value ( ) ) ;
if ( ! fixed_start )
spinbutton_before . set_value ( TOTAL_MB - spinbutton_size . get_value ( ) - spinbutton_after . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
break ;
case AFTER :
if ( ! fixed_start )
spinbutton_before . set_value ( TOTAL_MB - spinbutton_size . get_value ( ) - spinbutton_after . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
spinbutton_size . set_value ( TOTAL_MB - before_value - spinbutton_after . get_value ( ) ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
break ;
2004-09-19 14:24:53 -06:00
}
//And apply the changes to the visual view...
if ( ! fixed_start )
2006-01-07 08:04:42 -07:00
frame_resizer_base - > set_x_start ( Utils : : Round ( spinbutton_before . get_value ( ) / MB_PER_PIXEL ) ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
frame_resizer_base - > set_x_end ( 500 - Utils : : Round ( spinbutton_after . get_value ( ) / MB_PER_PIXEL ) ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
frame_resizer_base - > Draw_Partition ( ) ;
2004-09-19 14:24:53 -06:00
2006-01-07 08:04:42 -07:00
Check_Change ( ) ;
2004-09-19 14:24:53 -06:00
}
}
2005-01-19 13:01:39 -07:00
void Dialog_Base_Partition : : Check_Change ( )
2004-09-19 14:24:53 -06:00
{
2006-01-07 08:04:42 -07:00
button_resize_move . set_sensitive (
ORIG_BEFORE ! = spinbutton_before . get_value_as_int ( ) | |
ORIG_SIZE ! = spinbutton_size . get_value_as_int ( ) | |
ORIG_AFTER ! = spinbutton_after . get_value_as_int ( ) ) ;
2004-09-19 14:24:53 -06:00
}
Dialog_Base_Partition : : ~ Dialog_Base_Partition ( )
{
if ( frame_resizer_base )
delete frame_resizer_base ;
}
} //GParted