Use common memory management functions for lwlib and refactor users.
[bpt/emacs.git] / lwlib / lwlib.h
CommitLineData
32c92352
GM
1/*
2Copyright (C) 1992, 1993 Lucid, Inc.
ba318903 3Copyright (C) 1994, 1999-2014 Free Software Foundation, Inc.
32c92352
GM
4
5This file is part of the Lucid Widget Library.
6
7The Lucid Widget Library is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 1, or (at your option)
10any later version.
11
12The Lucid Widget Library is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
fee0bd5f 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
32c92352
GM
19
20
07bf635f
RS
21#ifndef LWLIB_H
22#define LWLIB_H
23
24#include <X11/Intrinsic.h>
25
26/*
27** Widget values depend on the Widget type:
177c0ea7 28**
07bf635f
RS
29** widget: (name value key enabled data contents/selected)
30**
31** label: ("name" "string" NULL NULL NULL NULL)
32** button: ("name" "string" "key" T/F data <default-button-p>)
177c0ea7 33** button w/menu:
07bf635f
RS
34** ("name" "string" "key" T/F data (label|button|button w/menu...))
35** menubar: ("name" NULL NULL T/F data (button w/menu))
36** selectable thing:
37** ("name" "string" "key" T/F data T/F)
38** checkbox: selectable thing
39** radio: ("name" NULL NULL T/F data (selectable thing...))
40** strings: ("name" NULL NULL T/F data (selectable thing...))
41** text: ("name" "string" <ign> T/F data)
dfdcaf49 42** main: ("name")
07bf635f
RS
43*/
44
45typedef unsigned long LWLIB_ID;
46
47typedef enum _change_type
48{
49 NO_CHANGE = 0,
50 INVISIBLE_CHANGE = 1,
51 VISIBLE_CHANGE = 2,
52 STRUCTURAL_CHANGE = 3
53} change_type;
54
cedccd2e
GM
55enum button_type
56{
57 BUTTON_TYPE_NONE,
58 BUTTON_TYPE_TOGGLE,
59 BUTTON_TYPE_RADIO
60};
61
62/* Menu separator types. */
63
64enum menu_separator
65{
66 /* These values are Motif compatible. */
67 SEPARATOR_NO_LINE,
68 SEPARATOR_SINGLE_LINE,
69 SEPARATOR_DOUBLE_LINE,
70 SEPARATOR_SINGLE_DASHED_LINE,
71 SEPARATOR_DOUBLE_DASHED_LINE,
72 SEPARATOR_SHADOW_ETCHED_IN,
73 SEPARATOR_SHADOW_ETCHED_OUT,
74 SEPARATOR_SHADOW_ETCHED_IN_DASH,
75 SEPARATOR_SHADOW_ETCHED_OUT_DASH,
76
0591102a 77 /* The following are supported by Lucid menus. */
cedccd2e
GM
78 SEPARATOR_SHADOW_DOUBLE_ETCHED_IN,
79 SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT,
80 SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH,
81 SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH
82};
83
07bf635f
RS
84typedef struct _widget_value
85{
86 /* name of widget */
05bdae44 87 Lisp_Object lname;
07bf635f
RS
88 char* name;
89 /* value (meaning depend on widget type) */
90 char* value;
177c0ea7 91 /* keyboard equivalent. no implications for XtTranslations */
05bdae44 92 Lisp_Object lkey;
07bf635f 93 char* key;
0591102a
RS
94 /* Help string or nil if none.
95 GC finds this string through the frame's menu_bar_vector
96 or through menu_items. */
97 Lisp_Object help;
07bf635f
RS
98 /* true if enabled */
99 Boolean enabled;
100 /* true if selected */
101 Boolean selected;
102 /* true if was edited (maintained by get_value) */
103 Boolean edited;
cedccd2e
GM
104 /* The type of a button. */
105 enum button_type button_type;
07bf635f
RS
106 /* true if has changed (maintained by lw library) */
107 change_type change;
63e9d970
RS
108 /* true if this widget itself has changed,
109 but not counting the other widgets found in the `next' field. */
110 change_type this_one_change;
07bf635f
RS
111 /* Contents of the sub-widgets, also selected slot for checkbox */
112 struct _widget_value* contents;
113 /* data passed to callback */
114 XtPointer call_data;
115 /* next one in the list */
116 struct _widget_value* next;
117 /* slot for the toolkit dependent part. Always initialize to NULL. */
118 void* toolkit_data;
119 /* tell us if we should free the toolkit data slot when freeing the
120 widget_value itself. */
121 Boolean free_toolkit_data;
07bf635f
RS
122} widget_value;
123
124
383e0970
J
125typedef void (*lw_callback) (Widget w, LWLIB_ID id, void* data);
126
a953c1e3 127void lw_register_widget (const char* type, const char* name, LWLIB_ID id,
383e0970
J
128 widget_value* val, lw_callback pre_activate_cb,
129 lw_callback selection_cb,
130 lw_callback post_activate_cb,
131 lw_callback highlight_cb);
132Widget lw_get_widget (LWLIB_ID id, Widget parent, Boolean pop_up_p);
133Widget lw_make_widget (LWLIB_ID id, Widget parent, Boolean pop_up_p);
a953c1e3 134Widget lw_create_widget (const char* type, const char* name, LWLIB_ID id,
383e0970
J
135 widget_value* val, Widget parent, Boolean pop_up_p,
136 lw_callback pre_activate_cb,
137 lw_callback selection_cb,
138 lw_callback post_activate_cb,
139 lw_callback highlight_cb);
140LWLIB_ID lw_get_widget_id (Widget w);
141int lw_modify_all_widgets (LWLIB_ID id, widget_value* val, Boolean deep_p);
142void lw_destroy_widget (Widget w);
143void lw_destroy_all_widgets (LWLIB_ID id);
144void lw_destroy_everything (void);
145void lw_destroy_all_pop_ups (void);
146Widget lw_raise_all_pop_up_widgets (void);
147widget_value* lw_get_all_values (LWLIB_ID id);
148Boolean lw_get_some_values (LWLIB_ID id, widget_value* val);
149void lw_pop_up_all_widgets (LWLIB_ID id);
150void lw_pop_down_all_widgets (LWLIB_ID id);
383e0970 151void lw_popup_menu (Widget, XEvent *);
07bf635f
RS
152
153/* Toolkit independent way of focusing on a Widget at the Xt level. */
383e0970 154void lw_set_keyboard_focus (Widget parent, Widget w);
07bf635f
RS
155
156/* Silly Energize hack to invert the "sheet" button */
383e0970 157void lw_show_busy (Widget w, Boolean busy);
dfdcaf49
PR
158
159/* Silly hack to assist with Lucid/Athena geometry management. */
383e0970 160void lw_refigure_widget (Widget w, Boolean doit);
dfdcaf49
PR
161
162/* Toolkit independent way of determining if an event occurred on a
163 menubar. */
383e0970 164Boolean lw_window_is_in_menubar (Window win, Widget menubar_widget);
dfdcaf49
PR
165
166/* Manage resizing: TRUE permits resizing widget w; FALSE disallows it. */
1d71c1d9
PE
167#ifndef USE_MOTIF
168ATTRIBUTE_CONST
169#endif
383e0970 170void lw_allow_resizing (Widget w, Boolean flag);
07bf635f 171
11bcd7d4 172/* Set up the main window. */
1d71c1d9
PE
173#ifndef USE_MOTIF
174ATTRIBUTE_CONST
175#endif
383e0970
J
176void lw_set_main_areas (Widget parent,
177 Widget menubar,
178 Widget work_area);
11bcd7d4 179
cedccd2e
GM
180/* Value is non-zero if LABEL is a menu separator. If it is, *TYPE is
181 set to an appropriate enumerator of type enum menu_separator.
182 MOTIF_P non-zero means map separator types not supported by Motif
183 to similar ones that are supported. */
184
d6dcbe70 185int lw_separator_p (const char *label, enum menu_separator *type,
383e0970 186 int motif_p);
99570665 187
07bf635f 188#endif /* LWLIB_H */