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
14
pglab/plugin_support/ToolbarLocation.cpp
Normal file
14
pglab/plugin_support/ToolbarLocation.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "ToolbarLocation.h"
|
||||
|
||||
ToolbarLocation::ToolbarLocation() = default;
|
||||
|
||||
ToolbarLocation::ToolbarLocation(QString toolbar, QString group, int position)
|
||||
: m_toolbar(std::move(toolbar))
|
||||
, m_group(std::move(group))
|
||||
, m_position(position)
|
||||
{}
|
||||
|
||||
bool ToolbarLocation::isEmpty() const
|
||||
{
|
||||
return m_toolbar.isEmpty();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue