00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef HK_KDENEWDATABASEDIALOGBASE_H
00011 #define HK_KDENEWDATABASEDIALOGBASE_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QLabel;
00021 class QLineEdit;
00022 class QPushButton;
00023
00024 class hk_kdenewdatabasedialogbase : public QDialog
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 hk_kdenewdatabasedialogbase( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00030 ~hk_kdenewdatabasedialogbase();
00031
00032 QLabel* databaselabel;
00033 QLineEdit* databasefield;
00034 QPushButton* directorybutton;
00035 QPushButton* okbutton;
00036 QPushButton* cancelbutton;
00037
00038 public slots:
00039 virtual void ok_clicked();
00040 virtual void directory_clicked();
00041 virtual void text_changed();
00042
00043 protected:
00044 QVBoxLayout* hk_kdenewdatabasedialogbaseLayout;
00045 QHBoxLayout* layout2;
00046 QHBoxLayout* Layout1;
00047 QSpacerItem* Horizontal_Spacing2;
00048
00049 protected slots:
00050 virtual void languageChange();
00051
00052 };
00053
00054 #endif // HK_KDENEWDATABASEDIALOGBASE_H