Functions for manipulating keyboard codes
Key values are the codes which are sent whenever a key is pressed or released.
They appear in the field of the <gdk-event-key>
structure, which is
passed to signal handlers for the "key-press-event" and "key-release-event"
signals. The complete list of key values can be found in the
<gdk/gdkkeysyms.h> header file. <gdk/gdkkeysyms.h> is not included
in <gtk/gtk.h>, it must be included independently, because the file is
quite large.
Key values can be converted into a string representation using
gdk-keyval-name
. The reverse function, converting a string to a key
value, is provided by gdk-keyval-from-name
.
The case of key values can be determined using gdk-keyval-is-upper
and
gdk-keyval-is-lower
. Key values can be converted to upper or lower case
using gdk-keyval-to-upper
and gdk-keyval-to-lower
.
When it makes sense, key values can be converted to and from Unicode characters
with gdk-keyval-to-unicode
and gdk-unicode-to-keyval
.
One <gdk-keymap>
object exists for each user display.
gdk-keymap-get-default
returns the <gdk-keymap>
for the default
display; to obtain keymaps for other displays, use
gdk-keymap-get-for-display
. A keymap is a mapping from
<gdk-keymap-key>
to key values. You can think of a
<gdk-keymap-key>
as a representation of a symbol printed on a physical
keyboard key. That is, it contains three pieces of information. First, it
contains the hardware keycode; this is an identifying number for a physical key.
Second, it contains the level of the key. The level indicates which symbol
on the key will be used, in a vertical direction. So on a standard US keyboard,
the key with the number "1" on it also has the exclamation point ("!") character
on it. The level indicates whether to use the "1" or the "!" symbol. The letter
keys are considered to have a lowercase letter at level 0, and an uppercase
letter at level 1, though only the uppercase letter is printed. Third, the
<gdk-keymap-key>
contains a group; groups are not used on standard US
keyboards, but are used in many other countries. On a keyboard with groups,
there can be 3 or 4 symbols printed on a single key. The group indicates
movement in a horizontal direction. Usually groups are used for two different
languages. In group 0, a key might have two English characters, and in group 1
it might have two Hebrew characters. The Hebrew characters will be printed on
the key next to the English characters.
In order to use a keymap to interpret a key event, it's necessary to first
convert the keyboard state into an effective group and level. This is done via a
set of rules that varies widely according to type of keyboard and user
configuration. The function gdk-keymap-translate-keyboard-state
accepts a
keyboard state – consisting of hardware keycode pressed, active modifiers, and
active group – applies the appropriate rules, and returns the group/level to be
used to index the keymap, along with the modifiers which did not affect the
group and level. i.e. it returns "unconsumed modifiers." The keyboard group may
differ from the effective group used for keymap lookups because some keys don't
have multiple groups - e.g. the Enter key is always in group 0 regardless of
keyboard state.
Note that gdk-keymap-translate-keyboard-state
also returns the keyval,
i.e. it goes ahead and performs the keymap lookup in addition to telling you
which effective group/level values were used for the lookup.
<gdk-event-key>
already contains this keyval, however, so you don't
normally need to call gdk-keymap-translate-keyboard-state
just to get the
keyval.
The ::direction_changed signal gets emitted when the direction of the keymap changes.
Since 2.0
The ::keys_changed signal is emitted when the mapping represented by keymap changes.
Since 2.2
<gdk-keymap>
)Returns the
<gdk-keymap>
attached to the default display.
- ret
- the
<gdk-keymap>
attached to the default display.
<gdk-display>
) ⇒ (ret <gdk-keymap>
)Returns the
<gdk-keymap>
attached to display.
- display
- the
<gdk-display>
.- ret
- the
<gdk-keymap>
attached to display.Since 2.2
<gdk-keymap>
) ⇒ (ret <pango-direction>
)Returns the direction of the keymap.
- keymap
- a
<gdk-keymap>
or ‘#f
’ to use the default keymap. Returns: ‘PANGO_DIRECTION_LTR’ or ‘PANGO_DIRECTION_RTL’.- ret
- the direction of the keymap.
unsigned-int
) ⇒ (ret mchars
)Converts a key value into a symbolic name. The names are the same as those in the <gdk/gdkkeysyms.h> header file but without the leading "GDK_".
- keyval
- a key value.
- ret
- a string containing the name of the key, or ‘
#f
’ if keyval is not a valid key. The string should not be modified.
mchars
) ⇒ (ret unsigned-int
)Converts a key name to a key value.
- keyval-name
- a key name.
- ret
- the corresponding key value, or ‘GDK_VoidSymbol’ if the key name is not a valid key.
unsigned-int
) ⇒ (lower unsigned-int
) (upper unsigned-int
)Obtains the upper- and lower-case versions of the keyval symbol. Examples of keyvals are
<gdk-a>
,<gdk--enter>
,<gdk-f1>
, etc.
- symbol
- a keyval
- lower
- return location for lowercase version of symbol
- upper
- return location for uppercase version of symbol
unsigned-int
) ⇒ (ret unsigned-int
)Converts a key value to upper case, if applicable.
- keyval
- a key value.
- ret
- the upper case form of keyval, or keyval itself if it is already in upper case or it is not subject to case conversion.
unsigned-int
) ⇒ (ret unsigned-int
)Converts a key value to lower case, if applicable.
- keyval
- a key value.
- ret
- the lower case form of keyval, or keyval itself if it is already in lower case or it is not subject to case conversion.
unsigned-int
) ⇒ (ret bool
)Returns ‘
#t
’ if the given key value is in upper case.
- keyval
- a key value.
- ret
- ‘
#t
’ if keyval is in upper case, or if keyval is not subject to case conversion.
unsigned-int
) ⇒ (ret bool
)Returns ‘
#t
’ if the given key value is in lower case.
- keyval
- a key value.
- ret
- ‘
#t
’ if keyval is in lower case, or if keyval is not subject to case conversion.