annotate lwlib/xlwmenu.c @ 109152:e27859da5624

src/w32*.c: Convert function definitions to standard C.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 06 Jul 2010 16:22:29 +0200
parents fa173b9bd9ce
children 750db9f3e6d8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1 /* Implements a lightweight menubar widget.
76179
f9c64ed5b05d Adjust FSF copyright years based on changelogs.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
2 Copyright (C) 1992 Lucid, Inc.
f9c64ed5b05d Adjust FSF copyright years based on changelogs.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
3 Copyright (C) 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
106815
1d1d5d9bd884 Add 2010 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 105669
diff changeset
4 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 This file is part of the Lucid Widget Library.
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
8 The Lucid Widget Library is free software; you can redistribute it and/or
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 modify it under the terms of the GNU General Public License as published by
76221
3cceb2f916b0 Revert previous change, since not sure it was correct.
Glenn Morris <rgm@gnu.org>
parents: 76217
diff changeset
10 the Free Software Foundation; either version 2, or (at your option)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 any later version.
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 The Lucid Widget Library is distributed in the hope that it will be useful,
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 GNU General Public License for more details.
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
15742
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 14728
diff changeset
19 along with GNU Emacs; see the file COPYING. If not, write to the
64083
23a17af379b1 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 61209
diff changeset
20 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23a17af379b1 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 61209
diff changeset
21 Boston, MA 02110-1301, USA. */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 /* Created by devin@lucid.com */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
26087
e0d966fb548f Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents: 25526
diff changeset
25 #ifdef HAVE_CONFIG_H
e0d966fb548f Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents: 25526
diff changeset
26 #include <config.h>
e0d966fb548f Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents: 25526
diff changeset
27 #endif
e0d966fb548f Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents: 25526
diff changeset
28
105669
68dd71358159 * alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100957
diff changeset
29 #include <setjmp.h>
51143
d4196d00eba5 Include lisp.h, not ../src/lisp.h.
Dave Love <fx@gnu.org>
parents: 49600
diff changeset
30 #include "lisp.h"
41767
7fb1caba0f51 Include ../src/lisp.h.
Richard M. Stallman <rms@gnu.org>
parents: 37524
diff changeset
31
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 #include <stdio.h>
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
33 #include <ctype.h>
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 #include <sys/types.h>
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
36 #if (defined __sun) && !(defined SUNOS41)
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
37 #define SUNOS41
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 #include <X11/Xos.h>
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
39 #undef SUNOS41
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
40 #else
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
41 #include <X11/Xos.h>
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
42 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 #include <X11/IntrinsicP.h>
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
44 #include <X11/ObjectP.h>
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 #include <X11/StringDefs.h>
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 #include <X11/cursorfont.h>
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
47 #include <X11/Shell.h>
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 #include "xlwmenuP.h"
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
49
29469
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
50 #ifdef emacs
30324
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
51
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
52 /* Defined in xfns.c. When config.h defines `static' as empty, we get
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
53 redefinition errors when gray_bitmap is included more than once, so
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
54 we're referring to the one include in xfns.c here. */
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
55
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
56 extern int gray_bitmap_width;
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
57 extern int gray_bitmap_height;
34557
b9586137049e (gray_bitmap_bits): Remove `unsigned' from
Dave Love <fx@gnu.org>
parents: 34436
diff changeset
58 extern char *gray_bitmap_bits;
30324
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
59
70850
b90abedf3b79 * xlwmenu.c: Include xterm.h if emacs instead of declaring functions
Jan Djärv <jan.h.d@swipnet.se>
parents: 68640
diff changeset
60 #include "xterm.h"
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
61
30324
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
62 #else /* not emacs */
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
63
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
64 #include <X11/bitmaps/gray>
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
65 #define gray_bitmap_width gray_width
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
66 #define gray_bitmap_height gray_height
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
67 #define gray_bitmap_bits gray_bits
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
68
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
69 #endif /* not emacs */
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
70
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
71 static int pointer_grabbed;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
72 static XEvent menu_post_event;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
74 static XFontStruct *xlwmenu_default_font;
9746
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
75
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
76 static char
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
77 xlwMenuTranslations [] =
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
78 "<BtnDown>: start()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
79 <Motion>: drag()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
80 <BtnUp>: select()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
81 <Key>Shift_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
82 <Key>Shift_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
83 <Key>Meta_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
84 <Key>Meta_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
85 <Key>Control_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
86 <Key>Control_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
87 <Key>Hyper_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
88 <Key>Hyper_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
89 <Key>Super_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
90 <Key>Super_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
91 <Key>Alt_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
92 <Key>Alt_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
93 <Key>Caps_Lock: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
94 <Key>Shift_Lock: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
95 <KeyUp>Shift_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
96 <KeyUp>Shift_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
97 <KeyUp>Meta_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
98 <KeyUp>Meta_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
99 <KeyUp>Control_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
100 <KeyUp>Control_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
101 <KeyUp>Hyper_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
102 <KeyUp>Hyper_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
103 <KeyUp>Super_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
104 <KeyUp>Super_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
105 <KeyUp>Alt_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
106 <KeyUp>Alt_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
107 <KeyUp>Caps_Lock: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
108 <KeyUp>Shift_Lock:nothing()\n\
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
109 <Key>Return: select()\n\
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
110 <Key>Down: down()\n\
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
111 <Key>Up: up()\n\
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
112 <Key>Left: left()\n\
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
113 <Key>Right: right()\n\
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
114 <Key>: key()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
115 <KeyUp>: key()\n\
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 ";
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
118 /* FIXME: Space should toggle toggleable menu item but not remove the menu
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
119 so you can toggle the next one without entering the menu again. */
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
120
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
121 /* FIXME: Should ESC close one level of menu structure or the complete menu? */
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
122
44966
4b2f9e2a9a29 Change default values.
Pavel Janík <Pavel@Janik.cz>
parents: 44931
diff changeset
123 /* FIXME: F10 should enter the menu, the first one in the menu-bar. */
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
124
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 #define offset(field) XtOffset(XlwMenuWidget, field)
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
126 static XtResource
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 xlwMenuResources[] =
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
128 {
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
129 #ifdef HAVE_X_I18N
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
130 {XtNfontSet, XtCFontSet, XtRFontSet, sizeof(XFontSet),
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
131 offset(menu.fontSet), XtRFontSet, NULL},
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
132 #endif
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
133 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
134 #define DEFAULT_FACENAME "Sans-10"
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
135 {XtNfaceName, XtCFaceName, XtRString, sizeof(String),
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
136 offset(menu.faceName), XtRString, DEFAULT_FACENAME},
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
137 {XtNdefaultFace, XtCDefaultFace, XtRInt, sizeof(int),
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
138 offset(menu.default_face), XtRImmediate, (XtPointer)1},
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
139 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 {XtNfont, XtCFont, XtRFontStruct, sizeof(XFontStruct *),
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
141 offset(menu.font), XtRString, "XtDefaultFont"},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 {XtNforeground, XtCForeground, XtRPixel, sizeof(Pixel),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143 offset(menu.foreground), XtRString, "XtDefaultForeground"},
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
144 {XtNdisabledForeground, XtCDisabledForeground, XtRPixel, sizeof(Pixel),
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
145 offset(menu.disabled_foreground), XtRString, (XtPointer)NULL},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 {XtNbuttonForeground, XtCButtonForeground, XtRPixel, sizeof(Pixel),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 offset(menu.button_foreground), XtRString, "XtDefaultForeground"},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 {XtNmargin, XtCMargin, XtRDimension, sizeof(Dimension),
44966
4b2f9e2a9a29 Change default values.
Pavel Janík <Pavel@Janik.cz>
parents: 44931
diff changeset
149 offset(menu.margin), XtRImmediate, (XtPointer)1},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 {XtNhorizontalSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 offset(menu.horizontal_spacing), XtRImmediate, (XtPointer)3},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 {XtNverticalSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
44966
4b2f9e2a9a29 Change default values.
Pavel Janík <Pavel@Janik.cz>
parents: 44931
diff changeset
153 offset(menu.vertical_spacing), XtRImmediate, (XtPointer)2},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 {XtNarrowSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 offset(menu.arrow_spacing), XtRImmediate, (XtPointer)10},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
157 {XmNshadowThickness, XmCShadowThickness, XtRDimension,
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 sizeof (Dimension), offset (menu.shadow_thickness),
44966
4b2f9e2a9a29 Change default values.
Pavel Janík <Pavel@Janik.cz>
parents: 44931
diff changeset
159 XtRImmediate, (XtPointer)1},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160 {XmNtopShadowColor, XmCTopShadowColor, XtRPixel, sizeof (Pixel),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
161 offset (menu.top_shadow_color), XtRImmediate, (XtPointer)-1},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162 {XmNbottomShadowColor, XmCBottomShadowColor, XtRPixel, sizeof (Pixel),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 offset (menu.bottom_shadow_color), XtRImmediate, (XtPointer)-1},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164 {XmNtopShadowPixmap, XmCTopShadowPixmap, XtRPixmap, sizeof (Pixmap),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165 offset (menu.top_shadow_pixmap), XtRImmediate, (XtPointer)None},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166 {XmNbottomShadowPixmap, XmCBottomShadowPixmap, XtRPixmap, sizeof (Pixmap),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
167 offset (menu.bottom_shadow_pixmap), XtRImmediate, (XtPointer)None},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
169 {XtNopen, XtCCallback, XtRCallback, sizeof(XtPointer),
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170 offset(menu.open), XtRCallback, (XtPointer)NULL},
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
171 {XtNselect, XtCCallback, XtRCallback, sizeof(XtPointer),
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 offset(menu.select), XtRCallback, (XtPointer)NULL},
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
173 {XtNhighlightCallback, XtCCallback, XtRCallback, sizeof(XtPointer),
27338
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
174 offset(menu.highlight), XtRCallback, (XtPointer)NULL},
75018
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
175 {XtNenterCallback, XtCCallback, XtRCallback, sizeof(XtPointer),
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
176 offset(menu.enter), XtRCallback, (XtPointer)NULL},
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
177 {XtNleaveCallback, XtCCallback, XtRCallback, sizeof(XtPointer),
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
178 offset(menu.leave), XtRCallback, (XtPointer)NULL},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179 {XtNmenu, XtCMenu, XtRPointer, sizeof(XtPointer),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180 offset(menu.contents), XtRImmediate, (XtPointer)NULL},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181 {XtNcursor, XtCCursor, XtRCursor, sizeof(Cursor),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
182 offset(menu.cursor_shape), XtRString, (XtPointer)"right_ptr"},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 {XtNhorizontal, XtCHorizontal, XtRInt, sizeof(int),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184 offset(menu.horizontal), XtRImmediate, (XtPointer)True},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185 };
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 #undef offset
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187
109141
fa173b9bd9ce Fix some bad prototypes and formatting after conversion from K&R declaration.
Jan D <jan.h.d@swipnet.se>
parents: 109123
diff changeset
188 static Boolean XlwMenuSetValues(Widget current, Widget request, Widget new,
fa173b9bd9ce Fix some bad prototypes and formatting after conversion from K&R declaration.
Jan D <jan.h.d@swipnet.se>
parents: 109123
diff changeset
189 ArgList args, Cardinal *num_args);
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
190 static void XlwMenuRealize(Widget w, Mask *valueMask, XSetWindowAttributes *attributes);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
191 static void XlwMenuResize(Widget w);
109141
fa173b9bd9ce Fix some bad prototypes and formatting after conversion from K&R declaration.
Jan D <jan.h.d@swipnet.se>
parents: 109123
diff changeset
192 static void XlwMenuInitialize(Widget request, Widget mw, ArgList args, Cardinal *num_args);
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
193 static void XlwMenuRedisplay(Widget w, XEvent *ev, Region region);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
194 static void XlwMenuDestroy(Widget w);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
195 static void XlwMenuClassInitialize(void);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
196 static void Start(Widget w, XEvent *ev, String *params, Cardinal *num_params);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
197 static void Drag(Widget w, XEvent *ev, String *params, Cardinal *num_params);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
198 static void Down(Widget w, XEvent *ev, String *params, Cardinal *num_params);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
199 static void Up(Widget w, XEvent *ev, String *params, Cardinal *num_params);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
200 static void Left(Widget w, XEvent *ev, String *params, Cardinal *num_params);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
201 static void Right(Widget w, XEvent *ev, String *params, Cardinal *num_params);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
202 static void Select(Widget w, XEvent *ev, String *params, Cardinal *num_params);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
203 static void Key(Widget w, XEvent *ev, String *params, Cardinal *num_params);
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
204 static void Nothing(Widget w, XEvent *ev, String *params, Cardinal *num_params);
109100
2bc9a0c04c87 Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents: 108373
diff changeset
205 static int separator_height (enum menu_separator);
2bc9a0c04c87 Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents: 108373
diff changeset
206 static void pop_up_menu (XlwMenuWidget, XButtonPressedEvent *);
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
207
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
209 static XtActionsRec
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
210 xlwMenuActionsList [] =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
211 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
212 {"start", Start},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
213 {"drag", Drag},
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
214 {"down", Down},
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
215 {"up", Up},
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
216 {"left", Left},
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
217 {"right", Right},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 {"select", Select},
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
219 {"key", Key},
59100
768cf68dcd0a * xlwmenu.c (xlwMenuActionsList): Install MenuGadgetEscape as an
Jan Djärv <jan.h.d@swipnet.se>
parents: 57842
diff changeset
220 {"MenuGadgetEscape", Key}, /* Compatibility with Lesstif/Motif. */
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
221 {"nothing", Nothing},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
222 };
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
223
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
224 #define SuperClass ((CoreWidgetClass)&coreClassRec)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
225
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226 XlwMenuClassRec xlwMenuClassRec =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 { /* CoreClass fields initialization */
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
229 (WidgetClass) SuperClass, /* superclass */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230 "XlwMenu", /* class_name */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 sizeof(XlwMenuRec), /* size */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232 XlwMenuClassInitialize, /* class_initialize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 NULL, /* class_part_initialize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
234 FALSE, /* class_inited */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
235 XlwMenuInitialize, /* initialize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
236 NULL, /* initialize_hook */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
237 XlwMenuRealize, /* realize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 xlwMenuActionsList, /* actions */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239 XtNumber(xlwMenuActionsList), /* num_actions */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240 xlwMenuResources, /* resources */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
241 XtNumber(xlwMenuResources), /* resource_count */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242 NULLQUARK, /* xrm_class */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 TRUE, /* compress_motion */
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
244 XtExposeCompressMaximal, /* compress_exposure */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 TRUE, /* compress_enterleave */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 FALSE, /* visible_interest */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 XlwMenuDestroy, /* destroy */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248 XlwMenuResize, /* resize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 XlwMenuRedisplay, /* expose */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 XlwMenuSetValues, /* set_values */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251 NULL, /* set_values_hook */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
252 XtInheritSetValuesAlmost, /* set_values_almost */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
253 NULL, /* get_values_hook */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254 NULL, /* accept_focus */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
255 XtVersion, /* version */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256 NULL, /* callback_private */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 xlwMenuTranslations, /* tm_table */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 XtInheritQueryGeometry, /* query_geometry */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
259 XtInheritDisplayAccelerator, /* display_accelerator */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
260 NULL /* extension */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 }, /* XlwMenuClass fields initialization */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263 0 /* dummy */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 },
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 };
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
266
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
267 WidgetClass xlwMenuWidgetClass = (WidgetClass) &xlwMenuClassRec;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
269 int submenu_destroyed;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
270
44931
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
271 /* For debug, if installation-directory is non-nil this is not an installed
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
272 Emacs. In that case we do not grab the keyboard to make it easier to
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
273 debug. */
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
274 #define GRAB_KEYBOARD (EQ (Vinstallation_directory, Qnil))
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
275
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
276 static int next_release_must_exit;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
277
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
278 /* Utilities */
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
279
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
280 /* Ungrab pointer and keyboard */
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
281 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
282 ungrab_all (Widget w, Time ungrabtime)
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
283 {
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
284 XtUngrabPointer (w, ungrabtime);
44931
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
285 if (GRAB_KEYBOARD) XtUngrabKeyboard (w, ungrabtime);
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
286 }
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
287
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
288 /* Like abort, but remove grabs from widget W before. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
289
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
290 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
291 abort_gracefully (Widget w)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
292 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
293 if (XtIsShell (XtParent (w)))
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
294 XtRemoveGrab (w);
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
295 ungrab_all (w, CurrentTime);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
296 abort ();
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
297 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
298
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
299 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
300 push_new_stack (XlwMenuWidget mw, widget_value *val)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
301 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302 if (!mw->menu.new_stack)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
304 mw->menu.new_stack_length = 10;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 mw->menu.new_stack =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306 (widget_value**)XtCalloc (mw->menu.new_stack_length,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
307 sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
308 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309 else if (mw->menu.new_depth == mw->menu.new_stack_length)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 mw->menu.new_stack_length *= 2;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
312 mw->menu.new_stack =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
313 (widget_value**)XtRealloc ((char*)mw->menu.new_stack,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314 mw->menu.new_stack_length * sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 mw->menu.new_stack [mw->menu.new_depth++] = val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
319 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
320 pop_new_stack_if_no_contents (XlwMenuWidget mw)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321 {
48929
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
322 if (mw->menu.new_depth > 1)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
323 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324 if (!mw->menu.new_stack [mw->menu.new_depth - 1]->contents)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325 mw->menu.new_depth -= 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
328
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
330 make_old_stack_space (XlwMenuWidget mw, int n)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 if (!mw->menu.old_stack)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334 mw->menu.old_stack_length = 10;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 mw->menu.old_stack =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 (widget_value**)XtCalloc (mw->menu.old_stack_length,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337 sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 else if (mw->menu.old_stack_length < n)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 mw->menu.old_stack_length *= 2;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 mw->menu.old_stack =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 (widget_value**)XtRealloc ((char*)mw->menu.old_stack,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344 mw->menu.old_stack_length * sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 /* Size code */
70850
b90abedf3b79 * xlwmenu.c: Include xterm.h if emacs instead of declaring functions
Jan Djärv <jan.h.d@swipnet.se>
parents: 68640
diff changeset
349 static int
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
350 string_width (XlwMenuWidget mw, char *s)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
351 {
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
352 XCharStruct xcs;
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
353 int drop;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
354 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
355 if (mw->menu.xft_font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
356 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
357 XGlyphInfo gi;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
358 XftTextExtentsUtf8 (XtDisplay (mw), mw->menu.xft_font,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
359 (FcChar8 *) s,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
360 strlen (s), &gi);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
361 return gi.width;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
362 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
363 #endif
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
364 #ifdef HAVE_X_I18N
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
365 if (mw->menu.fontSet)
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
366 {
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
367 XRectangle ink, logical;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
368 XmbTextExtents (mw->menu.fontSet, s, strlen (s), &ink, &logical);
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
369 return logical.width;
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
370 }
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
371 #endif
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
372
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
373 XTextExtents (mw->menu.font, s, strlen (s), &drop, &drop, &drop, &xcs);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
374 return xcs.width;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
375
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
376 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
377
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
378 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
379 #define MENU_FONT_HEIGHT(mw) \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
380 ((mw)->menu.xft_font != NULL \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
381 ? (mw)->menu.xft_font->height \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
382 : ((mw)->menu.fontSet != NULL \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
383 ? (mw)->menu.font_extents->max_logical_extent.height \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
384 : (mw)->menu.font->ascent + (mw)->menu.font->descent))
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
385 #define MENU_FONT_ASCENT(mw) \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
386 ((mw)->menu.xft_font != NULL \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
387 ? (mw)->menu.xft_font->ascent \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
388 : ((mw)->menu.fontSet != NULL \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
389 ? - (mw)->menu.font_extents->max_logical_extent.y \
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
390 : (mw)->menu.font->ascent))
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
391 #else
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
392 #ifdef HAVE_X_I18N
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
393 #define MENU_FONT_HEIGHT(mw) \
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
394 ((mw)->menu.fontSet != NULL \
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
395 ? (mw)->menu.font_extents->max_logical_extent.height \
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
396 : (mw)->menu.font->ascent + (mw)->menu.font->descent)
60700
2610d09357c8 (MENU_FONT_ASCENT) [HAVE_X_I18N]: Try to be more correct.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 60698
diff changeset
397 #define MENU_FONT_ASCENT(mw) \
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
398 ((mw)->menu.fontSet != NULL \
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
399 ? - (mw)->menu.font_extents->max_logical_extent.y \
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
400 : (mw)->menu.font->ascent)
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
401 #else
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
402 #define MENU_FONT_HEIGHT(mw) \
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
403 ((mw)->menu.font->ascent + (mw)->menu.font->descent)
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
404 #define MENU_FONT_ASCENT(mw) ((mw)->menu.font->ascent)
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
405 #endif
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
406 #endif
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
407
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
408 static int
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
409 arrow_width (XlwMenuWidget mw)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410 {
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
411 return (MENU_FONT_ASCENT (mw) * 3/4) | 1;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
412 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
413
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
414 /* Return the width of toggle buttons of widget MW. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
415
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
416 static int
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
417 toggle_button_width (XlwMenuWidget mw)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
418 {
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
419 return (MENU_FONT_HEIGHT (mw) * 2 / 3) | 1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
420 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
421
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
422
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
423 /* Return the width of radio buttons of widget MW. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
424
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
425 static int
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
426 radio_button_width (XlwMenuWidget mw)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
427 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
428 return toggle_button_width (mw) * 1.41;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
429 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
430
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
431
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
432 static XtResource
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
433 nameResource[] =
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
434 {
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
435 {"labelString", "LabelString", XtRString, sizeof(String),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
436 0, XtRImmediate, 0},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
437 };
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
438
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
439 static char*
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
440 resource_widget_value (XlwMenuWidget mw, widget_value *val)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
441 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
442 if (!val->toolkit_data)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
443 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
444 char* resourced_name = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
445 char* complete_name;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
446 XtGetSubresources ((Widget) mw,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
447 (XtPointer) &resourced_name,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
448 val->name, val->name,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
449 nameResource, 1, NULL, 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
450 if (!resourced_name)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451 resourced_name = val->name;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452 if (!val->value)
5654
f84dac6453db *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
453 {
f84dac6453db *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
454 complete_name = (char *) XtMalloc (strlen (resourced_name) + 1);
f84dac6453db *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
455 strcpy (complete_name, resourced_name);
f84dac6453db *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
456 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
457 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
458 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
459 int complete_length =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
460 strlen (resourced_name) + strlen (val->value) + 2;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
461 complete_name = XtMalloc (complete_length);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
462 *complete_name = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
463 strcat (complete_name, resourced_name);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
464 strcat (complete_name, " ");
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
465 strcat (complete_name, val->value);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
466 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
467
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
468 val->toolkit_data = complete_name;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
469 val->free_toolkit_data = True;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
470 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
471 return (char*)val->toolkit_data;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
472 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
473
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 /* Returns the sizes of an item */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
475 static void
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
476 size_menu_item (mw, val, horizontal_p, label_width, rest_width, button_width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
477 height)
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
478 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
479 widget_value* val;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
480 int horizontal_p;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
481 int* label_width;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
482 int* rest_width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
483 int* button_width;
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
484 int* height;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
486 enum menu_separator separator;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
487
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
488 if (lw_separator_p (val->name, &separator, 0))
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
489 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
490 *height = separator_height (separator);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
491 *label_width = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
492 *rest_width = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
493 *button_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
494 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
495 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
496 {
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
497 *height = MENU_FONT_HEIGHT (mw)
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
498 + 2 * mw->menu.vertical_spacing + 2 * mw->menu.shadow_thickness;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
499
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500 *label_width =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
501 string_width (mw, resource_widget_value (mw, val))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
502 + mw->menu.horizontal_spacing + mw->menu.shadow_thickness;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
503
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
504 *rest_width = mw->menu.horizontal_spacing + mw->menu.shadow_thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
505 if (!horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
507 if (val->contents)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
508 /* Add width of the arrow displayed for submenus. */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 *rest_width += arrow_width (mw) + mw->menu.arrow_spacing;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 else if (val->key)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
511 /* Add width of key equivalent string. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
512 *rest_width += (string_width (mw, val->key)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
513 + mw->menu.arrow_spacing);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
514
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
515 if (val->button_type == BUTTON_TYPE_TOGGLE)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
516 *button_width = (toggle_button_width (mw)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
517 + mw->menu.horizontal_spacing);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
518 else if (val->button_type == BUTTON_TYPE_RADIO)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
519 *button_width = (radio_button_width (mw)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
520 + mw->menu.horizontal_spacing);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
523 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
524
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
525 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
526 size_menu (XlwMenuWidget mw, int level)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
527 {
11461
65c12e57f119 (size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents: 9746
diff changeset
528 unsigned int label_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
529 int rest_width = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
530 int button_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
531 int max_rest_width = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
532 int max_button_width = 0;
11461
65c12e57f119 (size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents: 9746
diff changeset
533 unsigned int height = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 int horizontal_p = mw->menu.horizontal && (level == 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
535 widget_value* val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536 window_state* ws;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
537
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
538 if (level >= mw->menu.old_depth)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
539 abort_gracefully ((Widget) mw);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
540
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
541 ws = &mw->menu.windows [level];
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
542 ws->width = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
543 ws->height = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
544 ws->label_width = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
545 ws->button_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
546
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
547 for (val = mw->menu.old_stack [level]->contents; val; val = val->next)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
548 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
549 size_menu_item (mw, val, horizontal_p, &label_width, &rest_width,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
550 &button_width, &height);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
553 ws->width += label_width + rest_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
554 if (height > ws->height)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
555 ws->height = height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
556 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
557 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
558 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
559 if (label_width > ws->label_width)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
560 ws->label_width = label_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
561 if (rest_width > max_rest_width)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
562 max_rest_width = rest_width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
563 if (button_width > max_button_width)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
564 max_button_width = button_width;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
565 ws->height += height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
566 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
568
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569 if (horizontal_p)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
570 ws->label_width = ws->button_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571 else
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
572 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
573 ws->width = ws->label_width + max_rest_width + max_button_width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
574 ws->button_width = max_button_width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
575 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
576
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
577 ws->width += 2 * mw->menu.shadow_thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
578 ws->height += 2 * mw->menu.shadow_thickness;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
579 ws->max_rest_width = max_rest_width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
580
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
581 if (horizontal_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
582 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
583 ws->width += 2 * mw->menu.margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
584 ws->height += 2 * mw->menu.margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
585 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
587
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
588
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589 /* Display code */
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
590
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
591 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
592 draw_arrow (XlwMenuWidget mw, Window window, GC gc, int x, int y, int width, int down_p)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
593 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
594 Display *dpy = XtDisplay (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
595 GC top_gc = mw->menu.shadow_top_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
596 GC bottom_gc = mw->menu.shadow_bottom_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
597 int thickness = mw->menu.shadow_thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
598 int height = width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
599 XPoint pt[10];
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
600 /* alpha = atan (0.5)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
601 factor = (1 + sin (alpha)) / cos (alpha) */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
602 double factor = 1.62;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
603 int thickness2 = thickness * factor;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
604
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
605 y += (MENU_FONT_HEIGHT (mw) - height) / 2;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
606
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
607 if (down_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
608 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
609 GC temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
610 temp = top_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
611 top_gc = bottom_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
612 bottom_gc = temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
613 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
614
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
615 pt[0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
616 pt[0].y = y + height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
617 pt[1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
618 pt[1].y = y + height - thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
619 pt[2].x = x + thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
620 pt[2].y = y + thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
621 pt[3].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
622 pt[3].y = y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
623 XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
624
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
625 pt[0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
626 pt[0].y = y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
627 pt[1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
628 pt[1].y = y + thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
629 pt[2].x = x + width - thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
630 pt[2].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
631 pt[3].x = x + width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
632 pt[3].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
633 XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
634
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
635 pt[0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
636 pt[0].y = y + height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
637 pt[1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
638 pt[1].y = y + height - thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
639 pt[2].x = x + width - thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
640 pt[2].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
641 pt[3].x = x + width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
642 pt[3].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
643 XFillPolygon (dpy, window, bottom_gc, pt, 4, Convex, CoordModeOrigin);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
646
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
647
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
649 draw_shadow_rectangle (XlwMenuWidget mw, Window window, int x, int y, int width, int height, int erase_p, int down_p)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
650 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
651 Display *dpy = XtDisplay (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652 GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
653 GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
654 int thickness = mw->menu.shadow_thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
655 XPoint points [4];
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
656
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
657 if (!erase_p && down_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
658 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
659 GC temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
660 temp = top_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
661 top_gc = bottom_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
662 bottom_gc = temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
663 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
664
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
665 points [0].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 points [0].y = y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667 points [1].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
668 points [1].y = y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
669 points [2].x = x + width - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
670 points [2].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
671 points [3].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
672 points [3].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
673 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 points [0].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675 points [0].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
676 points [1].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
677 points [1].y = y + height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
678 points [2].x = x + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
679 points [2].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
680 points [3].x = x + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
681 points [3].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
682 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
683 points [0].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
684 points [0].y = y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
685 points [1].x = x + width - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
686 points [1].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
687 points [2].x = x + width - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
688 points [2].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
689 points [3].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
690 points [3].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
691 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
692 points [0].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
693 points [0].y = y + height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
694 points [1].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
695 points [1].y = y + height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 points [2].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
697 points [2].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 points [3].x = x + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699 points [3].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
700 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
704 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
705 draw_shadow_rhombus (XlwMenuWidget mw, Window window, int x, int y, int width, int height, int erase_p, int down_p)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
706 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
707 Display *dpy = XtDisplay (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
708 GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
709 GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
710 int thickness = mw->menu.shadow_thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
711 XPoint points [4];
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
712
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
713 if (!erase_p && down_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
714 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
715 GC temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
716 temp = top_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
717 top_gc = bottom_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
718 bottom_gc = temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
719 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
720
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
721 points [0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
722 points [0].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
723 points [1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
724 points [1].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
725 points [2].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
726 points [2].y = y + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
727 points [3].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
728 points [3].y = y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
729 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
730 points [0].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
731 points [0].y = y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
732 points [1].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
733 points [1].y = y + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
734 points [2].x = x + width - thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
735 points [2].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
736 points [3].x = x + width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
737 points [3].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
738 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
739 points [0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
740 points [0].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
741 points [1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
742 points [1].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
743 points [2].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
744 points [2].y = y + height - thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
745 points [3].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
746 points [3].y = y + height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
747 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
748 points [0].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
749 points [0].y = y + height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
750 points [1].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
751 points [1].y = y + height - thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
752 points [2].x = x + width - thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
753 points [2].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
754 points [3].x = x + width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
755 points [3].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
756 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
757 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
758
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
759
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
760 /* Draw a toggle button on widget MW, X window WINDOW. X/Y is the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
761 top-left corner of the menu item. SELECTED_P non-zero means the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
762 toggle button is selected. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
763
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
764 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
765 draw_toggle (XlwMenuWidget mw, Window window, int x, int y, int selected_p)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
766 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
767 int width, height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
768
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
769 width = toggle_button_width (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
770 height = width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
771 x += mw->menu.horizontal_spacing;
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
772 y += (MENU_FONT_ASCENT (mw) - height) / 2;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
773 draw_shadow_rectangle (mw, window, x, y, width, height, False, selected_p);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
774 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
775
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
776
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
777 /* Draw a radio button on widget MW, X window WINDOW. X/Y is the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
778 top-left corner of the menu item. SELECTED_P non-zero means the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
779 toggle button is selected. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
780
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
781 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
782 draw_radio (XlwMenuWidget mw, Window window, int x, int y, int selected_p)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
783 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
784 int width, height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
785
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
786 width = radio_button_width (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
787 height = width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
788 x += mw->menu.horizontal_spacing;
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
789 y += (MENU_FONT_ASCENT (mw) - height) / 2;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
790 draw_shadow_rhombus (mw, window, x, y, width, height, False, selected_p);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
791 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
792
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
793
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
794 /* Draw a menu separator on widget MW, X window WINDOW. X/Y is the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
795 top-left corner of the menu item. WIDTH is the width of the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
796 separator to draw. TYPE is the separator type. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
797
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
798 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
799 draw_separator (XlwMenuWidget mw, Window window, int x, int y, int width, enum menu_separator type)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
800 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
801 Display *dpy = XtDisplay (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
802 XGCValues xgcv;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
803
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
804 switch (type)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
805 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
806 case SEPARATOR_NO_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
807 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
808
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
809 case SEPARATOR_SINGLE_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
810 XDrawLine (dpy, window, mw->menu.foreground_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
811 x, y, x + width, y);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
812 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
813
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
814 case SEPARATOR_DOUBLE_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
815 draw_separator (mw, window, x, y, width, SEPARATOR_SINGLE_LINE);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
816 draw_separator (mw, window, x, y + 2, width, SEPARATOR_SINGLE_LINE);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
817 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
818
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
819 case SEPARATOR_SINGLE_DASHED_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
820 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
821 XChangeGC (dpy, mw->menu.foreground_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
822 XDrawLine (dpy, window, mw->menu.foreground_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
823 x, y, x + width, y);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
824 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
825 XChangeGC (dpy, mw->menu.foreground_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
826 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
827
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
828 case SEPARATOR_DOUBLE_DASHED_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
829 draw_separator (mw, window, x, y, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
830 SEPARATOR_SINGLE_DASHED_LINE);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
831 draw_separator (mw, window, x, y + 2, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
832 SEPARATOR_SINGLE_DASHED_LINE);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
833 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
834
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
835 case SEPARATOR_SHADOW_ETCHED_IN:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
836 XDrawLine (dpy, window, mw->menu.shadow_bottom_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
837 x, y, x + width, y);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
838 XDrawLine (dpy, window, mw->menu.shadow_top_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
839 x, y + 1, x + width, y + 1);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
840 break;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
841
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
842 case SEPARATOR_SHADOW_ETCHED_OUT:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
843 XDrawLine (dpy, window, mw->menu.shadow_top_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
844 x, y, x + width, y);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
845 XDrawLine (dpy, window, mw->menu.shadow_bottom_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
846 x, y + 1, x + width, y + 1);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
847 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
848
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
849 case SEPARATOR_SHADOW_ETCHED_IN_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
850 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
851 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
852 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
34436
a27cc46a67b4 (draw_separator) <SEPARATOR_SHADOW_ETCHED_IN_DASH>:
Dave Love <fx@gnu.org>
parents: 33714
diff changeset
853 draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
854 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
855 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
856 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
857 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
858
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
859 case SEPARATOR_SHADOW_ETCHED_OUT_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
860 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
861 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
862 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
34436
a27cc46a67b4 (draw_separator) <SEPARATOR_SHADOW_ETCHED_IN_DASH>:
Dave Love <fx@gnu.org>
parents: 33714
diff changeset
863 draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_OUT);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
864 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
865 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
866 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
867 break;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
868
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
869 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
870 draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
871 draw_separator (mw, window, x, y + 3, width, SEPARATOR_SHADOW_ETCHED_IN);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
872 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
873
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
874 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
875 draw_separator (mw, window, x, y, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
876 SEPARATOR_SHADOW_ETCHED_OUT);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
877 draw_separator (mw, window, x, y + 3, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
878 SEPARATOR_SHADOW_ETCHED_OUT);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
879 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
880
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
881 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
882 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
883 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
884 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
885 draw_separator (mw, window, x, y, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
886 SEPARATOR_SHADOW_DOUBLE_ETCHED_IN);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
887 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
888 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
889 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
890 break;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
891
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
892 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
893 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
894 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
895 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
896 draw_separator (mw, window, x, y, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
897 SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
898 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
899 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
900 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
901 break;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
902
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
903 default:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
904 abort ();
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
905 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
906 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
907
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
908
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
909 /* Return the pixel height of menu separator SEPARATOR. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
910
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
911 static int
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
912 separator_height (enum menu_separator separator)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
913 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
914 switch (separator)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
915 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
916 case SEPARATOR_NO_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
917 return 2;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
918
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
919 case SEPARATOR_SINGLE_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
920 case SEPARATOR_SINGLE_DASHED_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
921 return 1;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
922
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
923 case SEPARATOR_DOUBLE_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
924 case SEPARATOR_DOUBLE_DASHED_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
925 return 3;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
926
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
927 case SEPARATOR_SHADOW_ETCHED_IN:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
928 case SEPARATOR_SHADOW_ETCHED_OUT:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
929 case SEPARATOR_SHADOW_ETCHED_IN_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
930 case SEPARATOR_SHADOW_ETCHED_OUT_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
931 return 2;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
932
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
933 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
934 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
935 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
936 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
937 return 5;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
938
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
939 default:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
940 abort ();
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
941 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
942 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
943
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
944
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
945 /* Display the menu item and increment where.x and where.y to show how large
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
946 the menu item was. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
947
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
948 static void
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
949 display_menu_item (mw, val, ws, where, highlighted_p, horizontal_p,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
950 just_compute_p)
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
951 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
952 widget_value* val;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
953 window_state* ws;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
954 XPoint* where;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
955 Boolean highlighted_p;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
956 Boolean horizontal_p;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
957 Boolean just_compute_p;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
958 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
959 GC deco_gc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
960 GC text_gc;
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
961 int font_height = MENU_FONT_HEIGHT (mw);
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
962 int font_ascent = MENU_FONT_ASCENT (mw);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
963 int shadow = mw->menu.shadow_thickness;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
964 int margin = mw->menu.margin;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
965 int h_spacing = mw->menu.horizontal_spacing;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
966 int v_spacing = mw->menu.vertical_spacing;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
967 int label_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
968 int rest_width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
969 int button_width;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
970 int height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
971 int width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
972 enum menu_separator separator;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
973 int separator_p = lw_separator_p (val->name, &separator, 0);
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
974 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
975 XftColor *xftfg;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
976 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
977
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
978 /* compute the sizes of the item */
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
979 size_menu_item (mw, val, horizontal_p, &label_width, &rest_width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
980 &button_width, &height);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
981
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
983 width = label_width + rest_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
984 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
985 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
986 label_width = ws->label_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
987 width = ws->width - 2 * shadow;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
988 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
989
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
990 /* Only highlight an enabled item that has a callback. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
991 if (highlighted_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
992 if (!val->enabled || !(val->call_data || val->contents))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
993 highlighted_p = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
994
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
995 /* do the drawing. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
996 if (!just_compute_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
997 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
998 /* Add the shadow border of the containing menu */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
999 int x = where->x + shadow;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1000 int y = where->y + shadow;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1001
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1002 if (horizontal_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1003 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1004 x += margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1005 y += margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1006 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1007
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1008 /* pick the foreground and background GC. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1009 if (val->enabled)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1010 text_gc = mw->menu.foreground_gc;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1011 else
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1012 text_gc = mw->menu.disabled_gc;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1013 deco_gc = mw->menu.foreground_gc;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1014 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1015 xftfg = val->enabled ? &mw->menu.xft_fg : &mw->menu.xft_disabled_fg;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1016 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1017
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1018 if (separator_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1019 {
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1020 draw_separator (mw, ws->pixmap, x, y, width, separator);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1021 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1022 else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1023 {
9227
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1024 int x_offset = x + h_spacing + shadow;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1025 char* display_string = resource_widget_value (mw, val);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1026 draw_shadow_rectangle (mw, ws->pixmap, x, y, width, height, True,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1027 False);
9227
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1028
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1029 /* Deal with centering a menu title. */
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1030 if (!horizontal_p && !val->contents && !val->call_data)
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1031 {
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1032 int l = string_width (mw, display_string);
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1033
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1034 if (width > l)
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1035 x_offset = (width - l) >> 1;
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1036 }
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1037 else if (!horizontal_p && ws->button_width)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1038 x_offset += ws->button_width;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1039
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1040
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1041 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1042 if (ws->xft_draw)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1043 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1044 int draw_y = y + v_spacing + shadow;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1045 XftDrawStringUtf8 (ws->xft_draw, xftfg,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1046 mw->menu.xft_font,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1047 x_offset, draw_y + font_ascent,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1048 (unsigned char *) display_string,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1049 strlen (display_string));
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1050 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1051 else
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1052 #endif
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1053 #ifdef HAVE_X_I18N
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1054 if (mw->menu.fontSet)
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1055 XmbDrawString (XtDisplay (mw), ws->pixmap, mw->menu.fontSet,
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1056 text_gc, x_offset,
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1057 y + v_spacing + shadow + font_ascent,
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1058 display_string, strlen (display_string));
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1059 else
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1060 #endif
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1061 XDrawString (XtDisplay (mw), ws->pixmap,
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1062 text_gc, x_offset,
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1063 y + v_spacing + shadow + font_ascent,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1064 display_string, strlen (display_string));
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1065
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1066 if (!horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1067 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1068 if (val->button_type == BUTTON_TYPE_TOGGLE)
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1069 draw_toggle (mw, ws->pixmap, x, y + v_spacing + shadow,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1070 val->selected);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1071 else if (val->button_type == BUTTON_TYPE_RADIO)
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1072 draw_radio (mw, ws->pixmap, x, y + v_spacing + shadow,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1073 val->selected);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1074
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1075 if (val->contents)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1076 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1077 int a_w = arrow_width (mw);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1078 draw_arrow (mw, ws->pixmap, deco_gc,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1079 x + width - a_w
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1080 - mw->menu.horizontal_spacing
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1081 - mw->menu.shadow_thickness,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1082 y + v_spacing + shadow, a_w,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1083 highlighted_p);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1084 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1085 else if (val->key)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1086 {
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1087 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1088 if (ws->xft_draw)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1089 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1090 int draw_x = ws->width - ws->max_rest_width
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1091 + mw->menu.arrow_spacing;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1092 int draw_y = y + v_spacing + shadow + font_ascent;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1093 XftDrawStringUtf8 (ws->xft_draw, xftfg,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1094 mw->menu.xft_font,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1095 draw_x, draw_y,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1096 (unsigned char *) val->key,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1097 strlen (val->key));
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1098 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1099 else
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1100 #endif
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1101 #ifdef HAVE_X_I18N
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1102 if (mw->menu.fontSet)
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1103 XmbDrawString (XtDisplay (mw), ws->pixmap,
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1104 mw->menu.fontSet,
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1105 text_gc,
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1106 x + label_width + mw->menu.arrow_spacing,
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1107 y + v_spacing + shadow + font_ascent,
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1108 val->key, strlen (val->key));
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1109 else
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1110 #endif
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1111 XDrawString (XtDisplay (mw), ws->pixmap,
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1112 text_gc,
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1113 x + label_width + mw->menu.arrow_spacing,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1114 y + v_spacing + shadow + font_ascent,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1115 val->key, strlen (val->key));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1116 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1117 }
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1118 else
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1119 {
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1120 XDrawRectangle (XtDisplay (mw), ws->pixmap,
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1121 mw->menu.background_gc,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1122 x + shadow, y + shadow,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1123 label_width + h_spacing - 1,
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1124 font_height + 2 * v_spacing - 1);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1125 draw_shadow_rectangle (mw, ws->pixmap, x, y, width, height,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1126 True, False);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1127 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1128
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1129 if (highlighted_p)
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1130 draw_shadow_rectangle (mw, ws->pixmap, x, y, width, height, False,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1131 False);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1132 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1133 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1134
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1135 where->x += width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1136 where->y += height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1137 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1138
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1139 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1140 display_menu (XlwMenuWidget mw, int level, Boolean just_compute_p, XPoint *highlighted_pos, XPoint *hit, widget_value **hit_return)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1141 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1142 widget_value* val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1143 widget_value* following_item;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1144 window_state* ws;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1145 XPoint where;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1146 int horizontal_p = mw->menu.horizontal && (level == 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1147 int highlighted_p;
18993
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1148 int no_return = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1149 enum menu_separator separator;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1150
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1151 if (level >= mw->menu.old_depth)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1152 abort_gracefully ((Widget) mw);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1153
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1154 if (level < mw->menu.old_depth - 1)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1155 following_item = mw->menu.old_stack [level + 1];
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1156 else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1157 following_item = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1158
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1159 if (hit)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1160 *hit_return = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1161
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1162 where.x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1163 where.y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1164
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1165 ws = &mw->menu.windows [level];
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1166
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1167 if (!just_compute_p)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1168 XFillRectangle (XtDisplay (mw), ws->pixmap, mw->menu.background_gc,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1169 0, 0, ws->width, ws->height);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1170
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1171 for (val = mw->menu.old_stack [level]->contents; val; val = val->next)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1172 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1173 highlighted_p = val == following_item;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1174 if (highlighted_p && highlighted_pos)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1175 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1176 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1177 highlighted_pos->x = where.x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1178 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1179 highlighted_pos->y = where.y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1180 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1181
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1182 display_menu_item (mw, val, ws, &where, highlighted_p, horizontal_p,
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1183 just_compute_p);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1184
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1185 if (highlighted_p && highlighted_pos)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1186 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1187 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1188 highlighted_pos->y = where.y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1189 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1190 highlighted_pos->x = where.x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1191 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1192
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1193 if (hit
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1194 && !*hit_return
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1195 && (horizontal_p ? hit->x < where.x : hit->y < where.y)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1196 && !lw_separator_p (val->name, &separator, 0)
18993
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1197 && !no_return)
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1198 {
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1199 if (val->enabled)
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1200 *hit_return = val;
75018
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1201 else
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1202 no_return = 1;
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1203 if (mw->menu.inside_entry != val)
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1204 {
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1205 if (mw->menu.inside_entry)
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1206 XtCallCallbackList ((Widget)mw, mw->menu.leave,
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1207 (XtPointer) mw->menu.inside_entry);
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1208 mw->menu.inside_entry = val;
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1209 XtCallCallbackList ((Widget)mw, mw->menu.enter,
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1210 (XtPointer) mw->menu.inside_entry);
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1211 }
18993
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1212 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1213
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1214 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1215 where.y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1216 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1217 where.x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1218 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1219
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1220 if (!just_compute_p)
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1221 {
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1222 draw_shadow_rectangle (mw, ws->pixmap, 0, 0, ws->width, ws->height,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1223 False, False);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1224 XCopyArea (XtDisplay (mw), ws->pixmap, ws->window,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1225 mw->menu.foreground_gc, 0, 0, ws->width, ws->height, 0, 0);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1226 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1227 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1228
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1229 /* Motion code */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1230 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1231 set_new_state (XlwMenuWidget mw, widget_value *val, int level)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1232 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1233 int i;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1234
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1235 mw->menu.new_depth = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1236 for (i = 0; i < level; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1237 push_new_stack (mw, mw->menu.old_stack [i]);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1238 push_new_stack (mw, val);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1239 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1240
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1241 static void
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1242 expose_cb (Widget widget,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1243 XtPointer closure,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1244 XEvent* event,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1245 Boolean* continue_to_dispatch)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1246 {
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1247 XlwMenuWidget mw = (XlwMenuWidget) closure;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1248 int i;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1249
108023
150fd3d78f5a Declarations before code (Bug#5993).
Jan D. <jan.h.d@swipnet.se>
parents: 107888
diff changeset
1250 *continue_to_dispatch = False;
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1251 for (i = 0; i < mw->menu.windows_length; ++i)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1252 if (mw->menu.windows [i].w == widget) break;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1253 if (i < mw->menu.windows_length && i < mw->menu.old_depth)
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1254 display_menu (mw, i, False, NULL, NULL, NULL);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1255 }
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1256
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1257 static void
107888
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1258 set_window_type (Widget w, XlwMenuWidget mw)
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1259 {
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1260 int popup_menu_p = mw->menu.top_depth == 1;
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1261 Atom type = XInternAtom (XtDisplay (w),
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1262 popup_menu_p
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1263 ? "_NET_WM_WINDOW_TYPE_POPUP_MENU"
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1264 : "_NET_WM_WINDOW_TYPE_DROPDOWN_MENU",
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1265 False);
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1266
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1267 XChangeProperty (XtDisplay (w), XtWindow (w),
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1268 XInternAtom (XtDisplay (w), "_NET_WM_WINDOW_TYPE", False),
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1269 XA_ATOM, 32, PropModeReplace,
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1270 (unsigned char *)&type, 1);
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1271 }
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1272
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1273
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1274 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1275 make_windows_if_needed (XlwMenuWidget mw, int n)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1276 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1277 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1278 int start_at;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1279 window_state* windows;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1280
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1281 if (mw->menu.windows_length >= n)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1282 return;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1283
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1284 if (!mw->menu.windows)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1285 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1286 mw->menu.windows =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1287 (window_state*)XtMalloc (n * sizeof (window_state));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1288 start_at = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1289 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1290 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1291 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1292 mw->menu.windows =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1293 (window_state*)XtRealloc ((char*)mw->menu.windows,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1294 n * sizeof (window_state));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1295 start_at = mw->menu.windows_length;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1296 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1297 mw->menu.windows_length = n;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1298
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1299 windows = mw->menu.windows;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1300
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1301 for (i = start_at; i < n; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1302 {
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1303 Arg av[10];
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1304 int ac = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1305 windows [i].x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1306 windows [i].y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1307 windows [i].width = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1308 windows [i].height = 1;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1309 windows [i].max_rest_width = 0;
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1310 XtSetArg (av[ac], XtNwidth, 1); ++ac;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1311 XtSetArg (av[ac], XtNheight, 1); ++ac;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1312 XtSetArg (av[ac], XtNsaveUnder, True); ++ac;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1313 XtSetArg (av[ac], XtNbackground, mw->core.background_pixel); ++ac;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1314 XtSetArg (av[ac], XtNborderColor, mw->core.border_pixel); ++ac;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1315 XtSetArg (av[ac], XtNborderWidth, mw->core.border_width); ++ac;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1316 XtSetArg (av[ac], XtNcursor, mw->menu.cursor_shape); ++ac;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1317 windows [i].w =
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1318 XtCreatePopupShell ("sub", overrideShellWidgetClass,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1319 (Widget) mw, av, ac);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1320 XtRealizeWidget (windows [i].w);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1321 XtAddEventHandler (windows [i].w, ExposureMask, False, expose_cb, mw);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1322 windows [i].window = XtWindow (windows [i].w);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1323 windows [i].pixmap = None;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1324 #ifdef HAVE_XFT
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1325 windows [i].xft_draw = 0;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1326 #endif
107888
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1327 set_window_type (windows [i].w, mw);
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1328 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1329 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1330
37524
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1331 /* Value is non-zero if WINDOW is part of menu bar widget W. */
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1332
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1333 int
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1334 xlwmenu_window_p (Widget w, Window window)
37524
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1335 {
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1336 XlwMenuWidget mw = (XlwMenuWidget) w;
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1337 int i;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48929
diff changeset
1338
37524
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1339 for (i = 0; i < mw->menu.windows_length; ++i)
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1340 if (window == mw->menu.windows[i].window)
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1341 break;
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1342
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1343 return i < mw->menu.windows_length;
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1344 }
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1345
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1346 /* Make the window fit in the screen */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1347 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1348 fit_to_screen (XlwMenuWidget mw, window_state *ws, window_state *previous_ws, Boolean horizontal_p)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1349 {
11461
65c12e57f119 (size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents: 9746
diff changeset
1350 unsigned int screen_width = WidthOfScreen (XtScreen (mw));
65c12e57f119 (size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents: 9746
diff changeset
1351 unsigned int screen_height = HeightOfScreen (XtScreen (mw));
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1352 /* 1 if we are unable to avoid an overlap between
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1353 this menu and the parent menu in the X dimension. */
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1354 int horizontal_overlap = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1355
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1356 if (ws->x < 0)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1357 ws->x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1358 else if (ws->x + ws->width > screen_width)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1359 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1360 if (!horizontal_p)
31370
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1361 /* The addition of shadow-thickness for a sub-menu's position is
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1362 to reflect a similar adjustment when the menu is displayed to
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1363 the right of the invoking menu-item; it makes the sub-menu
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1364 look more `attached' to the menu-item. */
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1365 ws->x = previous_ws->x - ws->width + mw->menu.shadow_thickness;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1366 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1367 ws->x = screen_width - ws->width;
9395
d954daf0a213 (fit_to_screen): Don't put the menu off the left or top.
Richard M. Stallman <rms@gnu.org>
parents: 9227
diff changeset
1368 if (ws->x < 0)
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1369 {
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1370 ws->x = 0;
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1371 horizontal_overlap = 1;
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1372 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1373 }
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1374 /* If we overlap in X, try to avoid overlap in Y. */
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1375 if (horizontal_overlap
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1376 && ws->y < previous_ws->y + previous_ws->height
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1377 && previous_ws->y < ws->y + ws->height)
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1378 {
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1379 /* Put this menu right below or right above PREVIOUS_WS
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1380 if there's room. */
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1381 if (previous_ws->y + previous_ws->height + ws->height < screen_height)
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1382 ws->y = previous_ws->y + previous_ws->height;
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1383 else if (previous_ws->y - ws->height > 0)
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1384 ws->y = previous_ws->y - ws->height;
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1385 }
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1386
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1387 if (ws->y < 0)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1388 ws->y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1389 else if (ws->y + ws->height > screen_height)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1390 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1391 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1392 ws->y = previous_ws->y - ws->height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1393 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1394 ws->y = screen_height - ws->height;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1395 if (ws->y < 0)
9395
d954daf0a213 (fit_to_screen): Don't put the menu off the left or top.
Richard M. Stallman <rms@gnu.org>
parents: 9227
diff changeset
1396 ws->y = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1397 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1398 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1399
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1400 static void
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1401 create_pixmap_for_menu (window_state* ws, XlwMenuWidget mw)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1402 {
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1403 if (ws->pixmap != None)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1404 {
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1405 XFreePixmap (XtDisplay (ws->w), ws->pixmap);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1406 ws->pixmap = None;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1407 }
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1408 ws->pixmap = XCreatePixmap (XtDisplay (ws->w), ws->window,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1409 ws->width, ws->height,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1410 DefaultDepthOfScreen (XtScreen (ws->w)));
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1411 #ifdef HAVE_XFT
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1412 if (ws->xft_draw)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1413 XftDrawDestroy (ws->xft_draw);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1414 if (mw->menu.xft_font)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1415 {
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1416 int screen = XScreenNumberOfScreen (mw->core.screen);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1417 ws->xft_draw = XftDrawCreate (XtDisplay (ws->w),
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1418 ws->pixmap,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1419 DefaultVisual (XtDisplay (ws->w), screen),
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1420 mw->core.colormap);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1421 }
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1422 else
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1423 ws->xft_draw = 0;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1424 #endif
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1425 }
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1426
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1427 /* Updates old_stack from new_stack and redisplays. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1428 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1429 remap_menubar (XlwMenuWidget mw)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1430 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1431 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1432 int last_same;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1433 XPoint selection_position;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1434 int old_depth = mw->menu.old_depth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1435 int new_depth = mw->menu.new_depth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1436 widget_value** old_stack;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1437 widget_value** new_stack;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1438 window_state* windows;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1439 widget_value* old_selection;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1440 widget_value* new_selection;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1441
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1442 /* Check that enough windows and old_stack are ready. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1443 make_windows_if_needed (mw, new_depth);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1444 make_old_stack_space (mw, new_depth);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1445 windows = mw->menu.windows;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1446 old_stack = mw->menu.old_stack;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1447 new_stack = mw->menu.new_stack;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1448
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1449 /* compute the last identical different entry */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1450 for (i = 1; i < old_depth && i < new_depth; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1451 if (old_stack [i] != new_stack [i])
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1452 break;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1453 last_same = i - 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1454
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1455 /* Memorize the previously selected item to be able to refresh it */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1456 old_selection = last_same + 1 < old_depth ? old_stack [last_same + 1] : NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1457 if (old_selection && !old_selection->enabled)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1458 old_selection = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1459 new_selection = last_same + 1 < new_depth ? new_stack [last_same + 1] : NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1460 if (new_selection && !new_selection->enabled)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1461 new_selection = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1462
27338
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1463 /* Call callback when the hightlighted item changes. */
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1464 if (old_selection || new_selection)
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1465 XtCallCallbackList ((Widget)mw, mw->menu.highlight,
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1466 (XtPointer) new_selection);
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1467
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1468 /* updates old_state from new_state. It has to be done now because
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1469 display_menu (called below) uses the old_stack to know what to display. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1470 for (i = last_same + 1; i < new_depth; i++)
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1471 {
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1472 XtPopdown (mw->menu.windows [i].w);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1473 old_stack [i] = new_stack [i];
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1474 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1475 mw->menu.old_depth = new_depth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1476
14018
0a94cd2c51c4 Comment fixes.
Karl Heuer <kwzh@gnu.org>
parents: 13899
diff changeset
1477 /* refresh the last selection */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1478 selection_position.x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1479 selection_position.y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1480 display_menu (mw, last_same, new_selection == old_selection,
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1481 &selection_position, NULL, NULL);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1482
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1483 /* Now place the new menus. */
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1484 for (i = last_same + 1; i < new_depth && new_stack[i]->contents; i++)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1485 {
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1486 window_state *previous_ws = &windows[i - 1];
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1487 window_state *ws = &windows[i];
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1488
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1489 ws->x = (previous_ws->x + selection_position.x
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1490 + mw->menu.shadow_thickness);
31370
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1491 if (mw->menu.horizontal && i == 1)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1492 ws->x += mw->menu.margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1493
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1494 #if 0
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1495 if (!mw->menu.horizontal || i > 1)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1496 ws->x += mw->menu.shadow_thickness;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1497 #endif
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1498
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1499 ws->y = (previous_ws->y + selection_position.y
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1500 + mw->menu.shadow_thickness);
31370
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1501 if (mw->menu.horizontal && i == 1)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1502 ws->y += mw->menu.margin;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1503
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1504 size_menu (mw, i);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1505
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1506 fit_to_screen (mw, ws, previous_ws, mw->menu.horizontal && i == 1);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1507
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1508 XtVaSetValues (ws->w, XtNwidth, ws->width, XtNheight, ws->height,
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1509 XtNx, ws->x, XtNy, ws->y, NULL);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1510 create_pixmap_for_menu (ws, mw);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1511 XtPopup (ws->w, XtGrabNone);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1512 display_menu (mw, i, False, &selection_position, NULL, NULL);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1513 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1514
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1515 /* unmap the menus that popped down */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1516 for (i = new_depth - 1; i < old_depth; i++)
48929
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
1517 if (i >= new_depth || (i > 0 && !new_stack[i]->contents))
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1518 XtPopdown (windows[i].w);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1519 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1520
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1521 static Boolean
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1522 motion_event_is_in_menu (XlwMenuWidget mw, XMotionEvent *ev, int level, XPoint *relative_pos)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1523 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1524 window_state* ws = &mw->menu.windows [level];
19960
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1525 int shadow = level == 0 ? 0 : mw->menu.shadow_thickness;
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1526 int x = ws->x + shadow;
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1527 int y = ws->y + shadow;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1528 relative_pos->x = ev->x_root - x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1529 relative_pos->y = ev->y_root - y;
19960
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1530 return (x - shadow < ev->x_root && ev->x_root < x + ws->width
75018
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1531 && y - shadow < ev->y_root && ev->y_root < y + ws->height);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1532 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1533
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1534 static Boolean
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1535 map_event_to_widget_value (XlwMenuWidget mw, XMotionEvent *ev, widget_value **val, int *level)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1536 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1537 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1538 XPoint relative_pos;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1539 window_state* ws;
75018
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1540 int inside = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1541
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1542 *val = NULL;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1543
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1544 /* Find the window */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1545 for (i = mw->menu.old_depth - 1; i >= 0; i--)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1546 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1547 ws = &mw->menu.windows [i];
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1548 if (ws && motion_event_is_in_menu (mw, ev, i, &relative_pos))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1549 {
75018
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1550 inside = 1;
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1551 display_menu (mw, i, True, NULL, &relative_pos, val);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1552
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1553 if (*val)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1554 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1555 *level = i + 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1556 return True;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1557 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1558 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1559 }
75018
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1560
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1561 if (!inside)
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1562 {
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1563 if (mw->menu.inside_entry != NULL)
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1564 XtCallCallbackList ((Widget)mw, mw->menu.leave,
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1565 (XtPointer) mw->menu.inside_entry);
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1566 mw->menu.inside_entry = NULL;
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1567 }
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
1568
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1569 return False;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1570 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1571
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1572 /* Procedures */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1573 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1574 make_drawing_gcs (XlwMenuWidget mw)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1575 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1576 XGCValues xgcv;
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1577 float scale;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1578 XtGCMask mask = GCForeground | GCBackground;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1579
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1580 #ifdef HAVE_X_I18N
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1581 if (!mw->menu.fontSet)
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1582 {
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1583 xgcv.font = mw->menu.font->fid;
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1584 mask |= GCFont;
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1585 }
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1586 #else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1587 xgcv.font = mw->menu.font->fid;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1588 mask |= GCFont;
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1589 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1590 xgcv.foreground = mw->menu.foreground;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1591 xgcv.background = mw->core.background_pixel;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1592 mw->menu.foreground_gc = XtGetGC ((Widget)mw, mask, &xgcv);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1593
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1594 xgcv.foreground = mw->menu.button_foreground;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1595 mw->menu.button_gc = XtGetGC ((Widget)mw, mask, &xgcv);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1596
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1597 xgcv.background = mw->core.background_pixel;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1598
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1599 #define BRIGHTNESS(color) (((color) & 0xff) + (((color) >> 8) & 0xff) + (((color) >> 16) & 0xff))
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1600
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1601 /* Allocate color for disabled menu-items. */
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1602 mw->menu.disabled_foreground = mw->menu.foreground;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1603 if (BRIGHTNESS(mw->menu.foreground) < BRIGHTNESS(mw->core.background_pixel))
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1604 scale = 2.3;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1605 else
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1606 scale = 0.55;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1607
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1608 x_alloc_lighter_color_for_widget ((Widget) mw, XtDisplay ((Widget) mw),
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1609 mw->core.colormap,
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1610 &mw->menu.disabled_foreground,
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1611 scale,
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1612 0x8000);
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1613
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1614 if (mw->menu.foreground == mw->menu.disabled_foreground
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1615 || mw->core.background_pixel == mw->menu.disabled_foreground)
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1616 {
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1617 /* Too few colors, use stipple. */
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1618 xgcv.foreground = mw->menu.foreground;
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1619 xgcv.fill_style = FillStippled;
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1620 xgcv.stipple = mw->menu.gray_pixmap;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1621 mw->menu.disabled_gc = XtGetGC ((Widget)mw, mask
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1622 | GCFillStyle | GCStipple, &xgcv);
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1623 }
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1624 else
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1625 {
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1626 /* Many colors available, use disabled pixel. */
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1627 xgcv.foreground = mw->menu.disabled_foreground;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1628 mw->menu.disabled_gc = XtGetGC ((Widget)mw, mask, &xgcv);
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1629 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1630
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1631 xgcv.foreground = mw->menu.button_foreground;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1632 xgcv.background = mw->core.background_pixel;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1633 xgcv.fill_style = FillStippled;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1634 xgcv.stipple = mw->menu.gray_pixmap;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1635 mw->menu.inactive_button_gc = XtGetGC ((Widget)mw, mask
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1636 | GCFillStyle | GCStipple, &xgcv);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1637
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1638 xgcv.foreground = mw->core.background_pixel;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1639 xgcv.background = mw->menu.foreground;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1640 mw->menu.background_gc = XtGetGC ((Widget)mw, mask, &xgcv);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1641 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1642
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1643 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1644 release_drawing_gcs (XlwMenuWidget mw)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1645 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1646 XtReleaseGC ((Widget) mw, mw->menu.foreground_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1647 XtReleaseGC ((Widget) mw, mw->menu.button_gc);
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1648 XtReleaseGC ((Widget) mw, mw->menu.disabled_gc);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1649 XtReleaseGC ((Widget) mw, mw->menu.inactive_button_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1650 XtReleaseGC ((Widget) mw, mw->menu.background_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1651 /* let's get some segvs if we try to use these... */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1652 mw->menu.foreground_gc = (GC) -1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1653 mw->menu.button_gc = (GC) -1;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1654 mw->menu.disabled_gc = (GC) -1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1655 mw->menu.inactive_button_gc = (GC) -1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1656 mw->menu.background_gc = (GC) -1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1657 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1658
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1659 #define MINL(x,y) ((((unsigned long) (x)) < ((unsigned long) (y))) \
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1660 ? ((unsigned long) (x)) : ((unsigned long) (y)))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1661
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1662 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1663 make_shadow_gcs (XlwMenuWidget mw)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1664 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1665 XGCValues xgcv;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1666 unsigned long pm = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1667 Display *dpy = XtDisplay ((Widget) mw);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1668 Screen *screen = XtScreen ((Widget) mw);
27988
817a3a4058a0 (make_shadow_gcs): Use the widget's colormap instead
Gerd Moellmann <gerd@gnu.org>
parents: 27338
diff changeset
1669 Colormap cmap = mw->core.colormap;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1670 XColor topc, botc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1671 int top_frobbed = 0, bottom_frobbed = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1672
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1673 mw->menu.free_top_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1674 mw->menu.free_bottom_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1675
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1676 if (mw->menu.top_shadow_color == -1)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1677 mw->menu.top_shadow_color = mw->core.background_pixel;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1678 else
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1679 mw->menu.top_shadow_color = mw->menu.top_shadow_color;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1680
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1681 if (mw->menu.bottom_shadow_color == -1)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1682 mw->menu.bottom_shadow_color = mw->menu.foreground;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1683 else
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1684 mw->menu.bottom_shadow_color = mw->menu.bottom_shadow_color;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1685
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1686 if (mw->menu.top_shadow_color == mw->core.background_pixel ||
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1687 mw->menu.top_shadow_color == mw->menu.foreground)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1688 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1689 topc.pixel = mw->core.background_pixel;
31341
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1690 #ifdef emacs
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1691 if (x_alloc_lighter_color_for_widget ((Widget) mw, dpy, cmap,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1692 &topc.pixel,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1693 1.2, 0x8000))
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1694 #else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1695 XQueryColor (dpy, cmap, &topc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1696 /* don't overflow/wrap! */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1697 topc.red = MINL (65535, topc.red * 1.2);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1698 topc.green = MINL (65535, topc.green * 1.2);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1699 topc.blue = MINL (65535, topc.blue * 1.2);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1700 if (XAllocColor (dpy, cmap, &topc))
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1701 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1702 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1703 mw->menu.top_shadow_color = topc.pixel;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1704 mw->menu.free_top_shadow_color_p = 1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1705 top_frobbed = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1706 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1707 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1708 if (mw->menu.bottom_shadow_color == mw->menu.foreground ||
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1709 mw->menu.bottom_shadow_color == mw->core.background_pixel)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1710 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1711 botc.pixel = mw->core.background_pixel;
31341
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1712 #ifdef emacs
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1713 if (x_alloc_lighter_color_for_widget ((Widget) mw, dpy, cmap,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1714 &botc.pixel,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1715 0.6, 0x4000))
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1716 #else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1717 XQueryColor (dpy, cmap, &botc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1718 botc.red *= 0.6;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1719 botc.green *= 0.6;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1720 botc.blue *= 0.6;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1721 if (XAllocColor (dpy, cmap, &botc))
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1722 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1723 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1724 mw->menu.bottom_shadow_color = botc.pixel;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1725 mw->menu.free_bottom_shadow_color_p = 1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1726 bottom_frobbed = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1727 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1728 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1729
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1730 if (top_frobbed && bottom_frobbed)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1731 {
31341
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1732 if (topc.pixel == botc.pixel)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1733 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1734 if (botc.pixel == mw->menu.foreground)
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1735 {
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1736 if (mw->menu.free_top_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1737 {
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1738 x_free_dpy_colors (dpy, screen, cmap,
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1739 &mw->menu.top_shadow_color, 1);
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1740 mw->menu.free_top_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1741 }
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1742 mw->menu.top_shadow_color = mw->core.background_pixel;
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1743 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1744 else
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1745 {
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1746 if (mw->menu.free_bottom_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1747 {
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1748 x_free_dpy_colors (dpy, screen, cmap,
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1749 &mw->menu.bottom_shadow_color, 1);
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1750 mw->menu.free_bottom_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1751 }
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1752 mw->menu.bottom_shadow_color = mw->menu.foreground;
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1753 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1754 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1755 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1756
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1757 if (!mw->menu.top_shadow_pixmap &&
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1758 mw->menu.top_shadow_color == mw->core.background_pixel)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1759 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1760 mw->menu.top_shadow_pixmap = mw->menu.gray_pixmap;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1761 if (mw->menu.free_top_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1762 {
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1763 x_free_dpy_colors (dpy, screen, cmap, &mw->menu.top_shadow_color, 1);
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1764 mw->menu.free_top_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1765 }
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1766 mw->menu.top_shadow_color = mw->menu.foreground;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1767 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1768 if (!mw->menu.bottom_shadow_pixmap &&
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1769 mw->menu.bottom_shadow_color == mw->core.background_pixel)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1770 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1771 mw->menu.bottom_shadow_pixmap = mw->menu.gray_pixmap;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1772 if (mw->menu.free_bottom_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1773 {
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1774 x_free_dpy_colors (dpy, screen, cmap,
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1775 &mw->menu.bottom_shadow_color, 1);
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1776 mw->menu.free_bottom_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1777 }
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1778 mw->menu.bottom_shadow_color = mw->menu.foreground;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1779 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1780
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1781 xgcv.fill_style = FillStippled;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1782 xgcv.foreground = mw->menu.top_shadow_color;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1783 xgcv.stipple = mw->menu.top_shadow_pixmap;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1784 pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1785 mw->menu.shadow_top_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1786
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1787 xgcv.foreground = mw->menu.bottom_shadow_color;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1788 xgcv.stipple = mw->menu.bottom_shadow_pixmap;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1789 pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1790 mw->menu.shadow_bottom_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1791 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1792
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1793
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1794 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1795 release_shadow_gcs (XlwMenuWidget mw)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1796 {
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1797 Display *dpy = XtDisplay ((Widget) mw);
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1798 Screen *screen = XtScreen ((Widget) mw);
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1799 Colormap cmap = mw->core.colormap;
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1800 Pixel px[2];
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1801 int i = 0;
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1802
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1803 if (mw->menu.free_top_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1804 px[i++] = mw->menu.top_shadow_color;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1805 if (mw->menu.free_bottom_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1806 px[i++] = mw->menu.bottom_shadow_color;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1807 if (i > 0)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1808 x_free_dpy_colors (dpy, screen, cmap, px, i);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1809
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1810 XtReleaseGC ((Widget) mw, mw->menu.shadow_top_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1811 XtReleaseGC ((Widget) mw, mw->menu.shadow_bottom_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1812 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1813
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1814 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1815 static int
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1816 openXftFont (XlwMenuWidget mw)
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1817 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1818 char *fname = mw->menu.faceName;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1819
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1820 mw->menu.xft_font = 0;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1821 mw->menu.default_face = fname && strcmp (fname, DEFAULT_FACENAME) == 0;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1822
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1823 if (fname && strcmp (fname, "none") != 0)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1824 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1825 int screen = XScreenNumberOfScreen (mw->core.screen);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1826 int len = strlen (fname), i = len-1;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1827 /* Try to convert Gtk-syntax (Sans 9) to Xft syntax Sans-9. */
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1828 while (i > 0 && isdigit (fname[i]))
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1829 --i;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1830 if (fname[i] == ' ')
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1831 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1832 fname = xstrdup (mw->menu.faceName);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1833 fname[i] = '-';
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1834 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1835
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1836 mw->menu.xft_font = XftFontOpenName (XtDisplay (mw), screen, fname);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1837 if (!mw->menu.xft_font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1838 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1839 fprintf (stderr, "Can't find font '%s'\n", fname);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1840 mw->menu.xft_font = XftFontOpenName (XtDisplay (mw), screen,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1841 DEFAULT_FACENAME);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1842 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1843 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1844
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1845 if (fname != mw->menu.faceName) free (fname);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1846
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1847 return mw->menu.xft_font != 0;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1848 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1849 #endif
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1850
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1851 static void
109141
fa173b9bd9ce Fix some bad prototypes and formatting after conversion from K&R declaration.
Jan D <jan.h.d@swipnet.se>
parents: 109123
diff changeset
1852 XlwMenuInitialize (Widget request, Widget w, ArgList args, Cardinal *num_args)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1853 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1854 /* Get the GCs and the widget size */
109141
fa173b9bd9ce Fix some bad prototypes and formatting after conversion from K&R declaration.
Jan D <jan.h.d@swipnet.se>
parents: 109123
diff changeset
1855 XlwMenuWidget mw = (XlwMenuWidget) w;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1856 Window window = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw)));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1857 Display* display = XtDisplay (mw);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1858
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1859 #if 0
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1860 widget_value *tem = (widget_value *) XtMalloc (sizeof (widget_value));
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1861
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1862 /* _XtCreate is freeing the object that was passed to us,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1863 so make a copy that we will actually keep. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1864 lwlib_bcopy (mw->menu.contents, tem, sizeof (widget_value));
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1865 mw->menu.contents = tem;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1866 #endif
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1867
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1868 /* mw->menu.cursor = XCreateFontCursor (display, mw->menu.cursor_shape); */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1869 mw->menu.cursor = mw->menu.cursor_shape;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1870
11885
c686f5539749 (XlwMenuInitialize): Cast XCreatePixmapFromBitmapData args.
Karl Heuer <kwzh@gnu.org>
parents: 11461
diff changeset
1871 mw->menu.gray_pixmap
30324
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
1872 = XCreatePixmapFromBitmapData (display, window, gray_bitmap_bits,
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
1873 gray_bitmap_width, gray_bitmap_height,
11885
c686f5539749 (XlwMenuInitialize): Cast XCreatePixmapFromBitmapData args.
Karl Heuer <kwzh@gnu.org>
parents: 11461
diff changeset
1874 (unsigned long)1, (unsigned long)0, 1);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1875
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1876 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1877 if (openXftFont (mw))
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1878 ;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1879 else
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1880 #endif
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1881
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1882 if (!mw->menu.font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1883 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1884 if (!xlwmenu_default_font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1885 xlwmenu_default_font = XLoadQueryFont (display, "fixed");
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1886 mw->menu.font = xlwmenu_default_font;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1887 if (!mw->menu.font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1888 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1889 fprintf (stderr, "Menu font fixed not found, can't continue.\n");
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1890 abort ();
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1891 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1892 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1893
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1894 #ifdef HAVE_X_I18N
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1895 if (mw->menu.fontSet)
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
1896 mw->menu.font_extents = XExtentsOfFontSet (mw->menu.fontSet);
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1897 #endif
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
1898
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1899 make_drawing_gcs (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1900 make_shadow_gcs (mw);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1901
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1902 mw->menu.popped_up = False;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1903
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1904 mw->menu.old_depth = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1905 mw->menu.old_stack = (widget_value**)XtMalloc (sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1906 mw->menu.old_stack_length = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1907 mw->menu.old_stack [0] = mw->menu.contents;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1908
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1909 mw->menu.new_depth = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1910 mw->menu.new_stack = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1911 mw->menu.new_stack_length = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1912 push_new_stack (mw, mw->menu.contents);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1913
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1914 mw->menu.windows = (window_state*)XtMalloc (sizeof (window_state));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1915 mw->menu.windows_length = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1916 mw->menu.windows [0].x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1917 mw->menu.windows [0].y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1918 mw->menu.windows [0].width = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1919 mw->menu.windows [0].height = 0;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1920 mw->menu.windows [0].max_rest_width = 0;
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1921 mw->menu.windows [0].pixmap = None;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1922 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1923 mw->menu.windows [0].xft_draw = 0;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1924 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1925 size_menu (mw, 0);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1926
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1927 mw->core.width = mw->menu.windows [0].width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1928 mw->core.height = mw->menu.windows [0].height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1929 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1930
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1931 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1932 XlwMenuClassInitialize (void)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1933 {
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1934 xlwmenu_default_font = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1935 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1936
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1937 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
1938 XlwMenuRealize (Widget w, Mask *valueMask, XSetWindowAttributes *attributes)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1939 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1940 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1941 XSetWindowAttributes xswa;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1942 int mask;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1943
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1944 (*xlwMenuWidgetClass->core_class.superclass->core_class.realize)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1945 (w, valueMask, attributes);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1946
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1947 xswa.save_under = True;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1948 xswa.cursor = mw->menu.cursor_shape;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1949 mask = CWSaveUnder | CWCursor;
83443
4d989ab8dad8 Install workaround for "X protocol error: BadCursor (invalid Cursor parameter) on protocol request 2"
Karoly Lorentey <lorentey@elte.hu>
parents: 65713
diff changeset
1950 /* I sometimes get random BadCursor errors while creating the first
4d989ab8dad8 Install workaround for "X protocol error: BadCursor (invalid Cursor parameter) on protocol request 2"
Karoly Lorentey <lorentey@elte.hu>
parents: 65713
diff changeset
1951 frame on a display. I can not find their reason, but they are
4d989ab8dad8 Install workaround for "X protocol error: BadCursor (invalid Cursor parameter) on protocol request 2"
Karoly Lorentey <lorentey@elte.hu>
parents: 65713
diff changeset
1952 annoying so for now let's ignore any errors here. -- lorentey */
4d989ab8dad8 Install workaround for "X protocol error: BadCursor (invalid Cursor parameter) on protocol request 2"
Karoly Lorentey <lorentey@elte.hu>
parents: 65713
diff changeset
1953 #ifdef emacs
83528
a43b5a268ea1 Fix compilation error in lwlib/xlwmenu.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83527
diff changeset
1954 x_catch_errors (XtDisplay (w));
83443
4d989ab8dad8 Install workaround for "X protocol error: BadCursor (invalid Cursor parameter) on protocol request 2"
Karoly Lorentey <lorentey@elte.hu>
parents: 65713
diff changeset
1955 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1956 XChangeWindowAttributes (XtDisplay (w), XtWindow (w), mask, &xswa);
83443
4d989ab8dad8 Install workaround for "X protocol error: BadCursor (invalid Cursor parameter) on protocol request 2"
Karoly Lorentey <lorentey@elte.hu>
parents: 65713
diff changeset
1957 #ifdef emacs
83528
a43b5a268ea1 Fix compilation error in lwlib/xlwmenu.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83527
diff changeset
1958 x_uncatch_errors ();
83443
4d989ab8dad8 Install workaround for "X protocol error: BadCursor (invalid Cursor parameter) on protocol request 2"
Karoly Lorentey <lorentey@elte.hu>
parents: 65713
diff changeset
1959 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1960
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1961 mw->menu.windows [0].w = w;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1962 mw->menu.windows [0].window = XtWindow (w);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1963 mw->menu.windows [0].x = w->core.x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1964 mw->menu.windows [0].y = w->core.y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1965 mw->menu.windows [0].width = w->core.width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1966 mw->menu.windows [0].height = w->core.height;
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1967
107888
32fc68b9d103 Set _NET_WM_WINDOW_TYPE in menus. Looks bad with compiz otherwise.
Jan D. <jan.h.d@swipnet.se>
parents: 107886
diff changeset
1968 set_window_type (mw->menu.windows [0].w, mw);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1969 create_pixmap_for_menu (&mw->menu.windows [0], mw);
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
1970
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1971 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1972 if (mw->menu.xft_font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1973 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1974 XColor colors[3];
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1975 colors[0].pixel = mw->menu.xft_fg.pixel = mw->menu.foreground;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1976 colors[1].pixel = mw->menu.xft_bg.pixel = mw->core.background_pixel;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1977 colors[2].pixel = mw->menu.xft_disabled_fg.pixel
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1978 = mw->menu.disabled_foreground;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1979 XQueryColors (XtDisplay (mw), mw->core.colormap, colors, 3);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1980 mw->menu.xft_fg.color.alpha = 0xFFFF;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1981 mw->menu.xft_fg.color.red = colors[0].red;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1982 mw->menu.xft_fg.color.green = colors[0].green;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1983 mw->menu.xft_fg.color.blue = colors[0].blue;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1984 mw->menu.xft_bg.color.alpha = 0xFFFF;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1985 mw->menu.xft_bg.color.red = colors[1].red;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1986 mw->menu.xft_bg.color.green = colors[1].green;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1987 mw->menu.xft_bg.color.blue = colors[1].blue;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1988 mw->menu.xft_disabled_fg.color.alpha = 0xFFFF;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1989 mw->menu.xft_disabled_fg.color.red = colors[2].red;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1990 mw->menu.xft_disabled_fg.color.green = colors[2].green;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1991 mw->menu.xft_disabled_fg.color.blue = colors[2].blue;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1992 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
1993 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1994 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1995
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1996 /* Only the toplevel menubar/popup is a widget so it's the only one that
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1997 receives expose events through Xt. So we repaint all the other panes
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1998 when receiving an Expose event. */
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1999 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2000 XlwMenuRedisplay (Widget w, XEvent *ev, Region region)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2001 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2002 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2003
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2004 /* If we have a depth beyond 1, it's because a submenu was displayed.
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2005 If the submenu has been destroyed, set the depth back to 1. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2006 if (submenu_destroyed)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2007 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2008 mw->menu.old_depth = 1;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2009 submenu_destroyed = 0;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2010 }
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2011
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2012 display_menu (mw, 0, False, NULL, NULL, NULL);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2013 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2014
33714
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2015
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2016 /* Part of a hack to make the menu redisplay when a tooltip frame
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2017 over a menu item is unmapped. */
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2018
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2019 void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2020 xlwmenu_redisplay (Widget w)
33714
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2021 {
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2022 XlwMenuRedisplay (w, NULL, None);
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2023 }
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
2024
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2025 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2026 XlwMenuDestroy (Widget w)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2027 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2028 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2029 XlwMenuWidget mw = (XlwMenuWidget) w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2030
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2031 if (pointer_grabbed)
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2032 ungrab_all ((Widget)w, CurrentTime);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2033 pointer_grabbed = 0;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2034
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2035 submenu_destroyed = 1;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2036
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2037 release_drawing_gcs (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2038 release_shadow_gcs (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2039
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2040 /* this doesn't come from the resource db but is created explicitly
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2041 so we must free it ourselves. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2042 XFreePixmap (XtDisplay (mw), mw->menu.gray_pixmap);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2043 mw->menu.gray_pixmap = (Pixmap) -1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2044
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2045 #if 0
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2046 /* Do free mw->menu.contents because nowadays we copy it
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2047 during initialization. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2048 XtFree (mw->menu.contents);
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2049 #endif
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2050
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2051 /* Don't free mw->menu.contents because that comes from our creator.
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2052 The `*_stack' elements are just pointers into `contents' so leave
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2053 that alone too. But free the stacks themselves. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2054 if (mw->menu.old_stack) XtFree ((char *) mw->menu.old_stack);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2055 if (mw->menu.new_stack) XtFree ((char *) mw->menu.new_stack);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2056
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2057 /* Remember, you can't free anything that came from the resource
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2058 database. This includes:
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2059 mw->menu.cursor
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2060 mw->menu.top_shadow_pixmap
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2061 mw->menu.bottom_shadow_pixmap
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2062 mw->menu.font
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2063 Also the color cells of top_shadow_color, bottom_shadow_color,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2064 foreground, and button_foreground will never be freed until this
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2065 client exits. Nice, eh?
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2066 */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2067
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2068 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2069 if (mw->menu.windows [0].xft_draw)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2070 XftDrawDestroy (mw->menu.windows [0].xft_draw);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2071 if (mw->menu.xft_font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2072 XftFontClose (XtDisplay (mw), mw->menu.xft_font);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2073 #endif
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2074
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2075 if (mw->menu.windows [0].pixmap != None)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2076 XFreePixmap (XtDisplay (mw), mw->menu.windows [0].pixmap);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2077 /* start from 1 because the one in slot 0 is w->core.window */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2078 for (i = 1; i < mw->menu.windows_length; i++)
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2079 {
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2080 if (mw->menu.windows [i].pixmap != None)
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2081 XFreePixmap (XtDisplay (mw), mw->menu.windows [i].pixmap);
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2082 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2083 if (mw->menu.windows [i].xft_draw)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2084 XftDrawDestroy (mw->menu.windows [i].xft_draw);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2085 #endif
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2086 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2087
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2088 if (mw->menu.windows)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2089 XtFree ((char *) mw->menu.windows);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2090 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2091
107873
b88763a1166b xlwmenu.c (facename_changed): Put function in #ifdef HAVE_XFT.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 107804
diff changeset
2092 #ifdef HAVE_XFT
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2093 static int
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2094 facename_changed (XlwMenuWidget newmw,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2095 XlwMenuWidget oldmw)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2096 {
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2097 /* This will fore a new XftFont even if the same string is set.
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2098 This is good, as rendering parameters may have changed and
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2099 we just want to do a redisplay. */
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2100 return newmw->menu.faceName != oldmw->menu.faceName;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2101 }
107873
b88763a1166b xlwmenu.c (facename_changed): Put function in #ifdef HAVE_XFT.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 107804
diff changeset
2102 #endif
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2103
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2104 static Boolean
109141
fa173b9bd9ce Fix some bad prototypes and formatting after conversion from K&R declaration.
Jan D <jan.h.d@swipnet.se>
parents: 109123
diff changeset
2105 XlwMenuSetValues (Widget current, Widget request, Widget new,
fa173b9bd9ce Fix some bad prototypes and formatting after conversion from K&R declaration.
Jan D <jan.h.d@swipnet.se>
parents: 109123
diff changeset
2106 ArgList args, Cardinal *num_args)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2107 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2108 XlwMenuWidget oldmw = (XlwMenuWidget)current;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2109 XlwMenuWidget newmw = (XlwMenuWidget)new;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2110 Boolean redisplay = False;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2111 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2112
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2113 if (newmw->menu.contents
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2114 && newmw->menu.contents->contents
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2115 && newmw->menu.contents->contents->change >= VISIBLE_CHANGE)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2116 redisplay = True;
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2117 /* Do redisplay if the contents are entirely eliminated. */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2118 if (newmw->menu.contents
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2119 && newmw->menu.contents->contents == 0
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2120 && newmw->menu.contents->change >= VISIBLE_CHANGE)
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2121 redisplay = True;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2122
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2123 if (newmw->core.background_pixel != oldmw->core.background_pixel
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2124 || newmw->menu.foreground != oldmw->menu.foreground
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2125 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2126 || facename_changed (newmw, oldmw)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2127 #endif
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
2128 #ifdef HAVE_X_I18N
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
2129 || newmw->menu.fontSet != oldmw->menu.fontSet
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
2130 || (newmw->menu.fontSet == NULL && newmw->menu.font != oldmw->menu.font)
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
2131 #else
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2132 || newmw->menu.font != oldmw->menu.font
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2133 #endif
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2134 )
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2135 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2136 release_drawing_gcs (newmw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2137 make_drawing_gcs (newmw);
31287
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
2138
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
2139 release_shadow_gcs (newmw);
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
2140 /* Cause the shadow colors to be recalculated. */
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
2141 newmw->menu.top_shadow_color = -1;
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
2142 newmw->menu.bottom_shadow_color = -1;
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
2143 make_shadow_gcs (newmw);
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
2144
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2145 redisplay = True;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2146
31369
6aa8a6e72c0f (XlwMenuSetValues): Pass the correct pointer type to XtIsRealized.
Miles Bader <miles@gnu.org>
parents: 31364
diff changeset
2147 if (XtIsRealized (current))
31364
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2148 /* If the menu is currently displayed, change the display. */
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2149 for (i = 0; i < oldmw->menu.windows_length; i++)
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2150 {
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2151 XSetWindowBackground (XtDisplay (oldmw),
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2152 oldmw->menu.windows [i].window,
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2153 newmw->core.background_pixel);
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2154 /* clear windows and generate expose events */
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2155 XClearArea (XtDisplay (oldmw), oldmw->menu.windows[i].window,
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2156 0, 0, 0, 0, True);
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
2157 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2158 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2159
107804
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2160 #ifdef HAVE_XFT
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2161 if (facename_changed (newmw, oldmw))
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2162 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2163 int i;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2164 int screen = XScreenNumberOfScreen (newmw->core.screen);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2165 if (newmw->menu.xft_font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2166 XftFontClose (XtDisplay (newmw), newmw->menu.xft_font);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2167 openXftFont (newmw);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2168 for (i = 0; i < newmw->menu.windows_length; i++)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2169 {
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2170 if (newmw->menu.windows [i].xft_draw)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2171 XftDrawDestroy (newmw->menu.windows [i].xft_draw);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2172 newmw->menu.windows [i].xft_draw = 0;
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2173 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2174 if (newmw->menu.xft_font)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2175 for (i = 0; i < newmw->menu.windows_length; i++)
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2176 newmw->menu.windows [i].xft_draw
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2177 = XftDrawCreate (XtDisplay (newmw),
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2178 newmw->menu.windows [i].window,
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2179 DefaultVisual (XtDisplay (newmw), screen),
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2180 newmw->core.colormap);
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2181 }
24c4451bcaf7 Lucid menus can now use Xft for fonts.
Jan D. <jan.h.d@swipnet.se>
parents: 106815
diff changeset
2182 #endif
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2183 #ifdef HAVE_X_I18N
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
2184 if (newmw->menu.fontSet != oldmw->menu.fontSet && newmw->menu.fontSet != NULL)
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2185 {
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2186 redisplay = True;
61209
0769f2fae9d0 * xlwmenu.c (string_width):
Jan Djärv <jan.h.d@swipnet.se>
parents: 60829
diff changeset
2187 newmw->menu.font_extents = XExtentsOfFontSet (newmw->menu.fontSet);
60698
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2188 }
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2189 #endif
3e557e11645e Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59100
diff changeset
2190
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2191 return redisplay;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2192 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2193
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2194 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2195 XlwMenuResize (Widget w)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2196 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2197 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2198
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2199 if (mw->menu.popped_up)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2200 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2201 /* Don't allow the popup menu to resize itself. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2202 mw->core.width = mw->menu.windows [0].width;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2203 mw->core.height = mw->menu.windows [0].height;
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2204 mw->core.parent->core.width = mw->core.width;
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2205 mw->core.parent->core.height = mw->core.height;
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2206 }
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2207 else
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2208 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2209 mw->menu.windows [0].width = mw->core.width;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2210 mw->menu.windows [0].height = mw->core.height;
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2211 create_pixmap_for_menu (&mw->menu.windows [0], mw);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2212 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2213 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2214
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2215 /* Action procedures */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2216 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2217 handle_single_motion_event (XlwMenuWidget mw, XMotionEvent *ev)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2218 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2219 widget_value* val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2220 int level;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2221
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2222 if (!map_event_to_widget_value (mw, ev, &val, &level))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2223 pop_new_stack_if_no_contents (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2224 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2225 set_new_state (mw, val, level);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2226 remap_menubar (mw);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2227
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2228 /* Sync with the display. Makes it feel better on X terms. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2229 XSync (XtDisplay (mw), False);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2230 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2231
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2232 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2233 handle_motion_event (XlwMenuWidget mw, XMotionEvent *ev)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2234 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2235 int x = ev->x_root;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2236 int y = ev->y_root;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2237 int state = ev->state;
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2238 XMotionEvent oldev = *ev;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2239
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2240 /* allow motion events to be generated again */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2241 if (ev->is_hint
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2242 && XQueryPointer (XtDisplay (mw), ev->window,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2243 &ev->root, &ev->subwindow,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2244 &ev->x_root, &ev->y_root,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2245 &ev->x, &ev->y,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2246 &ev->state)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2247 && ev->state == state
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2248 && (ev->x_root != x || ev->y_root != y))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2249 handle_single_motion_event (mw, ev);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2250 else
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2251 handle_single_motion_event (mw, &oldev);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2252 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2253
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2254 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2255 Start (Widget w, XEvent *ev, String *params, Cardinal *num_params)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2256 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2257 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2258
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2259 if (!mw->menu.popped_up)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2260 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2261 menu_post_event = *ev;
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2262 /* If event is set to CurrentTime, get the last known time stamp.
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2263 This is for calculating if (popup) menus should stay up after
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2264 a fast click. */
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2265 if (menu_post_event.xbutton.time == CurrentTime)
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2266 menu_post_event.xbutton.time
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2267 = XtLastTimestampProcessed (XtDisplay (w));
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2268
29469
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
2269 pop_up_menu (mw, (XButtonPressedEvent*) ev);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2270 }
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2271 else
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2272 {
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2273 /* If we push a button while the menu is posted semipermanently,
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2274 releasing the button should always pop the menu down. */
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2275 next_release_must_exit = 1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2276
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2277 /* notes the absolute position of the menubar window */
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2278 mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2279 mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2280
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2281 /* handles the down like a move, slots are compatible */
70850
b90abedf3b79 * xlwmenu.c: Include xterm.h if emacs instead of declaring functions
Jan Djärv <jan.h.d@swipnet.se>
parents: 68640
diff changeset
2282 ev->xmotion.is_hint = 0;
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2283 handle_motion_event (mw, &ev->xmotion);
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2284 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2285 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2286
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2287 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2288 Drag (Widget w, XEvent *ev, String *params, Cardinal *num_params)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2289 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2290 XlwMenuWidget mw = (XlwMenuWidget)w;
11987
9619c1121b43 (Drag): Do nothing unless menu.popped_up field is set.
Karl Heuer <kwzh@gnu.org>
parents: 11885
diff changeset
2291 if (mw->menu.popped_up)
9619c1121b43 (Drag): Do nothing unless menu.popped_up field is set.
Karl Heuer <kwzh@gnu.org>
parents: 11885
diff changeset
2292 handle_motion_event (mw, &ev->xmotion);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2293 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2294
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2295 /* Do nothing.
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2296 This is how we handle presses and releases of modifier keys. */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2297 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2298 Nothing (Widget w, XEvent *ev, String *params, Cardinal *num_params)
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2299 {
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2300 }
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2301
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2302 static widget_value *
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2303 find_first_selectable (XlwMenuWidget mw, widget_value *item, int skip_titles)
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2304 {
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2305 widget_value *current = item;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2306 enum menu_separator separator;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2307
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2308 while (lw_separator_p (current->name, &separator, 0) || !current->enabled
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2309 || (skip_titles && !current->call_data && !current->contents))
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2310 if (current->next)
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2311 current=current->next;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2312 else
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2313 return NULL;
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2314
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2315 return current;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2316 }
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2317
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2318 static widget_value *
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2319 find_next_selectable (XlwMenuWidget mw, widget_value *item, int skip_titles)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2320 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2321 widget_value *current = item;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2322 enum menu_separator separator;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2323
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2324 while (current->next && (current=current->next) &&
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2325 (lw_separator_p (current->name, &separator, 0) || !current->enabled
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2326 || (skip_titles && !current->call_data && !current->contents)))
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2327 ;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2328
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2329 if (current == item)
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2330 {
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
2331 if (mw->menu.old_depth < 2)
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
2332 return current;
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2333 current = mw->menu.old_stack [mw->menu.old_depth - 2]->contents;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2334
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2335 while (lw_separator_p (current->name, &separator, 0)
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2336 || !current->enabled
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2337 || (skip_titles && !current->call_data
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2338 && !current->contents))
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2339 {
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2340 if (current->next)
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2341 current=current->next;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2342
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2343 if (current == item)
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2344 break;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2345 }
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2346
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2347 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2348
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2349 return current;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2350 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2351
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2352 static widget_value *
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2353 find_prev_selectable (XlwMenuWidget mw, widget_value *item, int skip_titles)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2354 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2355 widget_value *current = item;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2356 widget_value *prev = item;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2357
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2358 while ((current=find_next_selectable (mw, current, skip_titles))
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2359 != item)
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2360 {
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2361 if (prev == current)
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2362 break;
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2363 prev=current;
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2364 }
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2365
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2366 return prev;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2367 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2368
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2369 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2370 Down (Widget w, XEvent *ev, String *params, Cardinal *num_params)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2371 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2372 XlwMenuWidget mw = (XlwMenuWidget) w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2373 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2374 int popup_menu_p = mw->menu.top_depth == 1;
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2375
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2376 /* Inside top-level menu-bar? */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2377 if (mw->menu.old_depth == mw->menu.top_depth)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2378 /* When <down> in the menu-bar is pressed, display the corresponding
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2379 sub-menu and select the first selectable menu item there.
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2380 If this is a popup menu, skip title item of the popup. */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2381 set_new_state (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2382 find_first_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2383 selected_item->contents,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2384 popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2385 mw->menu.old_depth);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2386 else
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2387 /* Highlight next possible (enabled and not separator) menu item. */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2388 set_new_state (mw, find_next_selectable (mw, selected_item, popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2389 mw->menu.old_depth - 1);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2390
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2391 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2392 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2393
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2394 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2395 Up (Widget w, XEvent *ev, String *params, Cardinal *num_params)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2396 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2397 XlwMenuWidget mw = (XlwMenuWidget) w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2398 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2399 int popup_menu_p = mw->menu.top_depth == 1;
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2400
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2401 /* Inside top-level menu-bar? */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2402 if (mw->menu.old_depth == mw->menu.top_depth)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2403 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2404 /* FIXME: this is tricky. <up> in the menu-bar should select the
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2405 last selectable item in the list. So we select the first
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2406 selectable one and find the previous selectable item. Is there
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2407 a better way? */
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2408 /* If this is a popup menu, skip title item of the popup. */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2409 set_new_state (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2410 find_first_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2411 selected_item->contents,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2412 popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2413 mw->menu.old_depth);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2414 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2415 selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2416 set_new_state (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2417 find_prev_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2418 selected_item,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2419 popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2420 mw->menu.old_depth - 1);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2421 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2422 else
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2423 /* Highlight previous (enabled and not separator) menu item. */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2424 set_new_state (mw, find_prev_selectable (mw, selected_item, popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2425 mw->menu.old_depth - 1);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2426
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2427 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2428 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2429
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2430 void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2431 Left (Widget w, XEvent *ev, String *params, Cardinal *num_params)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2432 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2433 XlwMenuWidget mw = (XlwMenuWidget) w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2434 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2435
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2436 /* Inside top-level menu-bar? */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2437 if (mw->menu.old_depth == mw->menu.top_depth)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2438 /* When <left> in the menu-bar is pressed, display the previous item on
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2439 the menu-bar. If the current item is the first one, highlight the
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2440 last item in the menubar (probably Help). */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2441 set_new_state (mw, find_prev_selectable (mw, selected_item, 0),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2442 mw->menu.old_depth - 1);
48929
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2443 else if (mw->menu.old_depth == 1
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2444 && selected_item->contents) /* Is this menu item expandable? */
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2445 {
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2446 set_new_state (mw, selected_item->contents, mw->menu.old_depth);
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2447 remap_menubar (mw);
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2448 selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2449 if (!selected_item->enabled && find_first_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2450 selected_item,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2451 0))
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2452 set_new_state (mw, find_first_selectable (mw, selected_item, 0),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2453 mw->menu.old_depth - 1);
48929
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2454 }
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2455
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2456 else
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2457 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2458 pop_new_stack_if_no_contents (mw);
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2459 set_new_state (mw, mw->menu.old_stack [mw->menu.old_depth - 2],
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2460 mw->menu.old_depth - 2);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2461 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2462
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2463 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2464 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2465
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2466 void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2467 Right (Widget w, XEvent *ev, String *params, Cardinal *num_params)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2468 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2469 XlwMenuWidget mw = (XlwMenuWidget) w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2470 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2471
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2472 /* Inside top-level menu-bar? */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2473 if (mw->menu.old_depth == mw->menu.top_depth)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2474 /* When <right> in the menu-bar is pressed, display the next item on
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2475 the menu-bar. If the current item is the last one, highlight the
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2476 first item (probably File). */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2477 set_new_state (mw, find_next_selectable (mw, selected_item, 0),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2478 mw->menu.old_depth - 1);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2479 else if (selected_item->contents) /* Is this menu item expandable? */
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2480 {
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2481 set_new_state (mw, selected_item->contents, mw->menu.old_depth);
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2482 remap_menubar (mw);
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2483 selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2484 if (!selected_item->enabled && find_first_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2485 selected_item,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2486 0))
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2487 set_new_state (mw, find_first_selectable (mw, selected_item, 0),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2488 mw->menu.old_depth - 1);
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2489 }
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2490 else
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2491 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2492 pop_new_stack_if_no_contents (mw);
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2493 set_new_state (mw, mw->menu.old_stack [mw->menu.old_depth - 2],
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2494 mw->menu.old_depth - 2);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2495 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2496
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2497 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2498 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2499
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2500 /* Handle key press and release events while menu is popped up.
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2501 Our action is to get rid of the menu. */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2502 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2503 Key (Widget w, XEvent *ev, String *params, Cardinal *num_params)
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2504 {
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2505 XlwMenuWidget mw = (XlwMenuWidget)w;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2506
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2507 /* Pop down everything. */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2508 mw->menu.new_depth = 1;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2509 remap_menubar (mw);
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2510
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2511 if (mw->menu.popped_up)
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2512 {
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2513 mw->menu.popped_up = False;
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2514 ungrab_all ((Widget)mw, ev->xmotion.time);
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2515 if (XtIsShell (XtParent ((Widget) mw)))
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2516 XtPopdown (XtParent ((Widget) mw));
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2517 else
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2518 {
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2519 XtRemoveGrab ((Widget) mw);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2520 display_menu (mw, 0, False, NULL, NULL, NULL);
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2521 }
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2522 }
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2523
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2524 /* callback */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2525 XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)0);
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2526 }
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2527
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2528 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2529 Select (Widget w, XEvent *ev, String *params, Cardinal *num_params)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2530 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2531 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2532 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2533
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2534 /* If user releases the button quickly, without selecting anything,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2535 after the initial down-click that brought the menu up,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2536 do nothing. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2537 if ((selected_item == 0
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2538 || ((widget_value *) selected_item)->call_data == 0)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2539 && !next_release_must_exit
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2540 && (ev->xbutton.time - menu_post_event.xbutton.time
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2541 < XtGetMultiClickTime (XtDisplay (w))))
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2542 return;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2543
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2544 /* pop down everything. */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2545 mw->menu.new_depth = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2546 remap_menubar (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2547
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2548 if (mw->menu.popped_up)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2549 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2550 mw->menu.popped_up = False;
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2551 ungrab_all ((Widget)mw, ev->xmotion.time);
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2552 if (XtIsShell (XtParent ((Widget) mw)))
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2553 XtPopdown (XtParent ((Widget) mw));
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2554 else
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2555 {
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2556 XtRemoveGrab ((Widget) mw);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2557 display_menu (mw, 0, False, NULL, NULL, NULL);
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2558 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2559 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2560
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2561 /* callback */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2562 XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)selected_item);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2563 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2564
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2565
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2566 /* Special code to pop-up a menu */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2567 static void
109123
384b3408c143 Convert function definitions in lwlib files to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 109100
diff changeset
2568 pop_up_menu (XlwMenuWidget mw, XButtonPressedEvent *event)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2569 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2570 int x = event->x_root;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2571 int y = event->y_root;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2572 int w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2573 int h;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2574 int borderwidth = mw->menu.shadow_thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2575 Screen* screen = XtScreen (mw);
9700
d09dc2f44ecb (pop_up_menu): Pass a Display * to x_catch_errors, etc.
Richard M. Stallman <rms@gnu.org>
parents: 9395
diff changeset
2576 Display *display = XtDisplay (mw);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2577
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2578 next_release_must_exit = 0;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2579
75018
d263801b3ca8 (xlwMenuResources): Add XtNleaveCallback, XtNenterCallback.
Jan Djärv <jan.h.d@swipnet.se>
parents: 70850
diff changeset
2580 mw->menu.inside_entry = NULL;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2581 XtCallCallbackList ((Widget)mw, mw->menu.open, NULL);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2582
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2583 if (XtIsShell (XtParent ((Widget)mw)))
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2584 size_menu (mw, 0);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2585
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2586 w = mw->menu.windows [0].width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2587 h = mw->menu.windows [0].height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2588
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2589 x -= borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2590 y -= borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2591 if (x < borderwidth)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2592 x = borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2593 if (x + w + 2 * borderwidth > WidthOfScreen (screen))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2594 x = WidthOfScreen (screen) - w - 2 * borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2595 if (y < borderwidth)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2596 y = borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2597 if (y + h + 2 * borderwidth> HeightOfScreen (screen))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2598 y = HeightOfScreen (screen) - h - 2 * borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2599
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2600 mw->menu.popped_up = True;
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2601 if (XtIsShell (XtParent ((Widget)mw)))
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2602 {
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2603 XtConfigureWidget (XtParent ((Widget)mw), x, y, w, h,
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2604 XtParent ((Widget)mw)->core.border_width);
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2605 XtPopup (XtParent ((Widget)mw), XtGrabExclusive);
107886
9a798edc503b Don't redraw lucid menus more than needed. Use double buffer to reduce flicker.
Jan D <jan.h.d@swipnet.se>
parents: 107873
diff changeset
2606 display_menu (mw, 0, False, NULL, NULL, NULL);
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2607 mw->menu.windows [0].x = x + borderwidth;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2608 mw->menu.windows [0].y = y + borderwidth;
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2609 mw->menu.top_depth = 1; /* Popup menus don't have a bar so top is 1 */
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2610 }
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2611 else
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2612 {
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2613 XEvent *ev = (XEvent *) event;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2614
9092
0033f98d2ffd Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents: 9086
diff changeset
2615 XtAddGrab ((Widget) mw, True, True);
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2616
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2617 /* notes the absolute position of the menubar window */
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2618 mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2619 mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y;
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2620 mw->menu.top_depth = 2;
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2621 }
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2622
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2623 #ifdef emacs
70850
b90abedf3b79 * xlwmenu.c: Include xterm.h if emacs instead of declaring functions
Jan Djärv <jan.h.d@swipnet.se>
parents: 68640
diff changeset
2624 x_catch_errors (display);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2625 #endif
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2626 if (XtGrabPointer ((Widget)mw, False,
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2627 (PointerMotionMask
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2628 | PointerMotionHintMask
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2629 | ButtonReleaseMask
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2630 | ButtonPressMask),
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2631 GrabModeAsync, GrabModeAsync, None,
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2632 mw->menu.cursor_shape,
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2633 event->time) == Success)
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2634 {
44931
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
2635 if (! GRAB_KEYBOARD
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2636 || XtGrabKeyboard ((Widget)mw, False, GrabModeAsync,
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2637 GrabModeAsync, event->time) == Success)
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2638 {
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2639 XtSetKeyboardFocus((Widget)mw, None);
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2640 pointer_grabbed = 1;
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2641 }
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2642 else
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2643 XtUngrabPointer ((Widget)mw, event->time);
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2644 }
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2645
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2646 #ifdef emacs
9700
d09dc2f44ecb (pop_up_menu): Pass a Display * to x_catch_errors, etc.
Richard M. Stallman <rms@gnu.org>
parents: 9395
diff changeset
2647 if (x_had_errors_p (display))
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2648 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2649 pointer_grabbed = 0;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2650 XtUngrabPointer ((Widget)mw, event->time);
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2651 }
70850
b90abedf3b79 * xlwmenu.c: Include xterm.h if emacs instead of declaring functions
Jan Djärv <jan.h.d@swipnet.se>
parents: 68640
diff changeset
2652 x_uncatch_errors ();
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2653 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2654
70850
b90abedf3b79 * xlwmenu.c: Include xterm.h if emacs instead of declaring functions
Jan Djärv <jan.h.d@swipnet.se>
parents: 68640
diff changeset
2655 ((XMotionEvent*)event)->is_hint = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2656 handle_motion_event (mw, (XMotionEvent*)event);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2657 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51143
diff changeset
2658
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51143
diff changeset
2659 /* arch-tag: 657f43dd-dfd0-4cc9-910c-52935f01176e
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51143
diff changeset
2660 (do not change this comment) */