Moved definition of widget instance actions to the module so other parts of the system can no about them.
The plugin system will create the Action objects and bind them to the specified slots of the specific widget instances.
This commit is contained in:
parent
d0c4dabe8b
commit
f4f2474a81
21 changed files with 418 additions and 204 deletions
|
|
@ -32,7 +32,6 @@ SOURCES += main.cpp\
|
|||
ConnectionManagerWindow.cpp \
|
||||
ConnectionListModel.cpp \
|
||||
BackupRestore.cpp \
|
||||
QueryTab.cpp \
|
||||
stopwatch.cpp \
|
||||
TuplesResultWidget.cpp \
|
||||
BackupDialog.cpp \
|
||||
|
|
@ -89,7 +88,10 @@ PropertyProxyModel.cpp \
|
|||
plugin_support/PluginContentWidget.cpp \
|
||||
plugin_support/PluginContentWidgetContextBase.cpp \
|
||||
plugin_support/MenuAction.cpp \
|
||||
plugin_support/LMainWindow.cpp
|
||||
plugin_support/LMainWindow.cpp \
|
||||
plugin_support/LWidgetAction.cpp \
|
||||
QueryTool.cpp \
|
||||
QueryToolModule.cpp
|
||||
|
||||
HEADERS += \
|
||||
QueryResultModel.h \
|
||||
|
|
@ -97,7 +99,6 @@ HEADERS += \
|
|||
CreateDatabaseDialog.h \
|
||||
ConnectionManagerWindow.h \
|
||||
ConnectionListModel.h \
|
||||
QueryTab.h \
|
||||
stopwatch.h \
|
||||
TuplesResultWidget.h \
|
||||
BackupDialog.h \
|
||||
|
|
@ -158,7 +159,10 @@ CustomDataRole.h \
|
|||
plugin_support/IPluginContentWidgetContext.h \
|
||||
plugin_support/PluginContentWidgetContextBase.h \
|
||||
plugin_support/MenuAction.h \
|
||||
plugin_support/LMainWindow.h
|
||||
plugin_support/LMainWindow.h \
|
||||
plugin_support/LWidgetAction.h \
|
||||
QueryTool.h \
|
||||
QueryToolModule.h
|
||||
|
||||
FORMS += \
|
||||
ConnectionManagerWindow.ui \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue