Package ch.bailu.gtk.gtk
Class PadController
java.lang.Object
ch.bailu.gtk.type.Type
ch.bailu.gtk.type.Pointer
ch.bailu.gtk.gobject.Object
ch.bailu.gtk.gtk.EventController
ch.bailu.gtk.gtk.PadController
- All Implemented Interfaces:
PointerInterface
`GtkPadController` is an event controller for the pads found in drawing
tablets.
Pads are 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. `GtkPadController` is provided to map those to
[iface@Gio.Action] objects, thus letting the application give them a more
semantic meaning.
Buttons and sensors are not constrained to triggering a single action,
some %GDK_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 [method@Gdk.DevicePad.get_n_groups] and
[method@Gdk.DevicePad.get_group_n_modes].
Each of the actions that a given button/strip/ring performs for a given mode
is defined by a [struct@Gtk.PadActionEntry]. It contains an action name that
will be looked up in the given [iface@Gio.ActionGroup] and activated whenever
the specified input element and mode are triggered.
A simple example of `GtkPadController` usage: Assigning button 1 in all
modes and pad devices to an "invert-selection" action:
```c
GtkPadActionEntry *pad_actions[] = {
{ GTK_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 = gtk_pad_controller_new (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`.
tablets.
Pads are 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. `GtkPadController` is provided to map those to
[iface@Gio.Action] objects, thus letting the application give them a more
semantic meaning.
Buttons and sensors are not constrained to triggering a single action,
some %GDK_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 [method@Gdk.DevicePad.get_n_groups] and
[method@Gdk.DevicePad.get_group_n_modes].
Each of the actions that a given button/strip/ring performs for a given mode
is defined by a [struct@Gtk.PadActionEntry]. It contains an action name that
will be looked up in the given [iface@Gio.ActionGroup] and activated whenever
the specified input element and mode are triggered.
A simple example of `GtkPadController` usage: Assigning button 1 in all
modes and pad devices to an "invert-selection" action:
```c
GtkPadActionEntry *pad_actions[] = {
{ GTK_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 = gtk_pad_controller_new (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`.
-
Nested Class Summary
Nested classes/interfaces inherited from class ch.bailu.gtk.gobject.Object
Object.OnBindingTransformFunc, Object.OnDestroyNotify, Object.OnDuplicateFunc, Object.OnNotify, Object.OnToggleNotify, Object.OnWeakNotify
-
Field Summary
Fields inherited from class ch.bailu.gtk.gobject.Object
SIGNAL_ON_NOTIFY
-
Constructor Summary
ConstructorDescriptionPadController
(ActionGroup group, Device pad) Creates a new `GtkPadController` that will associate events from @pad to
actions.PadController
(PointerContainer pointer) -
Method Summary
Modifier and TypeMethodDescriptionstatic ClassHandler
static int
static long
static TypeSystem.TypeSize
static long
static TypeSystem.TypeSize
void
Adds an individual action to @controller.void
Adds an individual action to @controller.Methods inherited from class ch.bailu.gtk.gtk.EventController
getCurrentEvent, getCurrentEventDevice, getCurrentEventState, getCurrentEventTime, getName, getPropagationLimit, getPropagationPhase, getWidget, reset, setName, setName, setPropagationLimit, setPropagationPhase, setStaticName, setStaticName
Methods inherited from class ch.bailu.gtk.gobject.Object
addToggleRef, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, disconnect, disconnect, dupData, dupData, dupQdata, forceFloating, freezeNotify, get, get, getData, getData, getProperty, getProperty, getQdata, interfaceFindProperty, interfaceInstallProperty, isFloating, notify, notify, notifyByPspec, onNotify, ref, refSink, removeToggleRef, replaceData, replaceData, replaceQdata, runDispose, set, set, setData, setData, setDataFull, setDataFull, setProperty, setProperty, setQdata, setQdataFull, stealData, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref
Methods inherited from class ch.bailu.gtk.type.Pointer
asCPointer, cast, connectSignal, disconnectSignals, disconnectSignals, equals, hashCode, throwIfNull, throwNullPointerException, toString, unregisterCallbacks, unregisterCallbacks
Methods inherited from class ch.bailu.gtk.type.Type
asCPointer, asCPointer, asCPointerNotNull, asJnaPointer, asJnaPointer, asPointer, asPointer, cast, cast, throwIfNull
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.bailu.gtk.type.PointerInterface
asCPointerNotNull, asJnaPointer, asPointer, isNotNull, isNull
-
Constructor Details
-
PadController
-
PadController
Creates a new `GtkPadController` 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 `GtkPadController` objects with
%NULL and non-%NULL @pad argument on the same toplevel window, as execution
order is not guaranteed.
The `GtkPadController` is created with no mapped actions. In order to
map pad events to actions, use [method@Gtk.PadController.set_action_entries]
or [method@Gtk.PadController.set_action].
Be aware that pad events will only be delivered to `GtkWindow`s, so adding
a pad controller to any other type of widget will not have an effect.- Parameters:
group
- `GActionGroup` to trigger actions frompad
- A %GDK_SOURCE_TABLET_PAD device, or %NULL to handle all pads
-
-
Method Details
-
getClassHandler
-
setAction
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.- Parameters:
type
- the type of pad feature that will trigger this actionindex
- the 0-indexed button/ring/strip number that will trigger this actionmode
- 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`
-
setAction
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.- Parameters:
type
- the type of pad feature that will trigger this actionindex
- the 0-indexed button/ring/strip number that will trigger this actionmode
- 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`
-
getTypeID
public static long getTypeID() -
getParentTypeID
public static long getParentTypeID() -
getTypeSize
-
getParentTypeSize
-
getInstanceSize
public static int getInstanceSize()
-