00001
00002
00003
00004
00005
00006
00007
00008 #ifndef CREATETABLEDIALOG_H
00009 #define CREATETABLEDIALOG_H
00010
00011 #include "tableeditordialog.h"
00012
00013
00017 class CreateTableDialog : public TableEditorDialog
00018 {
00019 Q_OBJECT
00020
00021 public:
00022 CreateTableDialog(QWidget * parent = 0);
00023 ~CreateTableDialog(){};
00024
00025 bool update;
00026
00027 private slots:
00028 void createButton_clicked();
00029 void tabWidget_currentChanged(int index);
00030
00031 private:
00034 QString getSQLfromGUI();
00035 };
00036
00037 #endif