SelectionZoneAction.cpp
66 lines
| 2.0 KiB
| text/x-c
|
CppLexer
r1076 | #include <Actions/SelectionZoneAction.h> | |||
#include <Visualization/VisualizationSelectionZoneItem.h> | ||||
Q_LOGGING_CATEGORY(LOG_SelectionZoneAction, "SelectionZoneAction") | ||||
struct SelectionZoneAction::SelectionZoneActionPrivate { | ||||
r1083 | explicit SelectionZoneActionPrivate(const QString &name, const QStringList &subMenuList, | |||
r1076 | SelectionZoneAction::ExecuteFunction fun) | |||
r1083 | : m_Name{name}, m_SubMenuList{subMenuList}, m_Fun{std::move(fun)} | |||
r1076 | { | |||
} | ||||
QString m_Name; | ||||
r1083 | QStringList m_SubMenuList; | |||
r1082 | QKeySequence m_DisplayedShortcut; | |||
r1076 | SelectionZoneAction::ExecuteFunction m_Fun; | |||
r1080 | SelectionZoneAction::EnableFunction m_EnableFun = [](auto zones) { return true; }; | |||
r1076 | }; | |||
SelectionZoneAction::SelectionZoneAction(const QString &name, ExecuteFunction fun) | ||||
r1083 | : impl{spimpl::make_unique_impl<SelectionZoneActionPrivate>(name, QStringList{}, | |||
std::move(fun))} | ||||
{ | ||||
} | ||||
SelectionZoneAction::SelectionZoneAction(const QStringList &subMenuList, const QString &name, | ||||
SelectionZoneAction::ExecuteFunction fun) | ||||
: impl{spimpl::make_unique_impl<SelectionZoneActionPrivate>(name, subMenuList, | ||||
std::move(fun))} | ||||
r1076 | { | |||
} | ||||
r1080 | void SelectionZoneAction::setEnableFunction(EnableFunction fun) | |||
{ | ||||
impl->m_EnableFun = std::move(fun); | ||||
} | ||||
r1082 | void SelectionZoneAction::setDisplayedShortcut(const QKeySequence &shortcut) | |||
{ | ||||
impl->m_DisplayedShortcut = shortcut; | ||||
} | ||||
QKeySequence SelectionZoneAction::displayedShortcut() const | ||||
{ | ||||
return impl->m_DisplayedShortcut; | ||||
} | ||||
r1076 | QString SelectionZoneAction::name() const noexcept | |||
{ | ||||
return impl->m_Name; | ||||
} | ||||
r1083 | QStringList SelectionZoneAction::subMenuList() const noexcept | |||
{ | ||||
return impl->m_SubMenuList; | ||||
} | ||||
r1076 | void SelectionZoneAction::execute(const QVector<VisualizationSelectionZoneItem *> &item) | |||
{ | ||||
impl->m_Fun(item); | ||||
} | ||||
r1080 | ||||
bool SelectionZoneAction::isEnabled(const QVector<VisualizationSelectionZoneItem *> &item) | ||||
{ | ||||
return impl->m_EnableFun(item); | ||||
} | ||||