GObject.Object
Gdk.Keymap
Import line: | Gdk = imports.gi.Gdk; |
GIR File: | Gdk-2.0.gir |
C documentation: | GdkKeymap |
Class : | Keymap |
Extends: | GObject.Object |
Show / Hide Inherited methods, properties and signals |
Properties | Defined By | |
---|---|---|
display : Gdk.Display
read only
|
Gdk.Keymap | |
parent_instance : GObject.Object
read only
|
Gdk.Keymap |
Method / Constructor | Defined By | |
---|---|---|
new Gdk.Keymap
(Object properties)
Create a new Gdk.Keymap
Create a new Gdk.Keymap
|
||
Gdk.Keymap.get_default
()
:
Gdk.Keymap
|
Gdk.Keymap | |
|
Gdk.Keymap | |
add_virtual_modifiers
(ModifierType state)
:
none
Adds virtual modifiers (i.e.
Adds virtual modifiers (i.e. Super, Hyper and Meta) which correspond to the real modifiers (i.e Mod2, Mod3, ...) in modifiers. are set in state to their non-virtual counterparts (i.e. Mod2, Mod3,...) and set the corresponding bits in state. GDK already does this before delivering key events, but for compatibility reasons, it only sets the first virtual modifier it finds, whereas this function sets all matching virtual modifiers. This function is useful when matching key events against accelerators.
|
Gdk.Keymap | |
get_caps_lock_state
()
:
Boolean
Returns whether the Caps Lock modifer is locked.
Returns whether the Caps Lock modifer is locked.
|
Gdk.Keymap | |
get_direction
()
:
Pango.Direction
|
Gdk.Keymap | |
Returns the keyvals bound to hardware_keycode.
Returns the keyvals bound to hardware_keycode. The Nth GdkKeymapKey in keys is bound to the Nth keyval in keyvals. Free the returned arrays with g_free(). When a keycode is pressed by the user, the keyval from this list of entries is selected by considering the effective keyboard group and level. See gdk_keymap_translate_keyboard_state().
|
Gdk.Keymap | |
Obtains a list of keycode/group/level combinations that will generate keyval.
Obtains a list of keycode/group/level combinations that will generate keyval. Groups and levels are two kinds of keyboard mode; in general, the level determines whether the top or bottom symbol on a key is used, and the group determines whether the left or right symbol is used. On US keyboards, the shift key changes the keyboard level, and there are no groups. A group switch key might convert a keyboard between Hebrew to English modes, for example. GdkEventKey contains a group field that indicates the active keyboard group. The level is computed from the modifier mask. The returned array should be freed with g_free().
|
Gdk.Keymap | |
have_bidi_layouts
()
:
Boolean
|
Gdk.Keymap | |
Looks up the keyval mapped to a keycode/group/level triplet.
Looks up the keyval mapped to a keycode/group/level triplet. If no keyval is bound to key, returns 0. For normal user input, you want to use gdk_keymap_translate_keyboard_state() instead of this function, since the effective group/level may not be the same as the current keyboard state.
|
Gdk.Keymap | |
map_virtual_modifiers
(ModifierType state)
:
Boolean
Maps the virtual modifiers (i.e.
Maps the virtual modifiers (i.e. Super, Hyper and Meta) which are set in state to their non-virtual counterparts (i.e. Mod2, Mod3,...) and set the corresponding bits in state. This function is useful when matching key events against accelerators. same non-virtual modifier. Note that FALSE is also returned if a virtual modifier is mapped to a non-virtual modifier that was already set in state.
|
Gdk.Keymap | |
translate_keyboard_state
(Number hardware_keycode, ModifierType state, Number group, Object out_values)
:
Boolean
Translates the contents of a GdkEventKey into a keyval, effective group, and level.
Translates the contents of a GdkEventKey into a keyval, effective group, and level. Modifiers that affected the translation and are thus unavailable for application use are returned in groups and levels. The effective_group is the group that was actually used for the translation; some keys such as Enter are not affected by the active keyboard group. The level is derived from keyval, so this function isn't as useful as you might think.
|
Gdk.Keymap |
Event | Defined By | |
---|---|---|
direction_changed (Keymap self)
:
none
The ::direction-changed signal gets emitted when the direction of the keymap changes.
The ::direction-changed signal gets emitted when the direction of the keymap changes.
|
Gdk.Keymap | |
keys_changed (Keymap self)
:
none
The ::keys-changed signal is emitted when the mapping represented by
The ::keys-changed signal is emitted when the mapping represented by
|
Gdk.Keymap | |
state_changed (Keymap self)
:
none
The ::state-changed signal is emitted when the state of the keyboard changes, e.g when Caps Lock is turned on or off.
The ::state-changed signal is emitted when the state of the keyboard changes, e.g when Caps Lock is turned on or off. See gdk_keymap_get_caps_lock_state().
|
Gdk.Keymap |