annotate lwlib/lwlib-utils.c @ 98:0d2f883870bc r20-1b1

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