1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #ifndef LWLIB_XM_H
20 #define LWLIB_XM_H
21
22 #include "lwlib-int.h"
23
24 extern widget_creation_entry xm_creation_table [];
25
26 Widget
27 xm_create_dialog (widget_instance* instance);
28
29 Boolean
30 lw_motif_widget_p (Widget widget);
31
32 void
33 xm_update_one_widget (widget_instance* instance, Widget widget,
34 widget_value* val, Boolean deep_p);
35
36 void
37 xm_update_one_value (widget_instance* instance, Widget widget,
38 widget_value* val);
39
40 void
41 xm_destroy_instance (widget_instance* instance);
42
43 void
44 xm_set_keyboard_focus (Widget parent, Widget w);
45
46 void
47 xm_popup_menu (Widget widget, XEvent *event);
48
49 void
50 xm_pop_instance (widget_instance* instance, Boolean up);
51
52 void
53 xm_set_main_areas (Widget parent, Widget menubar, Widget work_area);
54
55 void
56 xm_manage_resizing (Widget w, Boolean flag);
57
58 #endif