forked from AuroraMiddleware/gtk
Map VK_APPS to GDK_Menu. (#172383, Ivan Wong)
2005-05-23 Tor Lillqvist <tml@novell.com> * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to GDK_Menu. (#172383, Ivan Wong)
This commit is contained in:
parent
92b97da841
commit
7f2ad4a885
@ -1,5 +1,8 @@
|
|||||||
2005-05-23 Tor Lillqvist <tml@novell.com>
|
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
|
* 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
|
of the special cases this function takes care of, use it as
|
||||||
such. This takes care of for instance the Bengali Virama, see bug
|
such. This takes care of for instance the Bengali Virama, see bug
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2005-05-23 Tor Lillqvist <tml@novell.com>
|
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
|
* 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
|
of the special cases this function takes care of, use it as
|
||||||
such. This takes care of for instance the Bengali Virama, see bug
|
such. This takes care of for instance the Bengali Virama, see bug
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2005-05-23 Tor Lillqvist <tml@novell.com>
|
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
|
* 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
|
of the special cases this function takes care of, use it as
|
||||||
such. This takes care of for instance the Bengali Virama, see bug
|
such. This takes care of for instance the Bengali Virama, see bug
|
||||||
|
@ -144,6 +144,8 @@ handle_special (guint vk,
|
|||||||
*ksymp = GDK_Meta_L; break;
|
*ksymp = GDK_Meta_L; break;
|
||||||
case VK_RWIN:
|
case VK_RWIN:
|
||||||
*ksymp = GDK_Meta_R; break;
|
*ksymp = GDK_Meta_R; break;
|
||||||
|
case VK_APPS:
|
||||||
|
*ksymp = GDK_Menu; break;
|
||||||
case VK_MULTIPLY:
|
case VK_MULTIPLY:
|
||||||
*ksymp = GDK_KP_Multiply; break;
|
*ksymp = GDK_KP_Multiply; break;
|
||||||
case VK_ADD:
|
case VK_ADD:
|
||||||
|
Loading…
Reference in New Issue
Block a user