diff options
author | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2016-10-18 11:55:14 +0200 |
---|---|---|
committer | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2016-10-18 11:55:14 +0200 |
commit | 06687a7f140678f26d9394b4f0b5a4a41aaab63c (patch) | |
tree | 1130b874f9ac1a010688055923b4e738bd863658 /libqmenumodel/src/qstateaction.cpp | |
parent | 1adf4a6c1c9a978d1853612bf994f622599ea29a (diff) | |
download | qmenumodel-06687a7f140678f26d9394b4f0b5a4a41aaab63c.tar.gz qmenumodel-06687a7f140678f26d9394b4f0b5a4a41aaab63c.tar.bz2 qmenumodel-06687a7f140678f26d9394b4f0b5a4a41aaab63c.zip |
QStateAction: add ability to activate or change state by variant string
Diffstat (limited to 'libqmenumodel/src/qstateaction.cpp')
-rw-r--r-- | libqmenumodel/src/qstateaction.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libqmenumodel/src/qstateaction.cpp b/libqmenumodel/src/qstateaction.cpp index 983064a..fcffa44 100644 --- a/libqmenumodel/src/qstateaction.cpp +++ b/libqmenumodel/src/qstateaction.cpp @@ -19,6 +19,7 @@ #include "qstateaction.h" +#include "converter.h" #include "qdbusactiongroup.h" /*! @@ -99,6 +100,15 @@ void QStateAction::updateState(const QVariant &state) } /*! + Request for the state of action to be changed to \a paramenter. + This call merely requests a change. The action may refuse to change its state or may change its state to something other than \a paramenter. +*/ +void QStateAction::updateStateByVariantString(const QString &state) +{ + updateState(Converter::toQVariantFromVariantString(state)); +} + +/*! Activates the action passing \a parameter. \a parameter must be the correct type of parameter for the action */ @@ -107,6 +117,16 @@ void QStateAction::activate(const QVariant ¶meter) m_group->activateAction(m_name, parameter); } +/*! + Activates the action passing \a parameter using GLib Variant String format. + \a parameter must be the correct type of parameter for the action +*/ +void QStateAction::activateByVariantString(const QString ¶meter) +{ + activate(Converter::toQVariantFromVariantString(parameter)); +} + + /*! \internal */ QString QStateAction::name() const { |