The catalogue now loads the list of databases en there is a table model that can show this data.

This commit is contained in:
eelke 2017-02-12 14:03:42 +01:00
parent a9430bca1a
commit 20af12535e
22 changed files with 504 additions and 118 deletions

View file

@ -37,9 +37,9 @@ ConnectionConfig.cpp \
stopwatch.cpp \
util.cpp \
databaseinspectorwidget.cpp \
pgtype.cpp \
PgType.cpp \
pgsqldatabasecatalogue.cpp \
pgtypecontainer.cpp \
PgTypeContainer.cpp \
tuplesresultwidget.cpp \
pgnamespace.cpp \
pgclass.cpp \
@ -52,7 +52,11 @@ ConnectionConfig.cpp \
MainWindow.cpp \
SqlSyntaxHighlighter.cpp \
SqlLexer.cpp \
ServerWindow.cpp
ServerWindow.cpp \
ASyncWindow.cpp \
DatabasesTableModel.cpp \
PgDatabase.cpp \
PgDatabaseContainer.cpp
HEADERS += \
sqlparser.h \
@ -76,9 +80,9 @@ ConnectionConfig.h \
stopwatch.h \
util.h \
databaseinspectorwidget.h \
pgtype.h \
PgType.h \
pgsqldatabasecatalogue.h \
pgtypecontainer.h \
PgTypeContainer.h \
tuplesresultwidget.h \
pgnamespace.h \
pgclass.h \
@ -91,7 +95,12 @@ ConnectionConfig.h \
MainWindow.h \
SqlSyntaxHighlighter.h \
SqlLexer.h \
ServerWindow.h
ServerWindow.h \
ASyncWindow.h \
DatabasesTableModel.h \
PgDatabase.h \
PgDatabaseContainer.h \
PgContainer.h
FORMS += mainwindow.ui \
databasewindow.ui \