This should allow concurrency in the plugins to be independent from their container. Contains also some work on the system for registering plugins.
18 lines
336 B
C++
18 lines
336 B
C++
#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;
|
|
}
|