PgAttribute loading + ColummnTableModel
Required enchancement to PgContainer to make multifield key work.
This commit is contained in:
parent
f9caadb59e
commit
e9d72d391d
32 changed files with 698 additions and 99 deletions
|
|
@ -9,6 +9,7 @@ class TablesPage;
|
|||
}
|
||||
|
||||
class TablesTableModel;
|
||||
class ColumnTableModel;
|
||||
class PgDatabaseCatalog;
|
||||
|
||||
class TablesPage : public QWidget
|
||||
|
|
@ -24,6 +25,11 @@ private:
|
|||
Ui::TablesPage *ui;
|
||||
std::shared_ptr<PgDatabaseCatalog> m_catalog;
|
||||
TablesTableModel* m_tablesModel = nullptr;
|
||||
ColumnTableModel* m_columnsModel = nullptr;
|
||||
|
||||
private slots:
|
||||
|
||||
void on_tableListTable_currentRowChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
||||
};
|
||||
|
||||
#endif // TABLESPAGE_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue