56 lines
1.4 KiB
C
56 lines
1.4 KiB
C
|
/* Copyright (C) 2008 Curtis Gedak
|
||
|
*
|
||
|
* 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_LABEL_H_
|
||
|
#define DIALOG_PARTITION_LABEL_H_
|
||
|
|
||
|
#include "../include/Partition.h"
|
||
|
#include "../include/i18n.h"
|
||
|
|
||
|
#include <gtkmm/dialog.h>
|
||
|
#include <gtkmm/stock.h>
|
||
|
#include <gtkmm/frame.h>
|
||
|
#include <gtkmm/table.h>
|
||
|
#include <gtkmm/entry.h>
|
||
|
|
||
|
#define BORDER 8
|
||
|
|
||
|
namespace GParted
|
||
|
{
|
||
|
|
||
|
class Dialog_Partition_Label : public Gtk::Dialog
|
||
|
{
|
||
|
public:
|
||
|
Dialog_Partition_Label( const Partition & partition );
|
||
|
~Dialog_Partition_Label();
|
||
|
Glib::ustring get_new_label();
|
||
|
|
||
|
private:
|
||
|
Partition partition ;
|
||
|
|
||
|
Gtk::HBox *hbox ;
|
||
|
Gtk::VBox *vbox ;
|
||
|
Gtk::Frame *frame;
|
||
|
Gtk::Image *image;
|
||
|
Gtk::Table *table;
|
||
|
Gtk::Entry *entry;
|
||
|
};
|
||
|
|
||
|
} //GParted
|
||
|
|
||
|
#endif //DIALOG_PARTITION_LABEL_H_
|