gdk-sharp2.12.0.0Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details.Object for keyboard code manipulation
Defines translations from keyboard states to a `keyval`. Two phase translation: determine keyboard group and level
for keyboard state, then lookup the keycode/group/level triplet in the keymap and get the corresponding keyval.
Keycode is the hardware/keyboard code for that key. Keygroup is used for language and horizontal tracking [ "group 1" is english,
"group 2" is hebrew]. Keylevel is used to track letter case/alternate representation and vertical movement [ level 0 is "a",
level 1 is "A" ; alternately, level 0 is "1" and level 1 is "!" ].
GLib.ObjectMethodSystem.UInt32
Looks up a keyval mapped to a keycode/group/level triplet. If no keyval is bound to `key`, the method returns 0.
An object of type 'Gdk.KeymapKey', initalized keycode/group/level triplet.
An object of type 'uint', a keyval or 0 if none was found.
None
ConstructorInternal constructor
Pointer to the C object.
This is an internal constructor, and should not be used by user code.PropertyGdk.KeymapTo be addedTo be added: an object of type 'Gdk.Keymap'To be addedPropertyPango.Direction
Member that represents the current direction of the keymap.
An object of type 'Pango.Direction', current keymap direction.
None
EventSystem.EventHandler
An event handler that raised when the direction of a keymap has been changed.
None
GLib.Signal("direction_changed")EventSystem.EventHandlerTo be addedTo be addedGLib.Signal("keys_changed")MethodGdk.KeymapTo be added
a a To be addedMethodSystem.BooleanTranslates the contents of a Gdk.KeymapKey into a keyval/group/level. Modifiers affecting the translation are returned
in `consumed_modifiers`. `effective_group` is the group used in translation. Key level is determined by `state`.
An object of type , a keyboard code.
An object of type , a modifier state.
An object of type , active keyboard group.
An object of type , return reference for `keyval`.
An object of type , return reference for `effective group`.
An object of type , return reference for the new level.
An object of type , return reference for modifiers used to determine group/level.
An object of type , return if keys were found and returned.PropertyGLib.GTypeGType Property.a Returns the native value for .MethodSystem.VoidDefault handler for the event.Override this method in a subclass to provide a default handler for the event.MethodSystem.VoidDefault handler for the event.Override this method in a subclass to provide a default handler for the event.ConstructorInternal constructor
a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code.System.ObsoleteConstructorTo be addedTo be addedMethodSystem.VoidStores in a reference to a list of the keys bound to . The nth Gdk.KeymapKey in is associated with the nth keyval in . When a keycode is pressed by the user, the keyval from is selected.
An object of type , a keyboard code.
An object of type , return reference for the list of keys.
An object of type , return reference for the list of corresponding keyvals for MethodGdk.KeymapKey[]Gets a list of keycode/group/level combinations that generate a .
An object of type , such as GDK_a, GDK_up, GDK_RETURN, etc.
the list of key sequences.MethodSystem.BooleanRequests Bidi layout status.If , bi-directional layout is in use.To be added.