Mercurial > emacs
annotate lwlib/lwlib.h @ 20892:18f3cb26243f before-miles-orphaned-changes gcc-2_8_1-980401 gcc-2_8_1-980407 gcc-2_8_1-980412 gcc-2_8_1-980413 gcc-2_8_1-RELEASE gcc_2_8_1-980315 libc-980214 libc-980215 libc-980216 libc-980217 libc-980218 libc-980219 libc-980220 libc-980221 libc-980222 libc-980223 libc-980224 libc-980225 libc-980226 libc-980227 libc-980228 libc-980301 libc-980302 libc-980303 libc-980304 libc-980306 libc-980307 libc-980308 libc-980309 libc-980310 libc-980311 libc-980312 libc-980313 libc-980314 libc-980315 libc-980316 libc-980317 libc-980318 libc-980319 libc-980320 libc-980321 libc-980322 libc-980323 libc-980324 libc-980325 libc-980326 libc-980327 libc-980328 libc-980329 libc-980330 libc-980331 libc-980401 libc-980402 libc-980403 libc-980404 libc-980405 libc-980406 libc-980407 libc-980408 libc-980409 libc-980410 libc-980411 libc-980412 libc-980413 libc-980414 libc-980428 libc-980429 libc-980430 libc-980501 libc-980502 libc-980503 libc-980504 libc-980505 libc-980506 libc-980507 libc-980508 libc-980509 libc-980510 libc-980512 libc-980513 libc-980514 libc-980515 libc-980516 libc-980517 libc-980518 libc-980519 libc-980520 libc-980521 libc-980522 libc-980523 libc-980524 libc-980525 libc-980526 libc-980527 libc-980528 libc-980529 libc-980530 libc-980531 libc-980601 libc-980602 libc-980603 libc-980604 libc-980605 libc-980606 libc-980607 libc-980608 libc-980609 libc-980610 libc-980611 libc-980612 libc-980613
Add PentiumII (i786). Add '7' to all i[3456] entries.
Add AMD and Cyrix names for P5 and P6.
author | Richard Kenner <kenner@gnu.org> |
---|---|
date | Fri, 13 Feb 1998 12:16:46 +0000 |
parents | de5c3eda52fc |
children | d8d30f76cc61 |
rev | line source |
---|---|
5626 | 1 #ifndef LWLIB_H |
2 #define LWLIB_H | |
3 | |
4 #include <X11/Intrinsic.h> | |
5 | |
6 /* | |
7 ** Widget values depend on the Widget type: | |
8 ** | |
9 ** widget: (name value key enabled data contents/selected) | |
10 ** | |
11 ** label: ("name" "string" NULL NULL NULL NULL) | |
12 ** button: ("name" "string" "key" T/F data <default-button-p>) | |
13 ** button w/menu: | |
14 ** ("name" "string" "key" T/F data (label|button|button w/menu...)) | |
15 ** menubar: ("name" NULL NULL T/F data (button w/menu)) | |
16 ** selectable thing: | |
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) | |
8784 | 22 ** main: ("name") |
5626 | 23 */ |
24 | |
25 typedef unsigned long LWLIB_ID; | |
26 | |
27 typedef enum _change_type | |
28 { | |
29 NO_CHANGE = 0, | |
30 INVISIBLE_CHANGE = 1, | |
31 VISIBLE_CHANGE = 2, | |
32 STRUCTURAL_CHANGE = 3 | |
33 } change_type; | |
34 | |
35 typedef struct _widget_value | |
36 { | |
37 /* name of widget */ | |
38 char* name; | |
39 /* value (meaning depend on widget type) */ | |
40 char* value; | |
41 /* keyboard equivalent. no implications for XtTranslations */ | |
42 char* key; | |
43 /* true if enabled */ | |
44 Boolean enabled; | |
45 /* true if selected */ | |
46 Boolean selected; | |
47 /* true if was edited (maintained by get_value) */ | |
48 Boolean edited; | |
49 /* true if has changed (maintained by lw library) */ | |
50 change_type change; | |
14878
487b03096cc5
(struct widget_value): New field this_one_change.
Richard M. Stallman <rms@gnu.org>
parents:
14018
diff
changeset
|
51 /* true if this widget itself has changed, |
487b03096cc5
(struct widget_value): New field this_one_change.
Richard M. Stallman <rms@gnu.org>
parents:
14018
diff
changeset
|
52 but not counting the other widgets found in the `next' field. */ |
487b03096cc5
(struct widget_value): New field this_one_change.
Richard M. Stallman <rms@gnu.org>
parents:
14018
diff
changeset
|
53 change_type this_one_change; |
5626 | 54 /* Contents of the sub-widgets, also selected slot for checkbox */ |
55 struct _widget_value* contents; | |
56 /* data passed to callback */ | |
57 XtPointer call_data; | |
58 /* next one in the list */ | |
59 struct _widget_value* next; | |
60 /* slot for the toolkit dependent part. Always initialize to NULL. */ | |
61 void* toolkit_data; | |
62 /* tell us if we should free the toolkit data slot when freeing the | |
63 widget_value itself. */ | |
64 Boolean free_toolkit_data; | |
65 | |
66 /* we resource the widget_value structures; this points to the next | |
67 one on the free list if this one has been deallocated. | |
68 */ | |
69 struct _widget_value *free_list; | |
70 } widget_value; | |
71 | |
72 | |
8784 | 73 typedef void (*lw_callback) (/* Widget w, LWLIB_ID id, void* data */); |
5626 | 74 |
8784 | 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 */); | |
5626 | 97 widget_value *malloc_widget_value (); |
8784 | 98 void free_widget_value (/* widget_value * */); |
99 void lw_popup_menu (/* Widget */); | |
5626 | 100 |
101 /* Toolkit independent way of focusing on a Widget at the Xt level. */ | |
8784 | 102 void lw_set_keyboard_focus (/* Widget parent, Widget w */); |
5626 | 103 |
104 /* Silly Energize hack to invert the "sheet" button */ | |
8784 | 105 void lw_show_busy (/* Widget w, Boolean busy */); |
106 | |
107 /* Silly hack to assist with Lucid/Athena geometry management. */ | |
14018 | 108 void lw_refigure_widget (/* Widget w, Boolean doit */); |
8784 | 109 |
110 /* Toolkit independent way of determining if an event occurred on a | |
111 menubar. */ | |
112 Boolean lw_window_is_in_menubar (/* Window win, Widget menubar_widget */); | |
113 | |
114 /* Manage resizing: TRUE permits resizing widget w; FALSE disallows it. */ | |
115 void lw_allow_resizing (/* Widget w, Boolean flag */); | |
5626 | 116 |
9064 | 117 /* Set up the main window. */ |
118 void lw_set_main_areas (/* Widget parent, | |
119 Widget menubar, | |
120 Widget work_area */); | |
121 | |
5626 | 122 #endif /* LWLIB_H */ |