| Top |
| GActionGroup * | action-group | Read / Write / Construct Only |
| CdkDevice * | pad | Read / Write / Construct Only |
CtkPadController is an event controller for the pads found in drawing tablets (The collection of buttons and tactile sensors often found around the stylus-sensitive area).
These buttons and sensors have no implicit meaning, and by default they perform no action, this event controller is provided to map those to GAction objects, thus letting the application give those a more semantic meaning.
Buttons and sensors are not constrained to triggering a single action, some
CDK_SOURCE_TABLET_PAD devices feature multiple "modes", all these input
elements have one current mode, which may determine the final action
being triggered. Pad devices often divide buttons and sensors into groups,
all elements in a group share the same current mode, but different groups
may have different modes. See cdk_device_pad_get_n_groups() and
cdk_device_pad_get_group_n_modes().
Each of the actions that a given button/strip/ring performs for a given mode is defined by CtkPadActionEntry, it contains an action name that will be looked up in the given GActionGroup and activated whenever the specified input element and mode are triggered.
A simple example of CtkPadController usage, assigning button 1 in all modes and pad devices to an "invert-selection" action:
1 2 3 4 5 6 7 8 9 10 11 12 |
CtkPadActionEntry *pad_actions[] = { { CTK_PAD_ACTION_BUTTON, 1, -1, "Invert selection", "pad-actions.invert-selection" }, … }; … action_group = g_simple_action_group_new (); action = g_simple_action_new ("pad-actions.invert-selection", NULL); g_signal_connect (action, "activate", on_invert_selection_activated, NULL); g_action_map_add_action (G_ACTION_MAP (action_group), action); … pad_controller = ctk_pad_controller_new (window, action_group, NULL); |
The actions belonging to rings/strips will be activated with a parameter
of type G_VARIANT_TYPE_DOUBLE bearing the value of the given axis, it
is required that those are made stateful and accepting this GVariantType.
CtkPadController * ctk_pad_controller_new (CtkWindow *window,GActionGroup *group,CdkDevice *pad);
Creates a new CtkPadController that will associate events from pad
to
actions. A NULL pad may be provided so the controller manages all pad devices
generically, it is discouraged to mix CtkPadController objects with NULL
and non-NULL pad
argument on the same window
, as execution order is not
guaranteed.
The CtkPadController is created with no mapped actions. In order to map pad
events to actions, use ctk_pad_controller_set_action_entries() or
ctk_pad_controller_set_action().
window |
||
group |
GActionGroup to trigger actions from |
|
pad |
A |
[nullable] |
Since: 3.22
void ctk_pad_controller_set_action_entries (CtkPadController *controller,const CtkPadActionEntry *entries,gint n_entries);
This is a convenience function to add a group of action entries on
controller
. See CtkPadActionEntry and ctk_pad_controller_set_action().
controller |
||
entries |
the action entries to set on |
[array length=n_entries] |
n_entries |
the number of elements in |
Since: 3.22
void ctk_pad_controller_set_action (CtkPadController *controller,CtkPadActionType type,gint index,gint mode,const gchar *label,const gchar *action_name);
Adds an individual action to controller
. This action will only be activated
if the given button/ring/strip number in index
is interacted while
the current mode is mode
. -1 may be used for simple cases, so the action
is triggered on all modes.
The given label
should be considered user-visible, so internationalization
rules apply. Some windowing systems may be able to use those for user
feedback.
controller |
||
type |
the type of pad feature that will trigger this action |
|
index |
the 0-indexed button/ring/strip number that will trigger this action |
|
mode |
the mode that will trigger this action, or -1 for all modes. |
|
label |
Human readable description of this action, this string should be deemed user-visible. |
|
action_name |
action name that will be activated in the GActionGroup |
Since: 3.22
struct CtkPadActionEntry {
CtkPadActionType type;
gint index;
gint mode;
gchar *label;
gchar *action_name;
};
Struct defining a pad action entry.
CtkPadActionType |
the type of pad feature that will trigger this action entry. |
|
the 0-indexed button/ring/strip number that will trigger this action entry. |
||
the mode that will trigger this action entry, or -1 for all modes. |
||
Human readable description of this action entry, this string should be deemed user-visible. |
||
action name that will be activated in the GActionGroup. |
“action-group” property “action-group” GActionGroup *
Action group to launch actions from.
Owner: CtkPadController
Flags: Read / Write / Construct Only
“pad” property“pad” CdkDevice *
Pad device to control.
Owner: CtkPadController
Flags: Read / Write / Construct Only