[glibmm] Gio::Action: Improve the documentation
- From: Kjell Ahlstedt <kjellahl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glibmm] Gio::Action: Improve the documentation
- Date: Mon, 6 Jun 2022 17:02:27 +0000 (UTC)
commit 6dc1ce0d7cae09f3ea84f4a7b44f5ff440803765
Author: Kjell Ahlstedt <kjellahlstedt gmail com>
Date: Mon Jun 6 18:57:01 2022 +0200
Gio::Action: Improve the documentation
See issue #100
gio/src/action.hg | 35 ++++++++++++++++++-----------------
1 file changed, 18 insertions(+), 17 deletions(-)
---
diff --git a/gio/src/action.hg b/gio/src/action.hg
index 514d0a87..0e5748b8 100644
--- a/gio/src/action.hg
+++ b/gio/src/action.hg
@@ -32,33 +32,34 @@ typedef struct _GActionInterface GActionInterface;
namespace Gio
{
-/** Action - An action.
- * Action represents a single named action.
+/** %Action - An action interface.
+ * %Action represents a single named action.
*
* The main interface to an action is that it can be activated with activate().
* This results in the signal_activate() signal being emitted. An activation
- * has a Glib::VariantBase parameter (which may be <tt>0</tt>). The correct
- * type for the parameter is determined by a static parameter type (which is
- * given at construction time).
+ * may optionally have a parameter, activate(const T_Value& parameter).
+ * The correct type for the parameter is determined by a static parameter type
+ * (which is given at construction time).
*
* An action may optionally have a state, in which case the state may be set
- * with change_state(). This call takes a Glib::VariantBase. The correct type
- * for the state is determined by a static state type (which is given at
- * construction time).
+ * with change_state(). The correct type for the state is determined by a static
+ * state type (which is given at construction time).
+ *
+ * An %Action can have a state, but no parameter, or vice versa. If it has both,
+ * the parameter type can differ from the state type.
*
* The state may have a hint associated with it, specifying its valid range.
*
- * Action is merely the interface to the concept of an action, as described
- * above. Various implementations of actions exist, including SimpleAction and
- * Gtk::Action.
+ * %Action is merely the interface to the concept of an action, as described
+ * above. Various implementations of actions exist, including SimpleAction.
*
* In all cases, the implementing class is responsible for storing the name of
* the action, the parameter type, the enabled state, the optional state type
* and the state and emitting the appropriate signals when these change. The
- * implementor responsible for filtering calls to activate() and change_state()
+ * implementor is responsible for filtering calls to activate() and change_state()
* for type safety and for the state being enabled.
*
- * Probably the only useful thing to do with a Action is to put it inside of a
+ * Probably the only useful thing to do with an %Action is to put it inside of a
* SimpleActionGroup.
*
* @newin{2,32}
@@ -137,16 +138,16 @@ public:
_WRAP_METHOD(Glib::VariantBase get_state_variant() const, g_action_get_state)
- /** Activates the action.
+ /** Activates the action without a parameter.
*/
void activate();
- /** Activates the action.
+ /** Activates the action with a parameter.
*
* The @a parameter must be the correct type of parameter for the action (ie:
- * the parameter type given at construction time), if any.
+ * the parameter type given at construction time).
*
- * @param parameter: The parameter to the activation
+ * @param parameter The parameter to the activation
*/
template <typename T_Value>
void activate(const T_Value& parameter);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]