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