ActionsGuiController.h
27 lines
| 827 B
| text/x-c
|
CLexer
r1076 | #ifndef SCIQLOP_ACTIONSGUICONTROLLER_H | |||
#define SCIQLOP_ACTIONSGUICONTROLLER_H | ||||
#include <Actions/SelectionZoneAction.h> | ||||
#include <Common/spimpl.h> | ||||
#include <memory> | ||||
class ActionsGuiController { | ||||
public: | ||||
ActionsGuiController(); | ||||
std::shared_ptr<SelectionZoneAction> | ||||
addSectionZoneAction(const QString &name, SelectionZoneAction::ExecuteFunction function); | ||||
r1083 | ||||
std::shared_ptr<SelectionZoneAction> | ||||
addSectionZoneAction(const QStringList &subMenuList, const QString &name, | ||||
SelectionZoneAction::ExecuteFunction function); | ||||
r1076 | QVector<std::shared_ptr<SelectionZoneAction> > selectionZoneActions() const; | |||
private: | ||||
class ActionsGuiControllerPrivate; | ||||
spimpl::unique_impl_ptr<ActionsGuiControllerPrivate> impl; | ||||
}; | ||||
#endif // SCIQLOP_ACTIONSGUICONTROLLER_H | ||||