]> Pileus Git - ~andy/gtk/blob - gdk/gdkkeynames.c
Adapt to the GDK_KEY changes
[~andy/gtk] / gdk / gdkkeynames.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "config.h"
28 #include <glib/gprintf.h>
29 #include <stdlib.h>
30 #include <string.h>
31
32 #include "gdkkeysyms.h"
33 #include "gdkinternals.h"
34
35 /* Key handling not part of the keymap */
36
37 #include "keyname-table.h"
38
39 #define GDK_NUM_KEYS G_N_ELEMENTS (gdk_keys_by_keyval)
40
41 static int
42 gdk_keys_keyval_compare (const void *pkey, const void *pbase)
43 {
44   return (*(int *) pkey) - ((gdk_key *) pbase)->keyval;
45 }
46
47 gchar*
48 gdk_keyval_name (guint keyval)
49 {
50   static gchar buf[100];
51   gdk_key *found;
52
53   /* Check for directly encoded 24-bit UCS characters: */
54   if ((keyval & 0xff000000) == 0x01000000)
55     {
56       g_sprintf (buf, "U+%.04X", (keyval & 0x00ffffff));
57       return buf;
58     }
59
60   found = bsearch (&keyval, gdk_keys_by_keyval,
61                    GDK_NUM_KEYS, sizeof (gdk_key),
62                    gdk_keys_keyval_compare);
63
64   if (found != NULL)
65     {
66       while ((found > gdk_keys_by_keyval) &&
67              ((found - 1)->keyval == keyval))
68         found--;
69             
70       return (gchar *) (keynames + found->offset);
71     }
72   else if (keyval != 0)
73     {
74       g_sprintf (buf, "%#x", keyval);
75       return buf;
76     }
77
78   return NULL;
79 }
80
81 static int
82 gdk_keys_name_compare (const void *pkey, const void *pbase)
83 {
84   return strcmp ((const char *) pkey, 
85                  (const char *) (keynames + ((const gdk_key *) pbase)->offset));
86 }
87
88 guint
89 gdk_keyval_from_name (const gchar *keyval_name)
90 {
91   gdk_key *found;
92
93   g_return_val_if_fail (keyval_name != NULL, 0);
94   
95   found = bsearch (keyval_name, gdk_keys_by_name,
96                    GDK_NUM_KEYS, sizeof (gdk_key),
97                    gdk_keys_name_compare);
98   if (found != NULL)
99     return found->keyval;
100   else
101     return GDK_KEY_VoidSymbol;
102 }