4 #include <X11/Intrinsic.h>
7 ** Widget values depend on the Widget type:
9 ** widget: (name value key enabled data contents/selected)
11 ** label: ("name" "string" NULL NULL NULL NULL)
12 ** button: ("name" "string" "key" T/F data <default-button-p>)
14 ** ("name" "string" "key" T/F data (label|button|button w/menu...))
15 ** menubar: ("name" NULL NULL T/F data (button w/menu))
17 ** ("name" "string" "key" T/F data T/F)
18 ** checkbox: selectable thing
19 ** radio: ("name" NULL NULL T/F data (selectable thing...))
20 ** strings: ("name" NULL NULL T/F data (selectable thing...))
21 ** text: ("name" "string" <ign> T/F data)
25 typedef unsigned long LWLIB_ID
;
27 typedef enum _change_type
35 typedef struct _widget_value
39 /* value (meaning depend on widget type) */
41 /* keyboard equivalent. no implications for XtTranslations */
45 /* true if selected */
47 /* true if was edited (maintained by get_value) */
49 /* true if has changed (maintained by lw library) */
51 /* true if this widget itself has changed,
52 but not counting the other widgets found in the `next' field. */
53 change_type this_one_change
;
54 /* Contents of the sub-widgets, also selected slot for checkbox */
55 struct _widget_value
* contents
;
56 /* data passed to callback */
58 /* next one in the list */
59 struct _widget_value
* next
;
60 /* slot for the toolkit dependent part. Always initialize to NULL. */
62 /* tell us if we should free the toolkit data slot when freeing the
63 widget_value itself. */
64 Boolean free_toolkit_data
;
66 /* we resource the widget_value structures; this points to the next
67 one on the free list if this one has been deallocated.
69 struct _widget_value
*free_list
;
73 typedef void (*lw_callback
) (/* Widget w, LWLIB_ID id, void* data */);
75 void lw_register_widget (/* char* type, char* name, LWLIB_ID id,
76 widget_value* val, lw_callback pre_activate_cb,
77 lw_callback selection_cb,
78 lw_callback post_activate_cb */);
79 Widget
lw_get_widget (/* LWLIB_ID id, Widget parent, Boolean pop_up_p */);
80 Widget
lw_make_widget (/* LWLIB_ID id, Widget parent, Boolean pop_up_p */);
81 Widget
lw_create_widget (/* char* type, char* name, LWLIB_ID id,
82 widget_value* val, Widget parent, Boolean pop_up_p,
83 lw_callback pre_activate_cb,
84 lw_callback selection_cb,
85 lw_callback post_activate_cb */);
86 LWLIB_ID
lw_get_widget_id (/* Widget w */);
87 void lw_modify_all_widgets (/* LWLIB_ID id, widget_value* val, Boolean deep_p */);
88 void lw_destroy_widget (/* Widget w */);
89 void lw_destroy_all_widgets (/* LWLIB_ID id */);
90 void lw_destroy_everything (/* void */);
91 void lw_destroy_all_pop_ups (/* void */);
92 Widget
lw_raise_all_pop_up_widgets (/* void */);
93 widget_value
* lw_get_all_values (/* LWLIB_ID id */);
94 Boolean
lw_get_some_values (/* LWLIB_ID id, widget_value* val */);
95 void lw_pop_up_all_widgets (/* LWLIB_ID id */);
96 void lw_pop_down_all_widgets (/* LWLIB_ID id */);
97 widget_value
*malloc_widget_value ();
98 void free_widget_value (/* widget_value * */);
99 void lw_popup_menu (/* Widget */);
101 /* Toolkit independent way of focusing on a Widget at the Xt level. */
102 void lw_set_keyboard_focus (/* Widget parent, Widget w */);
104 /* Silly Energize hack to invert the "sheet" button */
105 void lw_show_busy (/* Widget w, Boolean busy */);
107 /* Silly hack to assist with Lucid/Athena geometry management. */
108 void lw_refigure_widget (/* Widget w, Boolean doit */);
110 /* Toolkit independent way of determining if an event occurred on a
112 Boolean
lw_window_is_in_menubar (/* Window win, Widget menubar_widget */);
114 /* Manage resizing: TRUE permits resizing widget w; FALSE disallows it. */
115 void lw_allow_resizing (/* Widget w, Boolean flag */);
117 /* Set up the main window. */
118 void lw_set_main_areas (/* Widget parent,
120 Widget work_area */);