Have a working model for showing the namespaces in a tree with checkboxes.

The namespaces are currently spit into user and system. Later we might
add recognizing namespaces introduced by specific modules/extensions.
This commit is contained in:
eelke 2017-12-29 08:39:08 +01:00
parent 4e1120647c
commit b5254ac723
9 changed files with 414 additions and 5 deletions

View file

@ -11,6 +11,7 @@ class TablesPage;
class TablesTableModel;
class ColumnTableModel;
class PgDatabaseCatalog;
class NamespaceFilterWidget;
class TablesPage : public QWidget
{
@ -26,6 +27,7 @@ private:
std::shared_ptr<PgDatabaseCatalog> m_catalog;
TablesTableModel* m_tablesModel = nullptr;
ColumnTableModel* m_columnsModel = nullptr;
NamespaceFilterWidget* m_namespaceFilterWidget;
private slots: