Mercurial > emacs
annotate lwlib/xlwmenuP.h @ 75656:53b659cf6a99
*** empty log message ***
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 03 Feb 2007 22:04:06 +0000 |
parents | 6d19c76d81c5 |
children | 669c1591727d 95d0cdf160ea |
rev | line source |
---|---|
60584
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
1 /* Internals of a lightweight menubar widget. |
75250
6d19c76d81c5
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
75017
diff
changeset
|
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, |
6d19c76d81c5
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
75017
diff
changeset
|
3 2005, 2006, 2007 Free Software Foundation, Inc. |
60584
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
4 |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
5 This file is part of the Lucid Widget Library. |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
6 |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
7 The Lucid Widget Library is free software; you can redistribute it and/or |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
8 modify it under the terms of the GNU General Public License as published by |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
10 any later version. |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
11 |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
12 The Lucid Widget Library is distributed in the hope that it will be useful, |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
15 GNU General Public License for more details. |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
16 |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
17 You should have received a copy of the GNU General Public License |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
18 along with GNU Emacs; see the file COPYING. If not, write to the |
64083 | 19 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 Boston, MA 02110-1301, USA. */ | |
60584
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
21 |
7359 | 22 #ifndef _XlwMenuP_h |
23 #define _XlwMenuP_h | |
24 | |
25 #include "xlwmenu.h" | |
26 #include <X11/CoreP.h> | |
27 | |
28 /* Elements in the stack arrays. */ | |
29 typedef struct _window_state | |
30 { | |
31 Window window; | |
32 Position x; | |
33 Position y; | |
34 Dimension width; | |
35 Dimension height; | |
36 Dimension label_width; | |
25033
584c34c7cf53
(_window_state): Add button_width.
Gerd Moellmann <gerd@gnu.org>
parents:
7360
diff
changeset
|
37 |
584c34c7cf53
(_window_state): Add button_width.
Gerd Moellmann <gerd@gnu.org>
parents:
7360
diff
changeset
|
38 /* Width of toggle buttons or radio buttons. */ |
584c34c7cf53
(_window_state): Add button_width.
Gerd Moellmann <gerd@gnu.org>
parents:
7360
diff
changeset
|
39 Dimension button_width; |
7359 | 40 } window_state; |
41 | |
42 | |
43 /* 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
|
44 typedef struct _XlwMenu_part |
7359 | 45 { |
46 /* slots set by the resources */ | |
60698
3e557e11645e
Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60584
diff
changeset
|
47 #ifdef HAVE_X_I18N |
61210
0eb69e12c16d
* xlwmenuP.h (_XlwMenu_part): Add fontSet resource.
Jan Djärv <jan.h.d@swipnet.se>
parents:
60829
diff
changeset
|
48 XFontSet fontSet; |
60698
3e557e11645e
Add support for I18N to Lucid menus.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60584
diff
changeset
|
49 XFontSetExtents *font_extents; |
61210
0eb69e12c16d
* xlwmenuP.h (_XlwMenu_part): Add fontSet resource.
Jan Djärv <jan.h.d@swipnet.se>
parents:
60829
diff
changeset
|
50 #endif |
7359 | 51 XFontStruct* font; |
7360 | 52 Pixel foreground; |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
53 Pixel disabled_foreground; |
7359 | 54 Pixel button_foreground; |
55 Dimension margin; | |
56 Dimension horizontal_spacing; | |
57 Dimension vertical_spacing; | |
58 Dimension arrow_spacing; | |
59 Dimension shadow_thickness; | |
60 Pixel top_shadow_color; | |
61 Pixel bottom_shadow_color; | |
62 Pixmap top_shadow_pixmap; | |
63 Pixmap bottom_shadow_pixmap; | |
7360 | 64 Cursor cursor_shape; |
7359 | 65 XtCallbackList open; |
27340
1d84a7873d7c
(_XlwMenu_part): Add `highlight' callback list.
Gerd Moellmann <gerd@gnu.org>
parents:
25033
diff
changeset
|
66 XtCallbackList select, highlight; |
75017
977e9b2fe72d
(_XlwMenu_part): Add enter/leave callbacks and
Jan Djärv <jan.h.d@swipnet.se>
parents:
68640
diff
changeset
|
67 XtCallbackList enter, leave; |
7359 | 68 widget_value* contents; |
69 int horizontal; | |
29699
bb36becbd66b
(_XlwMenu_part): Add free_top_shadow_color_p and
Gerd Moellmann <gerd@gnu.org>
parents:
27340
diff
changeset
|
70 |
bb36becbd66b
(_XlwMenu_part): Add free_top_shadow_color_p and
Gerd Moellmann <gerd@gnu.org>
parents:
27340
diff
changeset
|
71 /* 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
|
72 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
|
73 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
|
74 |
7359 | 75 /* 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
|
76 int top_depth; |
7359 | 77 int old_depth; |
78 widget_value** old_stack; | |
79 int old_stack_length; | |
75017
977e9b2fe72d
(_XlwMenu_part): Add enter/leave callbacks and
Jan Djärv <jan.h.d@swipnet.se>
parents:
68640
diff
changeset
|
80 widget_value* inside_entry; |
7359 | 81 |
82 /* New state after the user moved */ | |
83 int new_depth; | |
84 widget_value** new_stack; | |
85 int new_stack_length; | |
86 | |
87 /* Window resources */ | |
88 window_state* windows; | |
89 int windows_length; | |
90 | |
91 /* Internal part, set by the XlwMenu */ | |
92 GC foreground_gc; | |
93 GC button_gc; | |
94 GC background_gc; | |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
95 GC disabled_gc; |
7359 | 96 GC inactive_button_gc; |
97 GC shadow_top_gc; | |
98 GC shadow_bottom_gc; | |
99 Cursor cursor; | |
100 Boolean popped_up; | |
101 Pixmap gray_pixmap; | |
102 } XlwMenuPart; | |
103 | |
104 /* Full instance record declaration */ | |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
105 typedef struct _XlwMenuRec |
7359 | 106 { |
107 CorePart core; | |
108 XlwMenuPart menu; | |
109 } XlwMenuRec; | |
110 | |
111 /* 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
|
112 typedef struct |
7359 | 113 { |
114 int dummy; | |
115 } XlwMenuClassPart; | |
116 | |
117 /* Full class record declaration. */ | |
45145
762469b26903
(_XlwMenu_part): Add new member `disabled_foreground'.
Pavel Janík <Pavel@Janik.cz>
parents:
29699
diff
changeset
|
118 typedef struct _XlwMenuClassRec |
7359 | 119 { |
120 CoreClassPart core_class; | |
121 XlwMenuClassPart menu_class; | |
122 } XlwMenuClassRec; | |
123 | |
124 /* Class pointer. */ | |
125 extern XlwMenuClassRec xlwMenuClassRec; | |
126 | |
127 #endif /* _XlwMenuP_h */ | |
52401 | 128 |
129 /* arch-tag: 18d7fc41-ffa0-47a3-a49f-3469900c7a25 | |
130 (do not change this comment) */ |