/* 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_Partition_Copy.h" namespace GParted { Dialog_Partition_Copy::Dialog_Partition_Copy( const FS & fs, Sector cylinder_size ) { this ->fs = fs ; BUF = cylinder_size ; Set_Resizer( false ) ; Set_Confirm_Button( PASTE ) ; } void Dialog_Partition_Copy::Set_Data( const Partition & selected_partition, const Partition & copied_partition ) { this ->set_title( String::ucompose( _("Paste %1"), copied_partition .get_path() ) ) ; //set partition color frame_resizer_base ->set_rgb_partition_color( copied_partition .color ) ; //set some widely used values... START = selected_partition .sector_start ; total_length = selected_partition .get_length() ; TOTAL_MB = Utils::round( Utils::sector_to_unit( selected_partition .get_length(), GParted::UNIT_MIB ) ) ; MB_PER_PIXEL = TOTAL_MB / 500.00 ; long COPIED_LENGTH_MB = Utils::round( Utils::sector_to_unit( copied_partition .get_length(), GParted::UNIT_MIB ) ) ; //now calculate proportional length of partition frame_resizer_base ->set_x_start( 0 ) ; int x_end = Utils::round( COPIED_LENGTH_MB / ( TOTAL_MB/500.00 ) ) ; //> 500 px only possible with xfs... frame_resizer_base ->set_x_end( x_end > 500 ? 500 : x_end ) ; frame_resizer_base ->set_used( Utils::round( Utils::sector_to_unit( copied_partition .sectors_used, GParted::UNIT_MIB ) / (TOTAL_MB/500.00) ) ) ; if ( fs .grow ) fs .MAX = ( ! fs .MAX || fs .MAX > (TOTAL_MB * MEBIBYTE) ) ? (TOTAL_MB * MEBIBYTE) : fs .MAX -= BUF ; else fs .MAX = copied_partition .get_length() ; if ( fs .filesystem == GParted::FS_XFS ) //bit hackisch, but most effective, since it's a unique situation fs .MIN = copied_partition .sectors_used + (BUF * 2) ; else fs .MIN = (COPIED_LENGTH_MB +1) * MEBIBYTE ; GRIP = true ; //set values of spinbutton_before spinbutton_before .set_range( 0, TOTAL_MB - Utils::round( Utils::sector_to_unit( fs .MIN, GParted::UNIT_MIB ) ) ) ; spinbutton_before .set_value( 0 ) ; //set values of spinbutton_size spinbutton_size .set_range( Utils::round( Utils::sector_to_unit( fs .MIN, GParted::UNIT_MIB ) ), Utils::round( Utils::sector_to_unit( fs .MAX, GParted::UNIT_MIB ) ) ) ; spinbutton_size .set_value( COPIED_LENGTH_MB ) ; //set values of spinbutton_after spinbutton_after .set_range( 0, TOTAL_MB - Utils::round( Utils::sector_to_unit( fs .MIN, GParted::UNIT_MIB ) ) ) ; spinbutton_after .set_value( TOTAL_MB - COPIED_LENGTH_MB ) ; GRIP = false ; frame_resizer_base ->set_size_limits( Utils::round( fs .MIN / (MB_PER_PIXEL * MEBIBYTE) ), Utils::round( fs .MAX / (MB_PER_PIXEL * MEBIBYTE) ) ) ; //set contents of label_minmax Set_MinMax_Text( Utils::round( Utils::sector_to_unit( fs .MIN, GParted::UNIT_MIB ) ), Utils::round( Utils::sector_to_unit( fs .MAX, GParted::UNIT_MIB ) ) ) ; //allow the user to set the size of the blocks which will be copied at once hbox_block_size .set_spacing( 10 ) ; this ->get_vbox() ->pack_start( hbox_block_size ) ; hbox_block_size .pack_start( * Utils::mk_label( _("Blocksize (sectors):") ), Gtk::PACK_SHRINK ) ; spinbutton_block_size .set_numeric( true ) ; spinbutton_block_size .set_increments( 1, 10 ) ; spinbutton_block_size .set_range( 1, MEBIBYTE ) ; spinbutton_block_size .set_value( 32 ) ; hbox_block_size .pack_start( spinbutton_block_size, Gtk::PACK_SHRINK ) ; //set global selected_partition (see Dialog_Base_Partition::Get_New_Partition ) this ->selected_partition = copied_partition ; this ->selected_partition .device_path = selected_partition .device_path ; this ->selected_partition .inside_extended = selected_partition .inside_extended ; this ->selected_partition .type = selected_partition .inside_extended ? GParted::TYPE_LOGICAL : GParted::TYPE_PRIMARY ; this ->show_all_children() ; } Partition Dialog_Partition_Copy::Get_New_Partition() { //first call baseclass to get the correct new partition selected_partition = Dialog_Base_Partition::Get_New_Partition() ; //set proper name and status for partition selected_partition .status = GParted::STAT_NEW ; return selected_partition ; } Sector Dialog_Partition_Copy::get_block_size() { return spinbutton_block_size .get_value_as_int() ; } } //GParted