Made a step in removing knowledge of DatabaseWindow from QueryTab as an effort to move
in the direction of a plugin system. DatabaseWindow now passes a Context to QueryTab and other pages that give those pages an API for passing information up the system without knowing anything about the sytem.
This commit is contained in:
parent
f6ea2ce0a6
commit
2a7e505dbf
13 changed files with 220 additions and 113 deletions
18
pglab/PluginContentWidget.cpp
Normal file
18
pglab/PluginContentWidget.cpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#include "PluginContentWidget.h"
|
||||
|
||||
PluginContentWidget::PluginContentWidget(IPluginContentWidgetContext *context, QWidget* parent)
|
||||
: QWidget(parent)
|
||||
, m_context(context)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
std::vector<QAction*> PluginContentWidget::getToolbarActions()
|
||||
{
|
||||
return std::vector<QAction*>();
|
||||
}
|
||||
|
||||
bool PluginContentWidget::canClose()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue