mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
31 lines
490 B
C++
31 lines
490 B
C++
#ifndef __CREATEINDEXDIALOG_H__
|
|
#define __CREATEINDEXDIALOG_H__
|
|
|
|
#include <QDialog>
|
|
|
|
class DBBrowserDB;
|
|
|
|
namespace Ui {
|
|
class CreateIndexDialog;
|
|
}
|
|
|
|
class CreateIndexDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CreateIndexDialog(DBBrowserDB* db, QWidget* parent = 0);
|
|
~CreateIndexDialog();
|
|
|
|
private slots:
|
|
void accept();
|
|
void tableChanged(const QString& new_table);
|
|
void checkInput();
|
|
|
|
private:
|
|
DBBrowserDB* pdb;
|
|
Ui::CreateIndexDialog* ui;
|
|
};
|
|
|
|
#endif
|