annotate lwlib/lwlib-utils.c @ 241:f955c73f5258 r20-5b19

Import from CVS: tag r20-5b19
author cvs
date Mon, 13 Aug 2007 10:16:16 +0200
parents 5a88923fcbfe
children 74fd4e045ea6
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 /* Redisplay the contents of the widget, without first clearing it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 XtNoClearRefreshWidget (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 XEvent event;
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
39 XExposeEvent* ev = &event.xexpose;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
41 ev->type = Expose;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
42 ev->serial = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
43 ev->send_event = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
44 ev->display = XtDisplay (widget);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
45 ev->window = XtWindow (widget);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
46 ev->x = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
47 ev->y = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
48 ev->width = widget->core.width;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
49 ev->height = widget->core.height;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
50 ev->count = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (*widget->core.widget_class->core_class.expose)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (widget, &event, (Region)NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 * Apply a function to all the subwidgets of a given widget recursively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 */
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 XtApplyToWidgets (Widget w, XtApplyToWidgetsProc proc, XtPointer arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 if (XtIsComposite (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 CompositeWidget cw = (CompositeWidget) w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 /* 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
67 the procedure might add/delete elements, which would lose badly. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 int nkids = cw->composite.num_children;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Widget *kids = (Widget *) malloc (sizeof (Widget) * nkids);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 memcpy (kids, cw->composite.children, sizeof (Widget) * nkids);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 for (i = 0; i < nkids; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 /* This prevent us from using gadgets, why is it here? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 /* if (XtIsWidget (kids [i])) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 /* do the kiddies first in case we're destroying */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 XtApplyToWidgets (kids [i], proc, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 proc (kids [i], arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 free (kids);
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 * Apply a function to all the subwidgets of a given widget recursively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 * 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
88 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 XtApplyUntilToWidgets (Widget w, XtApplyUntilToWidgetsProc proc, XtPointer arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 void* result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 if (XtIsComposite (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 CompositeWidget cw = (CompositeWidget)w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 for (i = 0; i < cw->composite.num_children; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 if (XtIsWidget (cw->composite.children [i])){
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 result = proc (cw->composite.children [i], arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 if (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 result = XtApplyUntilToWidgets (cw->composite.children [i], proc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 if (result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 return result;
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 return NULL;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 * Returns a copy of the list of all children of a composite widget
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 Widget *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 XtCompositeChildren (Widget widget, unsigned int* number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 CompositeWidget cw = (CompositeWidget)widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 Widget* result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 int n;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 if (!XtIsComposite (widget))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 *number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 n = cw->composite.num_children;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 result = (Widget*)XtMalloc (n * sizeof (Widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 *number = n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 for (i = 0; i < n; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 result [i] = cw->composite.children [i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 return result;
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 Boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 XtWidgetBeingDestroyedP (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 return widget->core.being_destroyed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 XtSafelyDestroyWidget (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 /* this requires IntrinsicI.h (actually, InitialI.h) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 XtAppContext app = XtWidgetToApplicationContext(widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 if (app->dispatch_level == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 app->dispatch_level = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 XtDestroyWidget (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 /* generates an event so that the event loop will be called */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 XChangeProperty (XtDisplay (widget), XtWindow (widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 XA_STRING, XA_STRING, 32, PropModeAppend, NULL, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 app->dispatch_level = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 XtDestroyWidget (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 }