Mercurial > emacs
annotate lwlib/xlwmenuP.h @ 54703:42c61598ee66
(SINGLE_BYTE_CHAR_P): Fix macro to avoid warnings from GCC.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sun, 04 Apr 2004 21:00:49 +0000 |
parents | 609ef1718642 |
children | 597c62d04dec |
rev | line source |
---|---|
7359 | 1 #ifndef _XlwMenuP_h |
2 #define _XlwMenuP_h | |
3 | |
4 #include "xlwmenu.h" | |
5 #include <X11/CoreP.h> | |
6 | |
7 /* Elements in the stack arrays. */ | |
8 typedef struct _window_state | |
9 { | |
10 Window window; | |
11 Position x; | |
12 Position y; | |
13 Dimension width; | |
14 Dimension height; | |
15 Dimension label_width; | |
25033
584c34c7cf53
(_window_state): Add button_width.
Gerd Moellmann <gerd@gnu.org>
parents:
7360
diff
changeset
|
16 |
584c34c7cf53
(_window_state): Add button_width.
Gerd Moellmann <gerd@gnu.org>
parents:
7360
diff
changeset
|
17 /* Width of toggle buttons or radio buttons. */ |
584c34c7cf53
(_window_state): Add button_width.
Gerd Moellmann <gerd@gnu.org>
parents:
7360
diff
changeset
|
18 Dimension button_width; |
7359 | 19 } window_state; |
20 | |
21 | |
22 /* New fields for the XlwMenu widget instance record */ | |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
23 typedef struct _XlwMenu_part |
7359 | 24 { |
25 /* slots set by the resources */ | |
26 XFontStruct* font; | |
7360 | 27 Pixel foreground; |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
28 Pixel disabled_foreground; |
7359 | 29 Pixel button_foreground; |
30 Dimension margin; | |
31 Dimension horizontal_spacing; | |
32 Dimension vertical_spacing; | |
33 Dimension arrow_spacing; | |
34 Dimension shadow_thickness; | |
35 Pixel top_shadow_color; | |
36 Pixel bottom_shadow_color; | |
37 Pixmap top_shadow_pixmap; | |
38 Pixmap bottom_shadow_pixmap; | |
7360 | 39 Cursor cursor_shape; |
7359 | 40 XtCallbackList open; |
27340
1d84a7873d7c
(_XlwMenu_part): Add `highlight' callback list.
Gerd Moellmann <gerd@gnu.org>
parents:
25033
diff
changeset
|
41 XtCallbackList select, highlight; |
7359 | 42 widget_value* contents; |
43 int horizontal; | |
29699
bb36becbd66b
(_XlwMenu_part): Add free_top_shadow_color_p and
Gerd Moellmann <gerd@gnu.org>
parents:
27340
diff
changeset
|
44 |
bb36becbd66b
(_XlwMenu_part): Add free_top_shadow_color_p and
Gerd Moellmann <gerd@gnu.org>
parents:
27340
diff
changeset
|
45 /* True means top_shadow_color and/or bottom_shadow_color must be freed. */ |
bb36becbd66b
(_XlwMenu_part): Add free_top_shadow_color_p and
Gerd Moellmann <gerd@gnu.org>
parents:
27340
diff
changeset
|
46 unsigned free_top_shadow_color_p : 1; |
bb36becbd66b
(_XlwMenu_part): Add free_top_shadow_color_p and
Gerd Moellmann <gerd@gnu.org>
parents:
27340
diff
changeset
|
47 unsigned free_bottom_shadow_color_p : 1; |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
48 |
7359 | 49 /* State of the XlwMenu */ |
53564
609ef1718642
Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents:
52401
diff
changeset
|
50 int top_depth; |
7359 | 51 int old_depth; |
52 widget_value** old_stack; | |
53 int old_stack_length; | |
54 | |
55 /* New state after the user moved */ | |
56 int new_depth; | |
57 widget_value** new_stack; | |
58 int new_stack_length; | |
59 | |
60 /* Window resources */ | |
61 window_state* windows; | |
62 int windows_length; | |
63 | |
64 /* Internal part, set by the XlwMenu */ | |
65 GC foreground_gc; | |
66 GC button_gc; | |
67 GC background_gc; | |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
68 GC disabled_gc; |
7359 | 69 GC inactive_button_gc; |
70 GC shadow_top_gc; | |
71 GC shadow_bottom_gc; | |
72 Cursor cursor; | |
73 Boolean popped_up; | |
74 Pixmap gray_pixmap; | |
75 } XlwMenuPart; | |
76 | |
77 /* Full instance record declaration */ | |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
78 typedef struct _XlwMenuRec |
7359 | 79 { |
80 CorePart core; | |
81 XlwMenuPart menu; | |
82 } XlwMenuRec; | |
83 | |
84 /* New fields for the XlwMenu widget class record */ | |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
85 typedef struct |
7359 | 86 { |
87 int dummy; | |
88 } XlwMenuClassPart; | |
89 | |
90 /* Full class record declaration. */ | |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
91 typedef struct _XlwMenuClassRec |
7359 | 92 { |
93 CoreClassPart core_class; | |
94 XlwMenuClassPart menu_class; | |
95 } XlwMenuClassRec; | |
96 | |
97 /* Class pointer. */ | |
98 extern XlwMenuClassRec xlwMenuClassRec; | |
99 | |
100 #endif /* _XlwMenuP_h */ | |
52401 | 101 |
102 /* arch-tag: 18d7fc41-ffa0-47a3-a49f-3469900c7a25 | |
103 (do not change this comment) */ |