]> code.delx.au - gnu-emacs/blob - lwlib/lwlib-widget.h
Fix shr.el/image build problem
[gnu-emacs] / lwlib / lwlib-widget.h
1 /*
2 Copyright (C) 1992, 1993 Lucid, Inc.
3 Copyright (C) 1994, 1999-2016 Free Software Foundation, Inc.
4
5 This file is part of the Lucid Widget Library.
6
7 The Lucid Widget Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 1, or (at your option)
10 any later version.
11
12 The Lucid Widget Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* This part is separate from lwlib.h because it does not need X,
21 and thus can be used by non-X code in Emacs proper. */
22
23 #ifndef LWLIB_WIDGET_H
24 #define LWLIB_WIDGET_H
25
26 #include "../src/lisp.h"
27
28 typedef enum
29 {
30 NO_CHANGE = 0,
31 INVISIBLE_CHANGE = 1,
32 VISIBLE_CHANGE = 2,
33 STRUCTURAL_CHANGE = 3
34 } change_type;
35
36 enum button_type
37 {
38 BUTTON_TYPE_NONE,
39 BUTTON_TYPE_TOGGLE,
40 BUTTON_TYPE_RADIO
41 };
42
43 typedef struct _widget_value
44 {
45 /* Name of widget. */
46 Lisp_Object lname;
47 char *name;
48
49 /* Value (meaning depend on widget type). */
50 char *value;
51
52 /* Keyboard equivalent. no implications for XtTranslations. */
53 Lisp_Object lkey;
54 char *key;
55
56 /* Help string or nil if none.
57 GC finds this string through the frame's menu_bar_vector
58 or through menu_items. */
59 Lisp_Object help;
60
61 /* True if enabled. */
62 bool enabled;
63
64 /* True if selected. */
65 bool selected;
66
67 /* True if was edited (maintained by get_value). */
68 bool edited;
69
70 #ifdef HAVE_NTGUI
71 /* True if menu title. */
72 bool title;
73 #endif
74
75 /* The type of a button. */
76 enum button_type button_type;
77
78 /* Contents of the sub-widgets, also selected slot for checkbox. */
79 struct _widget_value *contents;
80
81 /* Data passed to callback. */
82 void *call_data;
83
84 /* Next one in the list. */
85 struct _widget_value *next;
86
87 #ifdef USE_X_TOOLKIT
88 /* Type of change (maintained by lw library). */
89 change_type change;
90
91 /* Type of this widget's change, but not counting the other widgets
92 found in the `next' field. */
93 change_type this_one_change;
94
95 /* Slot for the toolkit dependent part. Always initialize to NULL. */
96 void *toolkit_data;
97
98 /* Whether we should free the toolkit data slot when freeing the
99 widget_value itself. */
100 bool free_toolkit_data;
101 #endif
102
103 } widget_value;
104
105 #endif