00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SIGEL_MASTERGUI_SIG_RENAMEDIALOG_H
00010 #define SIGEL_MASTERGUI_SIG_RENAMEDIALOG_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014 class QVBoxLayout;
00015 class QHBoxLayout;
00016 class QGridLayout;
00017 class QLabel;
00018 class QLineEdit;
00019 class QPushButton;
00020
00021 namespace SIGEL_MasterGUI
00022 {
00026 class SIG_RenameDialog : public QDialog
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 SIG_RenameDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00032 ~SIG_RenameDialog();
00033
00034 QLabel* textlabelNewName;
00035 QLineEdit* lineeditNewName;
00036 QPushButton* pushbuttonOK;
00037 QPushButton* pushbuttonCancel;
00038
00039 protected:
00040 QVBoxLayout* SIG_RenameDialogLayout;
00041 QHBoxLayout* Layout2;
00042 QHBoxLayout* Layout3;
00043 };
00044
00045 }
00046
00047 #endif // SIGEL_MASTERGUI_SIG_RENAMEDIALOG_H