00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef KNODANEWDATABASEDIALOG_H
00013 #define KNODANEWDATABASEDIALOG_H
00014
00015 #include <qvariant.h>
00016 #include <qdialog.h>
00017 class QVBoxLayout;
00018 class QHBoxLayout;
00019 class QGridLayout;
00020 class QLabel;
00021 class QLineEdit;
00022 class QPushButton;
00023
00024 class knodanewdatabasedialog : public QDialog
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 knodanewdatabasedialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00030 ~knodanewdatabasedialog();
00031
00032 QLabel* label;
00033 QPushButton* buttonOk;
00034 QLineEdit* databasename;
00035 QPushButton* buttonCancel;
00036
00037 public slots:
00038 virtual void enable_okbutton();
00039
00040 protected:
00041 QVBoxLayout* knodanewdatabasedialogLayout;
00042 QHBoxLayout* Layout9;
00043 QHBoxLayout* Layout8;
00044 };
00045 #endif // KNODANEWDATABASEDIALOG_H