]> code.delx.au - gnu-emacs/commitdiff
* Activate.c (XMenuActivate): Return XM_NO_SELECT if Escape or C-g
authorJan Djärv <jan.h.d@swipnet.se>
Mon, 27 Dec 2004 15:23:22 +0000 (15:23 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Mon, 27 Dec 2004 15:23:22 +0000 (15:23 +0000)
was pressed.

oldXMenu/Activate.c
oldXMenu/ChangeLog

index 363b225a3559fce6c2a7c3945626c03dffdabc08..2f81299cbb66bc31d137bf7fb416a772c2acb2d3 100644 (file)
@@ -81,6 +81,7 @@
 
 #include <config.h>
 #include "XMenuInt.h"
+#include <X11/keysym.h>
 
 /* For debug, set this to 0 to not grab the keyboard on menu popup */
 int x_menu_grab_keyboard = 1;
@@ -131,6 +132,7 @@ XMenuActivate(display, menu, p_num, s_num, x_pos, y_pos, event_mask, data,
     Window root, child;
     int root_x, root_y, win_x, win_y;
     unsigned int mask;
+    KeySym keysym;
 
     /*
      * Define and allocate a foreign event queue to hold events
@@ -458,6 +460,18 @@ XMenuActivate(display, menu, p_num, s_num, x_pos, y_pos, event_mask, data,
                }
                selection = True;
                break;
+        case KeyPress:
+        case KeyRelease:
+                keysym = XLookupKeysym (&event.xkey, 0);
+
+                /* Pop down on C-g and Escape.  */
+                if ((keysym == XK_g && (event.xkey.state & ControlMask) != 0)
+                    || keysym == XK_Escape) /* Any escape, ignore modifiers.  */
+                  {
+                    ret_val = XM_NO_SELECT;
+                    selection = True;
+                  }
+               break;
            default:
                /*
                 * If AEQ mode is enabled then queue the event.
index ab86c364736876d5a702883d52b2e08cd17ccbb1..31a786cc23abbb35f9298f20df177fa4ebda38b5 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
+
+       * Activate.c (XMenuActivate): Return XM_NO_SELECT if Escape or C-g
+       was pressed.
+
 2004-11-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * XMenu.h (XMenuActivateSetWaitFunction): New function.