Made step to remove ASyncWindow in favour of usage of Future and FutureWatcher.
This should allow concurrency in the plugins to be independent from their container. Contains also some work on the system for registering plugins.
This commit is contained in:
parent
a54a063c13
commit
15bee33076
25 changed files with 327 additions and 52 deletions
19
pglab/plugin_support/PluginModule.cpp
Normal file
19
pglab/plugin_support/PluginModule.cpp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#include "plugin_support/PluginModule.h"
|
||||
|
||||
PluginModule::PluginModule(QString name, QString ident)
|
||||
: m_name(std::move(name))
|
||||
, m_ident(std::move(ident))
|
||||
{
|
||||
}
|
||||
|
||||
void PluginModule::setDisplayCategory(QString category)
|
||||
{
|
||||
m_displayCategory = std::move(category);
|
||||
}
|
||||
|
||||
void PluginModule::registerAction(QAction *action, MenuLocation menu_location, ToolbarLocation toolbar_location)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue