annotate lwlib/lwlib-utils.c @ 410:de805c49cfc1 r21-2-35

Import from CVS: tag r21-2-35
author cvs
date Mon, 13 Aug 2007 11:19:21 +0200
parents 74fd4e045ea6
children 697ef44129c6
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 /* Defines some widget utility functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1992 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 1, 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,
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
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>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #include <string.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #include <memory.h>
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 80
diff changeset
25 #ifdef HAVE_UNISTD_H
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 80
diff changeset
26 #include <unistd.h>
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 80
diff changeset
27 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include <X11/Xatom.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include <X11/IntrinsicP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <X11/ObjectP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "lwlib-utils.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
34 void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
35 destroy_all_children (Widget widget)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
36 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
37 Widget* children;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
38 unsigned int number;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
39 int i;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
40
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
41 children = XtCompositeChildren (widget, &number);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
42 if (children)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
43 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
44 /* Unmanage all children and destroy them. They will only be
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
45 * really destroyed when we get out of DispatchEvent. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
46 for (i = 0; i < number; i++)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
47 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
48 Widget child = children [i];
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
49 if (!child->core.being_destroyed)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
50 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
51 XtUnmanageChild (child);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
52 XtDestroyWidget (child);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
53 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
54 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
55 XtFree ((char *) children);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
56 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
57 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 165
diff changeset
58
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 /* Redisplay the contents of the widget, without first clearing it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 XtNoClearRefreshWidget (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 XEvent event;
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
64 XExposeEvent* ev = &event.xexpose;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
66 ev->type = Expose;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
67 ev->serial = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
68 ev->send_event = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
69 ev->display = XtDisplay (widget);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
70 ev->window = XtWindow (widget);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
71 ev->x = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
72 ev->y = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
73 ev->width = widget->core.width;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
74 ev->height = widget->core.height;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
75 ev->count = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (*widget->core.widget_class->core_class.expose)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (widget, &event, (Region)NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 * Apply a function to all the subwidgets of a given widget recursively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 XtApplyToWidgets (Widget w, XtApplyToWidgetsProc proc, XtPointer arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 if (XtIsComposite (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 CompositeWidget cw = (CompositeWidget) w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 /* We have to copy the children list before mapping over it, because
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
92 the procedure might add/delete elements, which would lose badly. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 int nkids = cw->composite.num_children;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Widget *kids = (Widget *) malloc (sizeof (Widget) * nkids);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 memcpy (kids, cw->composite.children, sizeof (Widget) * nkids);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 for (i = 0; i < nkids; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 /* This prevent us from using gadgets, why is it here? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* if (XtIsWidget (kids [i])) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 /* do the kiddies first in case we're destroying */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 XtApplyToWidgets (kids [i], proc, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 proc (kids [i], arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 free (kids);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 * Apply a function to all the subwidgets of a given widget recursively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 * Stop as soon as the function returns non NULL and returns this as a value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 XtApplyUntilToWidgets (Widget w, XtApplyUntilToWidgetsProc proc, XtPointer arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 void* result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 if (XtIsComposite (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 CompositeWidget cw = (CompositeWidget)w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 for (i = 0; i < cw->composite.num_children; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 if (XtIsWidget (cw->composite.children [i])){
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 result = proc (cw->composite.children [i], arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 if (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 result = XtApplyUntilToWidgets (cw->composite.children [i], proc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 if (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 * Returns a copy of the list of all children of a composite widget
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 Widget *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 XtCompositeChildren (Widget widget, unsigned int* number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 CompositeWidget cw = (CompositeWidget)widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 Widget* result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 int n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 if (!XtIsComposite (widget))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 *number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 n = cw->composite.num_children;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 result = (Widget*)XtMalloc (n * sizeof (Widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 *number = n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 for (i = 0; i < n; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 result [i] = cw->composite.children [i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 Boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 XtWidgetBeingDestroyedP (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 return widget->core.being_destroyed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 XtSafelyDestroyWidget (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 /* this requires IntrinsicI.h (actually, InitialI.h) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 XtAppContext app = XtWidgetToApplicationContext(widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 if (app->dispatch_level == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 app->dispatch_level = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 XtDestroyWidget (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 /* generates an event so that the event loop will be called */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 XChangeProperty (XtDisplay (widget), XtWindow (widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 XA_STRING, XA_STRING, 32, PropModeAppend, NULL, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 app->dispatch_level = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 XtDestroyWidget (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 }