2009-11-05 11:08:32 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
2010-02-24 11:39:42 -07:00
|
|
|
* 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 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIALOG_PARTITION_NEW
|
|
|
|
#define DIALOG_PARTITION_NEW
|
|
|
|
|
|
|
|
#include "../include/Dialog_Base_Partition.h"
|
|
|
|
|
|
|
|
#include <gtkmm/optionmenu.h>
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class Dialog_Partition_New : public Dialog_Base_Partition
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Dialog_Partition_New() ;
|
2006-02-25 03:09:30 -07:00
|
|
|
void Set_Data( const Partition & partition,
|
|
|
|
bool any_extended,
|
|
|
|
unsigned short new_count,
|
|
|
|
const std::vector<FS> & FILESYSTEMS,
|
|
|
|
bool only_unformatted,
|
2010-02-24 11:39:42 -07:00
|
|
|
Sector cylinder_size,
|
|
|
|
Glib::ustring disktype );
|
2010-04-19 19:22:31 -06:00
|
|
|
Partition Get_New_Partition( Byte_Value sector_size ) ;//overridden function
|
2004-11-29 06:20:05 -07:00
|
|
|
|
2004-09-19 14:24:53 -06:00
|
|
|
private:
|
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;
|
2008-04-07 13:41:18 -06:00
|
|
|
Gtk::Entry entry;
|
2004-09-19 14:24:53 -06:00
|
|
|
|
2004-10-06 09:32:40 -06:00
|
|
|
std::vector<FS> FILESYSTEMS ;
|
2004-12-10 13:42:23 -07:00
|
|
|
int cylinder_size ;
|
2004-09-19 14:24:53 -06:00
|
|
|
|
|
|
|
//signal handlers
|
|
|
|
void optionmenu_changed( bool );
|
|
|
|
|
|
|
|
Gdk::Color color_temp;
|
2004-11-29 06:20:05 -07:00
|
|
|
unsigned short new_count, first_creatable_fs ;
|
2004-09-19 14:24:53 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
#endif //DIALOG_PARTITION_NEW
|