ActionableT

This interface provides a convenient way of associating widgets with actions on a #GtkApplicationWindow or #GtkApplication.

It primarily consists of two properties: #GtkActionable:action-name and #GtkActionable:action-target. There are also some convenience APIs for setting these properties.

The action will be looked up in action groups that are found among the widgets ancestors. Most commonly, these will be the actions with the “win.” or “app.” prefix that are associated with the #GtkApplicationWindow or #GtkApplication, but other action groups that are added with gtk.widget.Widget.insertActionGroup will be consulted as well.

Members

Functions

getActionName
string getActionName()

Gets the action name for actionable.

getActionTargetValue
glib.variant.Variant getActionTargetValue()

Gets the current target value of actionable.

setActionName
void setActionName(string actionName)

Specifies the name of the action with which this widget should be associated. If action_name is null then the widget will be unassociated from any previous action.

setActionTargetValue
void setActionTargetValue(glib.variant.Variant targetValue)

Sets the target value of an actionable widget.

setDetailedActionName
void setDetailedActionName(string detailedActionName)

Sets the action-name and associated string target value of an actionable widget.

Properties

actionName
string actionName [@property getter]
actionName
string actionName [@property setter]
actionTarget
glib.variant.Variant actionTarget [@property getter]
actionTarget
glib.variant.Variant actionTarget [@property setter]