gparted/include/Dialog_Base_Partition.h

107 lines
2.9 KiB
C
Raw Normal View History

/* Copyright (C) 2004 Bart
* Copyright (C) 2008, 2009, 2010 Curtis Gedak
2004-09-19 14:24:53 -06:00
*
* 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 General Public License for more details.
2004-09-19 14:24:53 -06:00
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
2004-09-19 14:24:53 -06:00
*/
#ifndef GPARTED_DIALOG_BASE_PARTITION_H
#define GPARTED_DIALOG_BASE_PARTITION_H
2004-09-19 14:24:53 -06:00
#include "../include/Frame_Resizer_Extended.h"
#include "../include/Partition.h"
#include <gtkmm/dialog.h>
#include <gtkmm/stock.h>
#include <gtkmm/label.h>
#include <gtkmm/spinbutton.h>
#include <gtkmm/table.h>
#include <gtkmm/box.h>
#include <gtkmm/tooltips.h>
#include <gtkmm/optionmenu.h>
2004-09-19 14:24:53 -06:00
namespace GParted
{
class Dialog_Base_Partition : public Gtk::Dialog
{
public:
Dialog_Base_Partition( ) ;
2004-10-06 09:32:40 -06:00
~Dialog_Base_Partition( ) ;
2004-09-19 14:24:53 -06:00
void Set_Resizer( bool extended ) ;
Partition Get_New_Partition( Byte_Value sector_size ) ;
2004-09-19 14:24:53 -06:00
protected:
enum SPINBUTTON {
BEFORE = 0,
SIZE = 1,
AFTER = 2
2004-09-19 14:24:53 -06:00
};
enum CONFIRMBUTTON {
RESIZE_MOVE = 0,
NEW = 1,
PASTE = 2
2004-09-19 14:24:53 -06:00
};
void Set_Confirm_Button( CONFIRMBUTTON button_type ) ;
void Set_MinMax_Text( Sector min, Sector max ) ;
2004-09-19 14:24:53 -06:00
double MB_PER_PIXEL ;
Sector TOTAL_MB ;
2004-09-19 14:24:53 -06:00
Frame_Resizer_Base *frame_resizer_base;
Partition selected_partition ;
Sector START; //the first sector of the first relevant partition ( this is either current or current -1 ) needed in Get_Resized_Partition()
Sector total_length ; //total amount of sectors ( this can be up to 3 partitions...)
2004-09-19 14:24:53 -06:00
Gtk::HBox hbox_main ;
2004-09-19 14:24:53 -06:00
Gtk::SpinButton spinbutton_before, spinbutton_size, spinbutton_after;
Gtk::OptionMenu optionmenu_alignment ;
Gtk::Menu menu_alignment ;
sigc::connection before_change_connection, size_change_connection, after_change_connection ;
2004-09-19 14:24:53 -06:00
//used to enable/disable OKbutton...
int ORIG_BEFORE, ORIG_SIZE, ORIG_AFTER ;
//used to reserve space for Master or Extended Boot Record (1 MiB)
int MIN_SPACE_BEFORE_MB ;
int MB_Needed_for_Boot_Record( const Partition & partition ) ;
2004-09-19 14:24:53 -06:00
//signal handlers
void on_signal_move( int, int );
void on_signal_resize( int, int, Frame_Resizer_Base::ArrowType );
void on_spinbutton_value_changed( SPINBUTTON ) ;
2004-09-19 14:24:53 -06:00
2004-10-06 09:32:40 -06:00
bool fixed_start, GRIP ;
2004-09-19 14:24:53 -06:00
double before_value ;
FS fs ;
2004-09-19 14:24:53 -06:00
private:
void Check_Change( ) ;
2004-09-19 14:24:53 -06:00
Gtk::VBox vbox_resize_move;
Gtk::Label label_minmax ;
2004-09-19 14:24:53 -06:00
Gtk::Table table_resize;
Gtk::HBox hbox_table, hbox_resizer;
2004-09-19 14:24:53 -06:00
Gtk::Button button_resize_move ;
};
} //GParted
#endif /* GPARTED_DIALOG_BASE_PARTITION_H */