The plugin system will create the Action objects and bind them to the specified slots of the specific widget instances.
11 lines
233 B
C++
11 lines
233 B
C++
#include "PluginContentWidget.h"
|
|
|
|
PluginContentWidget::PluginContentWidget(IPluginContentWidgetContext *context, QWidget* parent)
|
|
: QWidget(parent)
|
|
, m_context(context)
|
|
{}
|
|
|
|
bool PluginContentWidget::canClose()
|
|
{
|
|
return true;
|
|
}
|