Introduced own version of QTableView called PgLabTableView that has some other defaults.

This commit is contained in:
eelke 2018-12-29 17:54:54 +01:00
parent f0ffcf4abd
commit f6ea2ce0a6
9 changed files with 42 additions and 32 deletions

View file

@ -5,7 +5,7 @@
#include <memory>
#include <optional>
class QTableView;
class PgLabTableView;
class PgDatabaseCatalog;
class ProcTableModel;
class CustomFilterSortModel;
@ -25,7 +25,7 @@ public slots:
void functionTable_currentRowChanged(const QModelIndex &current, const QModelIndex &previous);
private:
QTableView *m_functionTable = nullptr;
PgLabTableView *m_functionTable = nullptr;
QTabWidget *m_detailTabs = nullptr;
SqlCodePreview *m_definitionView = nullptr;
ProcTableModel *m_model = nullptr;