]> Pileus Git - ~andy/gtk/blob - gdk/gdkkeys.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gdk / gdkkeys.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 2000 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
23  */
24
25 #ifndef __GDK_KEYS_H__
26 #define __GDK_KEYS_H__
27
28 #if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
29 #error "Only <gdk/gdk.h> can be included directly."
30 #endif
31
32 #include <gdk/gdkversionmacros.h>
33 #include <gdk/gdktypes.h>
34
35 G_BEGIN_DECLS
36
37
38 typedef struct _GdkKeymapKey GdkKeymapKey;
39
40 /**
41  * GdkKeymapKey:
42  * @keycode: the hardware keycode. This is an identifying number for a
43  *   physical key.
44  * @group: indicates movement in a horizontal direction. Usually groups are used
45  *   for two different languages. In group 0, a key might have two English
46  *   characters, and in group 1 it might have two Hebrew characters. The Hebrew
47  *   characters will be printed on the key next to the English characters.
48  * @level: indicates which symbol on the key will be used, in a vertical direction.
49  *   So on a standard US keyboard, the key with the number "1" on it also has the
50  *   exclamation point ("!") character on it. The level indicates whether to use
51  *   the "1" or the "!" symbol. The letter keys are considered to have a lowercase
52  *   letter at level 0, and an uppercase letter at level 1, though only the
53  *   uppercase letter is printed.
54  *
55  * A #GdkKeymapKey is a hardware key that can be mapped to a keyval.
56  */
57 struct _GdkKeymapKey
58 {
59   guint keycode;
60   gint  group;
61   gint  level;
62 };
63
64
65 #define GDK_TYPE_KEYMAP              (gdk_keymap_get_type ())
66 #define GDK_KEYMAP(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_KEYMAP, GdkKeymap))
67 #define GDK_IS_KEYMAP(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_KEYMAP))
68
69 /**
70  * GdkKeymap:
71  *
72  * A #GdkKeymap defines the translation from keyboard state
73  * (including a hardware key, a modifier mask, and active keyboard group)
74  * to a keyval. This translation has two phases. The first phase is
75  * to determine the effective keyboard group and level for the keyboard
76  * state; the second phase is to look up the keycode/group/level triplet
77  * in the keymap and see what keyval it corresponds to.
78  */
79
80 GType gdk_keymap_get_type (void) G_GNUC_CONST;
81
82 #ifndef GDK_MULTIHEAD_SAFE
83 GdkKeymap* gdk_keymap_get_default     (void);
84 #endif
85 GdkKeymap* gdk_keymap_get_for_display (GdkDisplay *display);
86
87
88 guint          gdk_keymap_lookup_key               (GdkKeymap           *keymap,
89                                                     const GdkKeymapKey  *key);
90 gboolean       gdk_keymap_translate_keyboard_state (GdkKeymap           *keymap,
91                                                     guint                hardware_keycode,
92                                                     GdkModifierType      state,
93                                                     gint                 group,
94                                                     guint               *keyval,
95                                                     gint                *effective_group,
96                                                     gint                *level,
97                                                     GdkModifierType     *consumed_modifiers);
98 gboolean       gdk_keymap_get_entries_for_keyval   (GdkKeymap           *keymap,
99                                                     guint                keyval,
100                                                     GdkKeymapKey       **keys,
101                                                     gint                *n_keys);
102 gboolean       gdk_keymap_get_entries_for_keycode  (GdkKeymap           *keymap,
103                                                     guint                hardware_keycode,
104                                                     GdkKeymapKey       **keys,
105                                                     guint              **keyvals,
106                                                     gint                *n_entries);
107
108 PangoDirection gdk_keymap_get_direction            (GdkKeymap           *keymap);
109 gboolean       gdk_keymap_have_bidi_layouts        (GdkKeymap           *keymap);
110 gboolean       gdk_keymap_get_caps_lock_state      (GdkKeymap           *keymap);
111 gboolean       gdk_keymap_get_num_lock_state       (GdkKeymap           *keymap);
112 GDK_AVAILABLE_IN_3_4
113 guint          gdk_keymap_get_modifier_state       (GdkKeymap           *keymap);
114 void           gdk_keymap_add_virtual_modifiers    (GdkKeymap           *keymap,
115                                                     GdkModifierType     *state);
116 gboolean       gdk_keymap_map_virtual_modifiers    (GdkKeymap           *keymap,
117                                                     GdkModifierType     *state);
118 GDK_AVAILABLE_IN_3_4
119 GdkModifierType gdk_keymap_get_modifier_mask       (GdkKeymap           *keymap,
120                                                     GdkModifierIntent    intent);
121
122
123 /* Key values
124  */
125 gchar*   gdk_keyval_name         (guint        keyval) G_GNUC_CONST;
126
127 guint    gdk_keyval_from_name    (const gchar *keyval_name);
128 void     gdk_keyval_convert_case (guint        symbol,
129                                   guint       *lower,
130                                   guint       *upper);
131 guint    gdk_keyval_to_upper     (guint        keyval) G_GNUC_CONST;
132 guint    gdk_keyval_to_lower     (guint        keyval) G_GNUC_CONST;
133 gboolean gdk_keyval_is_upper     (guint        keyval) G_GNUC_CONST;
134 gboolean gdk_keyval_is_lower     (guint        keyval) G_GNUC_CONST;
135
136 guint32  gdk_keyval_to_unicode   (guint        keyval) G_GNUC_CONST;
137 guint    gdk_unicode_to_keyval   (guint32      wc) G_GNUC_CONST;
138
139
140 G_END_DECLS
141
142 #endif /* __GDK_KEYS_H__ */