PadController
open class PadController : EventController, PadControllerProtocol
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
GAction 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 [methodGdk.DevicePad.get_n_groups] and
[methodGdk.DevicePad.get_group_n_modes].
Each of the actions that a given button/strip/ring performs for a given
mode is defined by a [structGtk.PadActionEntry]. 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 GtkPadController usage: Assigning button 1 in all
modes and pad devices to an “invert-selection” action:
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.
The PadController type acts as a reference-counted owner of an underlying GtkPadController instance.
It provides the methods that can operate on this data type through PadControllerProtocol conformance.
Use PadController as a strong reference or owner of a GtkPadController instance.
-
Designated initialiser from the underlying `C` data type.This creates an instance without performing an unbalanced retain i.e., ownership is transferred to the
PadControllerinstance.Declaration
Swift
@inlinable public init(_ op: UnsafeMutablePointer<GtkPadController>)Parameters
oppointer to the underlying object
-
Designated initialiser from a constant pointer to the underlying
Cdata type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to thePadControllerinstance.Declaration
Swift
@inlinable public init(_ op: UnsafePointer<GtkPadController>)Parameters
oppointer to the underlying object
-
Optional initialiser from a non-mutating
gpointerto the underlyingCdata type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to thePadControllerinstance.Declaration
Swift
@inlinable override public init!(gpointer op: gpointer?)Parameters
opgpointer to the underlying object
-
Optional initialiser from a non-mutating
gconstpointerto the underlyingCdata type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to thePadControllerinstance.Declaration
Swift
@inlinable override public init!(gconstpointer op: gconstpointer?)Parameters
oppointer to the underlying object
-
Optional initialiser from a constant pointer to the underlying
Cdata type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to thePadControllerinstance.Declaration
Swift
@inlinable public init!(_ op: UnsafePointer<GtkPadController>?)Parameters
oppointer to the underlying object
-
Optional initialiser from the underlying
Cdata type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to thePadControllerinstance.Declaration
Swift
@inlinable public init!(_ op: UnsafeMutablePointer<GtkPadController>?)Parameters
oppointer to the underlying object
-
Designated initialiser from the underlying
Cdata type. Will retainGtkPadController. i.e., ownership is transferred to thePadControllerinstance.Declaration
Swift
@inlinable public init(retaining op: UnsafeMutablePointer<GtkPadController>)Parameters
oppointer to the underlying object
-
Reference intialiser for a related type that implements
PadControllerProtocolWill retainGtkPadController.Declaration
Swift
@inlinable public init<T>(padController other: T) where T : PadControllerProtocolParameters
otheran instance of a related type that implements
PadControllerProtocol -
Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PadControllerProtocol.Declaration
Swift
@inlinable override public init<T>(cPointer p: UnsafeMutablePointer<T>)Parameters
cPointerpointer to the underlying object
-
Unsafe typed, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PadControllerProtocol.Declaration
Swift
@inlinable override public init<T>(retainingCPointer cPointer: UnsafeMutablePointer<T>)Parameters
cPointerpointer to the underlying object
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PadControllerProtocol.Declaration
Swift
@inlinable override public init(raw p: UnsafeRawPointer)Parameters
praw pointer to the underlying object
-
Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PadControllerProtocol.Declaration
Swift
@inlinable override public init(retainingRaw raw: UnsafeRawPointer) -
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PadControllerProtocol.Declaration
Swift
@inlinable public required init(raw p: UnsafeMutableRawPointer)Parameters
pmutable raw pointer to the underlying object
-
Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PadControllerProtocol.Declaration
Swift
@inlinable required public init(retainingRaw raw: UnsafeMutableRawPointer)Parameters
rawmutable raw pointer to the underlying object
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PadControllerProtocol.Declaration
Swift
@inlinable override public init(opaquePointer p: OpaquePointer)Parameters
popaque pointer to the underlying object
-
Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PadControllerProtocol.Declaration
Swift
@inlinable override public init(retainingOpaquePointer p: OpaquePointer)Parameters
popaque pointer to the underlying object
-
Creates a new
GtkPadControllerthat will associate events frompadto actions.A
nilpad may be provided so the controller manages all pad devices generically, it is discouraged to mixGtkPadControllerobjects withniland non-nilpadargument on the same toplevel window, as execution order is not guaranteed.The
GtkPadControlleris created with no mapped actions. In order to map pad events to actions, use [methodGtk.PadController.set_action_entries] or [methodGtk.PadController.set_action].Be aware that pad events will only be delivered to
GtkWindows, so adding a pad controller to any other type of widget will not have an effect.Declaration
Swift
@inlinable public init<ActionGroupT, DeviceT>(group: ActionGroupT, pad: DeviceT?) where ActionGroupT : ActionGroupProtocol, DeviceT : DeviceProtocol
View on GitHub
Install in Dash
PadController Class Reference