Mercurial > emacs
annotate lwlib/lwlib-utils.c @ 105780:f641cce94663
*** empty log message ***
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Tue, 27 Oct 2009 10:53:06 +0000 |
parents | 68dd71358159 |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
5626 | 1 /* Defines some widget utility functions. |
76177 | 2 Copyright (C) 1992 Lucid, Inc. |
3 Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006, | |
100957 | 4 2007, 2008, 2009 Free Software Foundation, Inc. |
5626 | 5 |
6 This file is part of the Lucid Widget Library. | |
7 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41767
diff
changeset
|
8 The Lucid Widget Library is free software; you can redistribute it and/or |
5626 | 9 modify it under the terms of the GNU General Public License as published by |
10 the Free Software Foundation; either version 1, or (at your option) | |
11 any later version. | |
12 | |
13 The Lucid Widget Library is distributed in the hope that it will be useful, | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41767
diff
changeset
|
14 but WITHOUT ANY WARRANTY; without even the implied warranty of |
5626 | 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with GNU Emacs; see the file COPYING. If not, write to | |
64083 | 20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
21 Boston, MA 02110-1301, USA. */ | |
5626 | 22 |
11358
cba458f0dc21
If HAVE_CONFIG_H, include config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7514
diff
changeset
|
23 #ifdef HAVE_CONFIG_H |
cba458f0dc21
If HAVE_CONFIG_H, include config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7514
diff
changeset
|
24 #include <config.h> |
cba458f0dc21
If HAVE_CONFIG_H, include config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7514
diff
changeset
|
25 #endif |
cba458f0dc21
If HAVE_CONFIG_H, include config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7514
diff
changeset
|
26 |
13758
5a7e9e98add7
Add #undef for index and rindex.
Karl Heuer <kwzh@gnu.org>
parents:
11358
diff
changeset
|
27 /* Definitions of these in config.h can cause |
5a7e9e98add7
Add #undef for index and rindex.
Karl Heuer <kwzh@gnu.org>
parents:
11358
diff
changeset
|
28 declaration conflicts later on between declarations for index |
5a7e9e98add7
Add #undef for index and rindex.
Karl Heuer <kwzh@gnu.org>
parents:
11358
diff
changeset
|
29 and declarations for strchr. This file doesn't use |
5a7e9e98add7
Add #undef for index and rindex.
Karl Heuer <kwzh@gnu.org>
parents:
11358
diff
changeset
|
30 index and rindex, so cancel them. */ |
5a7e9e98add7
Add #undef for index and rindex.
Karl Heuer <kwzh@gnu.org>
parents:
11358
diff
changeset
|
31 #undef index |
5a7e9e98add7
Add #undef for index and rindex.
Karl Heuer <kwzh@gnu.org>
parents:
11358
diff
changeset
|
32 #undef rindex |
5a7e9e98add7
Add #undef for index and rindex.
Karl Heuer <kwzh@gnu.org>
parents:
11358
diff
changeset
|
33 |
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100957
diff
changeset
|
34 #include <setjmp.h> |
41767 | 35 #include "../src/lisp.h" |
36 | |
5626 | 37 #include <X11/Xatom.h> |
38 #include <X11/IntrinsicP.h> | |
39 #include <X11/ObjectP.h> | |
40 #include "lwlib-utils.h" | |
29891 | 41 #include "lwlib.h" |
5626 | 42 |
43 /* Redisplay the contents of the widget, without first clearing it. */ | |
44 void | |
5708
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
45 XtNoClearRefreshWidget (widget) |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
46 Widget widget; |
5626 | 47 { |
48 XEvent event; | |
49 | |
50 event.type = Expose; | |
51 event.xexpose.serial = 0; | |
52 event.xexpose.send_event = 0; | |
53 event.xexpose.display = XtDisplay (widget); | |
54 event.xexpose.window = XtWindow (widget); | |
55 event.xexpose.x = 0; | |
56 event.xexpose.y = 0; | |
57 event.xexpose.width = widget->core.width; | |
58 event.xexpose.height = widget->core.height; | |
59 event.xexpose.count = 0; | |
60 | |
61 (*widget->core.widget_class->core_class.expose) | |
62 (widget, &event, (Region)NULL); | |
63 } | |
64 | |
65 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41767
diff
changeset
|
66 /* |
5626 | 67 * Apply a function to all the subwidgets of a given widget recursively. |
68 */ | |
69 void | |
5708
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
70 XtApplyToWidgets (w, proc, arg) |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
71 Widget w; |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
72 XtApplyToWidgetsProc proc; |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
73 XtPointer arg; |
5626 | 74 { |
75 if (XtIsComposite (w)) | |
76 { | |
77 CompositeWidget cw = (CompositeWidget) w; | |
78 /* We have to copy the children list before mapping over it, because | |
79 the procedure might add/delete elements, which would lose badly. | |
80 */ | |
81 int nkids = cw->composite.num_children; | |
82 Widget *kids = (Widget *) malloc (sizeof (Widget) * nkids); | |
83 int i; | |
30279
3f00bdb24c1f
(XtApplyToWidgets): Cast args of lwlib_bcopy.
Dave Love <fx@gnu.org>
parents:
29891
diff
changeset
|
84 lwlib_bcopy ((char *) cw->composite.children, (char *) kids, |
3f00bdb24c1f
(XtApplyToWidgets): Cast args of lwlib_bcopy.
Dave Love <fx@gnu.org>
parents:
29891
diff
changeset
|
85 sizeof (Widget) * nkids); |
5626 | 86 for (i = 0; i < nkids; i++) |
87 /* This prevent us from using gadgets, why is it here? */ | |
88 /* if (XtIsWidget (kids [i])) */ | |
89 { | |
90 /* do the kiddies first in case we're destroying */ | |
91 XtApplyToWidgets (kids [i], proc, arg); | |
92 proc (kids [i], arg); | |
93 } | |
94 free (kids); | |
95 } | |
96 } | |
97 | |
98 | |
99 /* | |
100 * Apply a function to all the subwidgets of a given widget recursively. | |
101 * Stop as soon as the function returns non NULL and returns this as a value. | |
102 */ | |
103 void * | |
5708
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
104 XtApplyUntilToWidgets (w, proc, arg) |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
105 Widget w; |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
106 XtApplyUntilToWidgetsProc proc; |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
107 XtPointer arg; |
5626 | 108 { |
109 void* result; | |
110 if (XtIsComposite (w)) | |
111 { | |
112 CompositeWidget cw = (CompositeWidget)w; | |
113 int i; | |
114 for (i = 0; i < cw->composite.num_children; i++) | |
115 if (XtIsWidget (cw->composite.children [i])){ | |
116 result = proc (cw->composite.children [i], arg); | |
117 if (result) | |
118 return result; | |
119 result = XtApplyUntilToWidgets (cw->composite.children [i], proc, | |
120 arg); | |
121 if (result) | |
122 return result; | |
123 } | |
124 } | |
125 return NULL; | |
126 } | |
127 | |
128 | |
129 /* | |
130 * Returns a copy of the list of all children of a composite widget | |
131 */ | |
132 Widget * | |
5708
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
133 XtCompositeChildren (widget, number) |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
134 Widget widget; |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
135 unsigned int* number; |
5626 | 136 { |
137 CompositeWidget cw = (CompositeWidget)widget; | |
138 Widget* result; | |
139 int n; | |
140 int i; | |
141 | |
142 if (!XtIsComposite (widget)) | |
143 { | |
144 *number = 0; | |
145 return NULL; | |
146 } | |
147 n = cw->composite.num_children; | |
148 result = (Widget*)XtMalloc (n * sizeof (Widget)); | |
149 *number = n; | |
150 for (i = 0; i < n; i++) | |
151 result [i] = cw->composite.children [i]; | |
152 return result; | |
153 } | |
154 | |
155 Boolean | |
5708
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
156 XtWidgetBeingDestroyedP (widget) |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
157 Widget widget; |
5626 | 158 { |
159 return widget->core.being_destroyed; | |
160 } | |
161 | |
162 void | |
5708
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
163 XtSafelyDestroyWidget (widget) |
4870efc489ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
164 Widget widget; |
5626 | 165 { |
166 #if 0 | |
167 | |
168 /* this requires IntrinsicI.h (actually, InitialI.h) */ | |
169 | |
170 XtAppContext app = XtWidgetToApplicationContext(widget); | |
171 | |
172 if (app->dispatch_level == 0) | |
173 { | |
174 app->dispatch_level = 1; | |
175 XtDestroyWidget (widget); | |
176 /* generates an event so that the event loop will be called */ | |
177 XChangeProperty (XtDisplay (widget), XtWindow (widget), | |
178 XA_STRING, XA_STRING, 32, PropModeAppend, NULL, 0); | |
179 app->dispatch_level = 0; | |
180 } | |
181 else | |
182 XtDestroyWidget (widget); | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41767
diff
changeset
|
183 |
5626 | 184 #else |
185 abort (); | |
186 #endif | |
187 } | |
52401 | 188 |
189 /* arch-tag: f21f0a1f-2a4e-44e1-8715-7f234fe2d159 | |
190 (do not change this comment) */ |