CatalogInspector is normal QWidget now

added actions to open the inspector
This commit is contained in:
eelke 2019-08-15 16:38:01 +02:00
parent edb789ca4a
commit 09ef4cdf6b
4 changed files with 62 additions and 57 deletions

View file

@ -59,6 +59,9 @@ private:
// Standard actions
QAction *actionAbout = nullptr;
QAction *actionClose = nullptr;
QAction *actionInspectInformationSchema = nullptr; ///< Create or switch to pgcatalog tab
QAction *actionInspectPgCatalog = nullptr; ///< Create or switch to pgcatalog tab
QAction *actionInspectUserSchemas = nullptr; ///< Create or switch to pgcatalog tab
QAction *actionNewSql = nullptr;
QAction *actionOpenSql = nullptr;
@ -96,6 +99,9 @@ private slots:
void on_actionClose_triggered();
void on_actionNewSql_triggered();
void on_actionInspectInformationSchema_triggered();
void on_actionInspectPgCatalog_triggered();
void on_actionInspectUserSchemas_triggered();
void on_actionOpenSql_triggered();
void on_actionAbout_triggered();
void on_actionShow_connection_manager_triggered();