annotate lwlib/lwlib-utils.c @ 0:376386a54a3c r19-14

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