Go to the documentation of this file.00001 #ifndef MANAGEINDEXES_H
00002 #define MANAGEINDEXES_H
00003
00004 #include <QDialog>
00005 #include <QtSql>
00006 #include "indexeditor.h"
00007 namespace Ui {
00008 class ManageIndexes;
00009 }
00010
00011 class ManageIndexes : public QDialog
00012 {
00013 Q_OBJECT
00014
00015 public:
00016 explicit ManageIndexes(QWidget *parent = 0);
00017 ~ManageIndexes();
00018 QSqlDatabase db;
00019 QString dbName;
00020 QString tableName;
00021 void refreshIndexes();
00022
00023 private:
00024 Ui::ManageIndexes *ui;
00025
00026 private slots:
00027 void on_cmdDeleteIndex_clicked();
00028 void on_cmdEditIndex_clicked();
00029 void on_cmdNewIndex_clicked();
00030 };
00031
00032 #endif // MANAGEINDEXES_H