00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ALTERVIEWDIALOG_H
00009 #define ALTERVIEWDIALOG_H
00010
00011 #include <qwidget.h>
00012
00013 #include "ui_createviewdialog.h"
00014
00015
00019 class AlterViewDialog : public QDialog
00020 {
00021 Q_OBJECT
00022
00023 public:
00024 AlterViewDialog(const QString & name, const QString & schema, QWidget * parent = 0);
00025 ~AlterViewDialog(){};
00026
00027 bool update;
00028 void setText(const QString & text) { ui.sqlEdit->setText(text); };
00029
00030 private:
00031 Ui::CreateViewDialog ui;
00032
00033 private slots:
00034 void createButton_clicked();
00035 };
00036
00037 #endif