]> Pileus Git - ~andy/gtk/commitdiff
Map VK_APPS to GDK_Menu. (#172383, Ivan Wong)
authorTor Lillqvist <tml@novell.com>
Sun, 22 May 2005 22:28:39 +0000 (22:28 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Sun, 22 May 2005 22:28:39 +0000 (22:28 +0000)
2005-05-23  Tor Lillqvist  <tml@novell.com>

* gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
GDK_Menu. (#172383, Ivan Wong)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gdk/win32/gdkkeys-win32.c

index 366ee2aa04743c2dc19fe00b75f5efb65c277533..6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-05-23  Tor Lillqvist  <tml@novell.com>
 
+       * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
+       GDK_Menu. (#172383, Ivan Wong)
+
        * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
        of the special cases this function takes care of, use it as
        such. This takes care of for instance the Bengali Virama, see bug
index 366ee2aa04743c2dc19fe00b75f5efb65c277533..6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f 100644 (file)
@@ -1,5 +1,8 @@
 2005-05-23  Tor Lillqvist  <tml@novell.com>
 
+       * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
+       GDK_Menu. (#172383, Ivan Wong)
+
        * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
        of the special cases this function takes care of, use it as
        such. This takes care of for instance the Bengali Virama, see bug
index 366ee2aa04743c2dc19fe00b75f5efb65c277533..6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f 100644 (file)
@@ -1,5 +1,8 @@
 2005-05-23  Tor Lillqvist  <tml@novell.com>
 
+       * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
+       GDK_Menu. (#172383, Ivan Wong)
+
        * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
        of the special cases this function takes care of, use it as
        such. This takes care of for instance the Bengali Virama, see bug
index 1c91fe75c3c3ec128ffb13d516019fb65b75a6d8..ee144d9fe4f57f1034834bf86aff19a8b0e9b7c0 100644 (file)
@@ -144,6 +144,8 @@ handle_special (guint  vk,
       *ksymp = GDK_Meta_L; break;
     case VK_RWIN:
       *ksymp = GDK_Meta_R; break;
+    case VK_APPS:
+      *ksymp = GDK_Menu; break;
     case VK_MULTIPLY:
       *ksymp = GDK_KP_Multiply; break;
     case VK_ADD: