]> git.eshelyaron.com Git - emacs.git/commitdiff
(xlwmenu_window_p): New function.
authorGerd Moellmann <gerd@gnu.org>
Mon, 30 Apr 2001 14:34:54 +0000 (14:34 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 30 Apr 2001 14:34:54 +0000 (14:34 +0000)
lwlib/xlwmenu.c

index e29060b3784bfc7be810d976c38259340ced057b..8c2d5c8b5f1d9e47490d6fd387acb2f5c5241776 100644 (file)
@@ -1195,6 +1195,23 @@ make_windows_if_needed (mw, n)
   }
 }
 
+/* Value is non-zero if WINDOW is part of menu bar widget W.  */
+
+int
+xlwmenu_window_p (w, window)
+     Widget w;
+     Window window;
+{
+  XlwMenuWidget mw = (XlwMenuWidget) w;
+  int i;
+  
+  for (i = 0; i < mw->menu.windows_length; ++i)
+    if (window == mw->menu.windows[i].window)
+      break;
+
+  return i < mw->menu.windows_length;
+}
+
 /* Make the window fit in the screen */
 static void
 fit_to_screen (mw, ws, previous_ws, horizontal_p)