annotate lwlib/lwlib-Xlw.c @ 163:0132846995bd r20-3b8

Import from CVS: tag r20-3b8
author cvs
date Mon, 13 Aug 2007 09:43:35 +0200
parents 6b37e6ddd302
children 5a88923fcbfe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* The lwlib interface to "xlwmenu" menus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1992, 1994 Lucid, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of the Lucid Widget Library.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 The Lucid Widget Library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 modify it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 The Lucid Widget Library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
19 Boston, MA 02111-1307, USA. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 80
diff changeset
21 #include <config.h>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 #include <stdlib.h> /* for abort () */
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 80
diff changeset
23 #ifdef HAVE_LIMITS_H
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #include <limits.h>
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 80
diff changeset
25 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "lwlib-Xlw.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include <X11/StringDefs.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include <X11/IntrinsicP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include <X11/ObjectP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <X11/CompositeP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include <X11/Shell.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #ifdef MENUBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "xlwmenu.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #ifdef SCROLLBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "xlwscrollbar.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #ifdef MENUBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* Menu callbacks */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 pre_hook (Widget w, XtPointer client_data, XtPointer call_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 widget_instance* instance = (widget_instance*)client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 widget_value* val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 if (w->core.being_destroyed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 val = lw_get_widget_value_for_widget (instance, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 /* #### - this code used to (for some random back_asswards reason) pass
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 the expression below in the call_data slot. For incremental menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 construction, this needs to go. I can't even figure out why it was done
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
60 this way in the first place...it's just a historical weirdism. --Stig */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 call_data = (val ? val->call_data : NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 if (val && val->call_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 abort(); /* #### - the call_data for the top_level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 "menubar" widget_value used to be passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 back to the pre_hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 if (instance->info->pre_activate_cb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 instance->info->pre_activate_cb (w, instance->info->id, call_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 pick_hook (Widget w, XtPointer client_data, XtPointer call_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 widget_instance* instance = (widget_instance*)client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 widget_value* contents_val = (widget_value*)call_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 widget_value* widget_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 XtPointer widget_arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 LWLIB_ID id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 lw_callback post_activate_cb;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 if (w->core.being_destroyed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 /* Grab these values before running any functions, in case running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 the selection_cb causes the widget to be destroyed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 id = instance->info->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 post_activate_cb = instance->info->post_activate_cb;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 widget_val = lw_get_widget_value_for_widget (instance, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 widget_arg = widget_val ? widget_val->call_data : NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 if (instance->info->selection_cb &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 contents_val &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 contents_val->enabled &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 !contents_val->contents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 instance->info->selection_cb (w, id, contents_val->call_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 if (post_activate_cb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 post_activate_cb (w, id, widget_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 /* creation functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 static Widget
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 xlw_create_menubar (widget_instance* instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 Widget widget =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 XtVaCreateWidget (instance->info->name, xlwMenuWidgetClass,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 instance->parent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 XtNmenu, instance->info->val,
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 157
diff changeset
113 NULL);
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
114 XtAddCallback (widget, XtNopen, pre_hook, (XtPointer)instance);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 XtAddCallback (widget, XtNselect, pick_hook, (XtPointer)instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 return widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 static Widget
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 xlw_create_popup_menu (widget_instance* instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 Widget popup_shell =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 XtCreatePopupShell (instance->info->name, overrideShellWidgetClass,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 instance->parent, NULL, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 Widget widget =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 XtVaCreateManagedWidget ("popup", xlwMenuWidgetClass,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 popup_shell,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 XtNmenu, instance->info->val,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 XtNhorizontal, False,
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 157
diff changeset
131 NULL);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 XtAddCallback (widget, XtNselect, pick_hook, (XtPointer)instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 return popup_shell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 #endif /* MENUBARS_LUCID */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 #ifdef SCROLLBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 xlw_scrollbar_callback (Widget widget, XtPointer closure, XtPointer call_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 widget_instance *instance = (widget_instance *) closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 LWLIB_ID id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 XlwScrollBarCallbackStruct *data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (XlwScrollBarCallbackStruct *) call_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 scroll_event event_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 scrollbar_values *val =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (scrollbar_values *) instance->info->val->scrollbar_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 double percent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 if (!instance || widget->core.being_destroyed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 id = instance->info->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 percent = (double) (data->value - 1) / (double) (INT_MAX - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 event_data.slider_value =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (int) (percent * (double) (val->maximum - val->minimum)) + val->minimum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
161 if (event_data.slider_value > val->maximum - val->slider_size)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
162 event_data.slider_value = val->maximum - val->slider_size;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 else if (event_data.slider_value < val->minimum)
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
164 event_data.slider_value = val->minimum;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 if (data->event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 {
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
168 switch (data->event->type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 case KeyPress:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 case KeyRelease:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 event_data.time = data->event->xkey.time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 case ButtonPress:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 case ButtonRelease:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 event_data.time = data->event->xbutton.time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 case MotionNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 event_data.time = data->event->xmotion.time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 case EnterNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 case LeaveNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 event_data.time = data->event->xcrossing.time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 event_data.time = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 event_data.time = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 switch (data->reason)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 {
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
195 case XmCR_DECREMENT: event_data.action = SCROLLBAR_LINE_UP; break;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
196 case XmCR_INCREMENT: event_data.action = SCROLLBAR_LINE_DOWN; break;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
197 case XmCR_PAGE_DECREMENT: event_data.action = SCROLLBAR_PAGE_UP; break;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
198 case XmCR_PAGE_INCREMENT: event_data.action = SCROLLBAR_PAGE_DOWN; break;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
199 case XmCR_TO_TOP: event_data.action = SCROLLBAR_TOP; break;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
200 case XmCR_TO_BOTTOM: event_data.action = SCROLLBAR_BOTTOM; break;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
201 case XmCR_DRAG: event_data.action = SCROLLBAR_DRAG; break;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
202 case XmCR_VALUE_CHANGED: event_data.action = SCROLLBAR_CHANGE; break;
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
203 default: event_data.action = SCROLLBAR_CHANGE; break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 if (instance->info->pre_activate_cb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 instance->info->pre_activate_cb (widget, id, (XtPointer) &event_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
210 #define add_scrollbar_callback(resource) \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
211 XtAddCallback (scrollbar, resource, xlw_scrollbar_callback, (XtPointer) instance)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
212
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 /* #### Does not yet support horizontal scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 static Widget
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 xlw_create_scrollbar (widget_instance *instance, int vertical)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 Arg al[20];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 int ac = 0;
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
219 static XtCallbackRec callbacks[2] =
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
220 { {xlw_scrollbar_callback, NULL}, {NULL, NULL} };
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
221
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
222 callbacks[0].closure = (XtPointer) instance;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
224 XtSetArg (al[ac], XmNminimum, 1); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
225 XtSetArg (al[ac], XmNmaximum, INT_MAX); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
226 XtSetArg (al[ac], XmNincrement, 1); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
227 XtSetArg (al[ac], XmNpageIncrement, 1); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
228 XtSetArg (al[ac], XmNorientation, (vertical ? XmVERTICAL : XmHORIZONTAL)); ac++;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
230 XtSetArg (al[ac], XmNdecrementCallback, callbacks); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
231 XtSetArg (al[ac], XmNdragCallback, callbacks); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
232 XtSetArg (al[ac], XmNincrementCallback, callbacks); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
233 XtSetArg (al[ac], XmNpageDecrementCallback, callbacks); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
234 XtSetArg (al[ac], XmNpageIncrementCallback, callbacks); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
235 XtSetArg (al[ac], XmNtoBottomCallback, callbacks); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
236 XtSetArg (al[ac], XmNtoTopCallback, callbacks); ac++;
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
237 XtSetArg (al[ac], XmNvalueChangedCallback, callbacks); ac++;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
239 return XtCreateWidget (instance->info->name, xlwScrollBarWidgetClass,
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
240 instance->parent, al, ac);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 static Widget
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 xlw_create_vertical_scrollbar (widget_instance *instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 return xlw_create_scrollbar (instance, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 static Widget
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 xlw_create_horizontal_scrollbar (widget_instance *instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 return xlw_create_scrollbar (instance, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 xlw_update_scrollbar (widget_instance *instance, Widget widget,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 widget_value *val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 if (val->scrollbar_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 scrollbar_values *data = val->scrollbar_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 int widget_sliderSize, widget_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 int new_sliderSize, new_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 double percent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
266 /* First size and position the scrollbar widget. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 XtVaSetValues (widget,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 XtNx, data->scrollbar_x,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 XtNy, data->scrollbar_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 XtNwidth, data->scrollbar_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 XtNheight, data->scrollbar_height,
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 157
diff changeset
272 NULL);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
274 /* Now size the scrollbar's slider. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 XtVaGetValues (widget,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 XmNsliderSize, &widget_sliderSize,
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
277 XmNvalue, &widget_val,
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 157
diff changeset
278 NULL);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 percent = (double) data->slider_size /
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (double) (data->maximum - data->minimum);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 percent = (percent > 1.0 ? 1.0 : percent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 new_sliderSize = (int) ((double) (INT_MAX - 1) * percent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 percent = (double) (data->slider_position - data->minimum) /
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (double) (data->maximum - data->minimum);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 percent = (percent > 1.0 ? 1.0 : percent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 new_value = (int) ((double) (INT_MAX - 1) * percent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
290 if (new_sliderSize > INT_MAX - 1)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
291 new_sliderSize = INT_MAX - 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 if (new_sliderSize < 1)
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
293 new_sliderSize = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 if (new_value > (INT_MAX - new_sliderSize))
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
296 new_value = INT_MAX - new_sliderSize;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 else if (new_value < 1)
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
298 new_value = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 if (new_sliderSize != widget_sliderSize || new_value != widget_val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 XlwScrollBarSetValues (widget, new_value, new_sliderSize, 1, 1, False);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #endif /* SCROLLBARS_LUCID */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 widget_creation_entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 xlw_creation_table [] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 #ifdef MENUBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 {"menubar", xlw_create_menubar},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 {"popup", xlw_create_popup_menu},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 #ifdef SCROLLBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 {"vertical-scrollbar", xlw_create_vertical_scrollbar},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 {"horizontal-scrollbar", xlw_create_horizontal_scrollbar},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 {NULL, NULL}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 Boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 lw_lucid_widget_p (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 WidgetClass the_class = XtClass (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 #ifdef MENUBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 if (the_class == xlwMenuWidgetClass)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 return True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 #ifdef SCROLLBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 if (the_class == xlwScrollBarWidgetClass)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 return True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 #ifdef MENUBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 if (the_class == overrideShellWidgetClass)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 XtClass (((CompositeWidget)widget)->composite.children [0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 == xlwMenuWidgetClass;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 return False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 xlw_update_one_widget (widget_instance* instance, Widget widget,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 widget_value* val, Boolean deep_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 WidgetClass class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 class = XtClass (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 if (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 #ifdef MENUBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 else if (class == xlwMenuWidgetClass)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 XlwMenuWidget mw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 if (XtIsShell (widget))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 mw = (XlwMenuWidget)((CompositeWidget)widget)->composite.children [0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 mw = (XlwMenuWidget)widget;
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 157
diff changeset
360 XtVaSetValues (widget, XtNmenu, val, NULL);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 #ifdef SCROLLBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 else if (class == xlwScrollBarWidgetClass)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 xlw_update_scrollbar (instance, widget, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 xlw_update_one_value (widget_instance* instance, Widget widget,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 widget_value* val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 xlw_pop_instance (widget_instance* instance, Boolean up)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 #ifdef MENUBARS_LUCID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 xlw_popup_menu (Widget widget, XEvent *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 XlwMenuWidget mw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 if (!XtIsShell (widget))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 if (event->type == ButtonPress || event->type == ButtonRelease)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 mw = (XlwMenuWidget)((CompositeWidget)widget)->composite.children [0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 xlw_pop_up_menu (mw, (XButtonPressedEvent *)event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 /* Destruction of instances */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 xlw_destroy_instance (widget_instance* instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 if (instance->widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 XtDestroyWidget (instance->widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 }