Reorganization of pgLab project
This commit is contained in:
parent
7300865c77
commit
c71fdc4af7
78 changed files with 204 additions and 148 deletions
153
pglab/pglab.pro
153
pglab/pglab.pro
|
|
@ -21,24 +21,52 @@ DEFINES += _WIN32_WINNT=0x0501
|
|||
win32:RC_ICONS += pglab.ico
|
||||
|
||||
SOURCES += main.cpp\
|
||||
catalog/delegates/IconColumnDelegate.cpp \
|
||||
catalog/models/BaseTableModel.cpp \
|
||||
catalog/models/ColumnTableModel.cpp \
|
||||
catalog/models/ConstraintModel.cpp \
|
||||
catalog/models/DatabasesTableModel.cpp \
|
||||
catalog/models/DependantsTableModel.cpp \
|
||||
catalog/models/IndexModel.cpp \
|
||||
catalog/models/ProcTableModel.cpp \
|
||||
catalog/models/RolesTableModel.cpp \
|
||||
catalog/models/SequenceModel.cpp \
|
||||
catalog/models/TablesTableModel.cpp \
|
||||
catalog/models/TriggerTableModel.cpp \
|
||||
catalog/widgets/CatalogConstraintPage.cpp \
|
||||
catalog/widgets/CatalogFunctionsPage.cpp \
|
||||
catalog/widgets/CatalogIndexPage.cpp \
|
||||
catalog/widgets/CatalogInspector.cpp \
|
||||
catalog/widgets/CatalogNamespacePage.cpp \
|
||||
catalog/widgets/CatalogPageBase.cpp \
|
||||
catalog/widgets/CatalogSequencesPage.cpp \
|
||||
catalog/widgets/CatalogTablesPage.cpp \
|
||||
catalog/widgets/CatalogTypesPage.cpp \
|
||||
catalog/widgets/ColumnPage.cpp \
|
||||
catalog/widgets/DependantsPage.cpp \
|
||||
catalog/widgets/TriggerPage.cpp \
|
||||
crud/CrudModel.cpp \
|
||||
crud/CrudTab.cpp \
|
||||
querytool/QueryExplainModel.cpp \
|
||||
querytool/QueryParamListController.cpp \
|
||||
querytool/QueryResultModel.cpp \
|
||||
querytool/QueryTool.cpp \
|
||||
serverinspector/DatabasesPage.cpp \
|
||||
serverinspector/RolesPage.cpp \
|
||||
serverinspector/ServerInspector.cpp \
|
||||
util/PgLabItemDelegate.cpp \
|
||||
util/PgLabTableView.cpp \
|
||||
ConnectionConfigurationWidget.cpp \
|
||||
ConnectionController.cpp \
|
||||
DependantsPage.cpp \
|
||||
DependantsTableModel.cpp \
|
||||
ManagedPage.cpp \
|
||||
NotificationListWidget.cpp \
|
||||
NotificationModel.cpp \
|
||||
NotificationService.cpp \
|
||||
PgDumpOutputHighlighter.cpp \
|
||||
QueryResultModel.cpp \
|
||||
QueryExplainModel.cpp \
|
||||
CreateDatabaseDialog.cpp \
|
||||
ConnectionManagerWindow.cpp \
|
||||
ConnectionListModel.cpp \
|
||||
SslModeModel.cpp \
|
||||
serverinspector/DatabasesPage.cpp \
|
||||
serverinspector/RolesPage.cpp \
|
||||
serverinspector/ServerInspector.cpp \
|
||||
stopwatch.cpp \
|
||||
TuplesResultWidget.cpp \
|
||||
BackupDialog.cpp \
|
||||
|
|
@ -46,73 +74,73 @@ SOURCES += main.cpp\
|
|||
ParamTypeDelegate.cpp \
|
||||
OpenDatabase.cpp \
|
||||
SqlSyntaxHighlighter.cpp \
|
||||
DatabasesTableModel.cpp \
|
||||
RolesTableModel.cpp \
|
||||
ProcessStdioWidget.cpp \
|
||||
ResultTableModelUtil.cpp \
|
||||
BaseTableModel.cpp \
|
||||
QueryParamListController.cpp \
|
||||
TablesTableModel.cpp \
|
||||
ColumnTableModel.cpp \
|
||||
NamespaceFilterWidget.cpp \
|
||||
NamespaceItemModel.cpp \
|
||||
ConstraintModel.cpp \
|
||||
IconColumnDelegate.cpp \
|
||||
IndexModel.cpp \
|
||||
crud/CrudTab.cpp \
|
||||
crud/CrudModel.cpp \
|
||||
PgLabItemDelegate.cpp \
|
||||
Module.cpp \
|
||||
EditorGutter.cpp \
|
||||
CodeEditor.cpp \
|
||||
PropertyProxyModel.cpp \
|
||||
CodeGenerator.cpp \
|
||||
UserConfiguration.cpp \
|
||||
TriggerTableModel.cpp \
|
||||
TriggerPage.cpp \
|
||||
SqlCodePreview.cpp \
|
||||
CustomFilterSortModel.cpp \
|
||||
PropertiesPage.cpp \
|
||||
PasswordPromptDialog.cpp \
|
||||
ProcTableModel.cpp \
|
||||
ColumnPage.cpp \
|
||||
EditTableWidget.cpp \
|
||||
EditColumnTableModel.cpp \
|
||||
SequenceModel.cpp \
|
||||
DatabaseWindow.cpp \
|
||||
PgLabTableView.cpp \
|
||||
QueryTool.cpp \
|
||||
CatalogInspector.cpp \
|
||||
widgets/CatalogIndexPage.cpp \
|
||||
widgets/CatalogNamespacePage.cpp \
|
||||
widgets/CatalogPageBase.cpp \
|
||||
widgets/CatalogConstraintPage.cpp \
|
||||
widgets/CatalogTablesPage.cpp \
|
||||
widgets/CatalogFunctionsPage.cpp \
|
||||
widgets/CatalogSequencesPage.cpp \
|
||||
widgets/CatalogTypesPage.cpp
|
||||
DatabaseWindow.cpp \
|
||||
widgets/SingleRecordWidget.cpp
|
||||
|
||||
HEADERS += \
|
||||
catalog/delegates/IconColumnDelegate.h \
|
||||
catalog/models/BaseTableModel.h \
|
||||
catalog/models/ColumnTableModel.h \
|
||||
catalog/models/ConstraintModel.h \
|
||||
catalog/models/DatabasesTableModel.h \
|
||||
catalog/models/DependantsTableModel.h \
|
||||
catalog/models/IndexModel.h \
|
||||
catalog/models/ProcTableModel.h \
|
||||
catalog/models/RolesTableModel.h \
|
||||
catalog/models/SequenceModel.h \
|
||||
catalog/models/TablesTableModel.h \
|
||||
catalog/models/TriggerTableModel.h \
|
||||
catalog/widgets/CatalogConstraintPage.h \
|
||||
catalog/widgets/CatalogFunctionsPage.h \
|
||||
catalog/widgets/CatalogIndexPage.h \
|
||||
catalog/widgets/CatalogInspector.h \
|
||||
catalog/widgets/CatalogNamespacePage.h \
|
||||
catalog/widgets/CatalogPageBase.h \
|
||||
catalog/widgets/CatalogSequencesPage.h \
|
||||
catalog/widgets/CatalogTablesPage.h \
|
||||
catalog/widgets/CatalogTypesPage.h \
|
||||
catalog/widgets/ColumnPage.h \
|
||||
catalog/widgets/DependantsPage.h \
|
||||
catalog/widgets/TriggerPage.h \
|
||||
crud/CrudModel.h \
|
||||
crud/CrudTab.h \
|
||||
querytool/QueryExplainModel.h \
|
||||
querytool/QueryParamListController.h \
|
||||
querytool/QueryResultModel.h \
|
||||
querytool/QueryTool.h \
|
||||
serverinspector/DatabasesPage.h \
|
||||
serverinspector/RolesPage.h \
|
||||
serverinspector/ServerInspector.h \
|
||||
util/PgLabItemDelegate.h \
|
||||
util/PgLabTableView.h \
|
||||
ConnectionConfigurationWidget.h \
|
||||
ConnectionController.h \
|
||||
DependantsPage.h \
|
||||
DependantsTableModel.h \
|
||||
IDatabaseWindow.h \
|
||||
ManagedPage.h \
|
||||
NotificationListWidget.h \
|
||||
NotificationModel.h \
|
||||
NotificationService.h \
|
||||
PgDumpOutputHighlighter.h \
|
||||
PgLabTableViewHelper.h \
|
||||
QueryResultModel.h \
|
||||
QueryExplainModel.h \
|
||||
CreateDatabaseDialog.h \
|
||||
ConnectionManagerWindow.h \
|
||||
ConnectionListModel.h \
|
||||
SslModeModel.h \
|
||||
serverinspector/DatabasesPage.h \
|
||||
serverinspector/RolesPage.h \
|
||||
serverinspector/ServerInspector.h \
|
||||
stopwatch.h \
|
||||
TuplesResultWidget.h \
|
||||
BackupDialog.h \
|
||||
|
|
@ -120,22 +148,10 @@ HEADERS += \
|
|||
ParamTypeDelegate.h \
|
||||
OpenDatabase.h \
|
||||
SqlSyntaxHighlighter.h \
|
||||
DatabasesTableModel.h \
|
||||
RolesTableModel.h \
|
||||
ProcessStdioWidget.h \
|
||||
ResultTableModelUtil.h \
|
||||
BaseTableModel.h \
|
||||
QueryParamListController.h \
|
||||
TablesTableModel.h \
|
||||
ColumnTableModel.h \
|
||||
NamespaceFilterWidget.h \
|
||||
NamespaceItemModel.h \
|
||||
ConstraintModel.h \
|
||||
IconColumnDelegate.h \
|
||||
IndexModel.h \
|
||||
crud/CrudTab.h \
|
||||
crud/CrudModel.h \
|
||||
PgLabItemDelegate.h \
|
||||
Module.h \
|
||||
EditorGutter.h \
|
||||
CodeEditor.h \
|
||||
|
|
@ -144,41 +160,28 @@ HEADERS += \
|
|||
CustomDataRole.h \
|
||||
CodeGenerator.h \
|
||||
UserConfiguration.h \
|
||||
TriggerTableModel.h \
|
||||
TriggerPage.h \
|
||||
SqlCodePreview.h \
|
||||
CustomFilterSortModel.h \
|
||||
PropertiesPage.h \
|
||||
PasswordPromptDialog.h \
|
||||
ProcTableModel.h \
|
||||
ColumnPage.h \
|
||||
EditTableWidget.h \
|
||||
EditColumnTableModel.h \
|
||||
SequenceModel.h \
|
||||
DatabaseWindow.h \
|
||||
PgLabTableView.h \
|
||||
QueryTool.h \
|
||||
CatalogInspector.h \
|
||||
widgets/CatalogIndexPage.h \
|
||||
widgets/CatalogNamespacePage.h \
|
||||
widgets/CatalogPageBase.h \
|
||||
widgets/CatalogConstraintPage.h \
|
||||
widgets/CatalogTablesPage.h \
|
||||
widgets/CatalogFunctionsPage.h \
|
||||
widgets/CatalogSequencesPage.h \
|
||||
NamespaceFilter.h \
|
||||
widgets/CatalogTypesPage.h
|
||||
NamespaceFilter.h \
|
||||
util/PgLabTableViewHelper.h \
|
||||
widgets/SingleRecordWidget.h
|
||||
|
||||
FORMS += \
|
||||
ConnectionManagerWindow.ui \
|
||||
CreateDatabaseDialog.ui \
|
||||
DatabaseWindow.ui \
|
||||
TuplesResultWidget.ui \
|
||||
QueryTab.ui \
|
||||
querytool/QueryTab.ui \
|
||||
ProcessStdioWidget.ui \
|
||||
NamespaceFilterWidget.ui \
|
||||
crud/CrudTab.ui \
|
||||
CodeGenerator.ui
|
||||
CodeGenerator.ui \
|
||||
widgets/SingleRecordWidget.ui
|
||||
|
||||
RESOURCES += \
|
||||
resources.qrc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue