2009-11-05 11:08:32 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
2011-07-16 09:49:46 -06:00
|
|
|
* Copyright (C) 2008, 2009, 2010, 2011 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
|
2014-01-23 03:59:48 -07:00
|
|
|
* 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
|
2014-01-23 03:59:48 -07:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2004-09-19 14:24:53 -06:00
|
|
|
*/
|
2013-05-27 05:20:16 -06:00
|
|
|
|
|
|
|
#ifndef GPARTED_DIALOG_PARTITION_NEW_H
|
|
|
|
#define GPARTED_DIALOG_PARTITION_NEW_H
|
2004-09-19 14:24:53 -06:00
|
|
|
|
|
|
|
#include "../include/Dialog_Base_Partition.h"
|
2015-03-17 15:14:31 -06:00
|
|
|
#include "../include/Device.h"
|
2015-11-25 07:55:19 -07:00
|
|
|
#include "../include/Partition.h"
|
2004-09-19 14:24:53 -06:00
|
|
|
|
|
|
|
#include <gtkmm/optionmenu.h>
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class Dialog_Partition_New : public Dialog_Base_Partition
|
|
|
|
{
|
|
|
|
public:
|
2015-06-02 06:10:45 -06:00
|
|
|
Dialog_Partition_New(const Device & device,
|
2015-11-02 09:31:10 -07:00
|
|
|
const Partition & selected_partition,
|
2015-06-02 06:10:45 -06:00
|
|
|
bool any_extended,
|
|
|
|
unsigned short new_count,
|
|
|
|
const std::vector<FS> & FILESYSTEMS );
|
2015-12-13 07:38:30 -07:00
|
|
|
~Dialog_Partition_New();
|
|
|
|
|
2015-12-16 13:15:58 -07:00
|
|
|
const Partition & Get_New_Partition();
|
2015-06-02 06:10:45 -06:00
|
|
|
|
|
|
|
private:
|
2015-12-13 07:38:30 -07:00
|
|
|
Dialog_Partition_New( const Dialog_Partition_New & src ); // Not implemented copy constructor
|
|
|
|
Dialog_Partition_New & operator=( const Dialog_Partition_New & rhs ); // Not implemented copy assignment operator
|
|
|
|
|
|
|
|
|
2015-06-02 06:10:45 -06:00
|
|
|
void set_data( const Device & device,
|
2015-03-17 15:14:31 -06:00
|
|
|
const Partition & partition,
|
|
|
|
bool any_extended,
|
|
|
|
unsigned short new_count,
|
|
|
|
const std::vector<FS> & FILESYSTEMS );
|
2004-11-29 06:20:05 -07:00
|
|
|
void Build_Filesystems_Menu( bool only_unformatted ) ;
|
2004-10-06 09:32:40 -06:00
|
|
|
|
2004-09-19 14:24:53 -06:00
|
|
|
Gtk::Table table_create;
|
|
|
|
Gtk::OptionMenu optionmenu_type, optionmenu_filesystem;
|
|
|
|
Gtk::Menu menu_type, menu_filesystem;
|
2015-03-14 09:38:00 -06:00
|
|
|
Gtk::Entry partition_name_entry;
|
2015-03-14 09:10:41 -06:00
|
|
|
Gtk::Entry filesystem_label_entry;
|
2004-09-19 14:24:53 -06:00
|
|
|
|
2004-10-06 09:32:40 -06:00
|
|
|
std::vector<FS> FILESYSTEMS ;
|
2004-09-19 14:24:53 -06:00
|
|
|
|
|
|
|
//signal handlers
|
|
|
|
void optionmenu_changed( bool );
|
|
|
|
|
2004-11-29 06:20:05 -07:00
|
|
|
unsigned short new_count, first_creatable_fs ;
|
2004-09-19 14:24:53 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#endif /* GPARTED_DIALOG_PARTITION_NEW_H */
|