1 /* Defines some widget utility functions.
2 Copyright (C) 1992 Lucid, Inc.
4 This file is part of the Lucid Widget Library.
6 The Lucid Widget Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
11 The Lucid Widget Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
25 /* Definitions of these in config.h can cause
26 declaration conflicts later on between declarations for index
27 and declarations for strchr. This file doesn't use
28 index and rindex, so cancel them. */
32 #include "../src/lisp.h"
34 #include <X11/Xatom.h>
35 #include <X11/IntrinsicP.h>
36 #include <X11/ObjectP.h>
37 #include "lwlib-utils.h"
40 /* Redisplay the contents of the widget, without first clearing it. */
42 XtNoClearRefreshWidget (widget
)
48 event
.xexpose
.serial
= 0;
49 event
.xexpose
.send_event
= 0;
50 event
.xexpose
.display
= XtDisplay (widget
);
51 event
.xexpose
.window
= XtWindow (widget
);
54 event
.xexpose
.width
= widget
->core
.width
;
55 event
.xexpose
.height
= widget
->core
.height
;
56 event
.xexpose
.count
= 0;
58 (*widget
->core
.widget_class
->core_class
.expose
)
59 (widget
, &event
, (Region
)NULL
);
64 * Apply a function to all the subwidgets of a given widget recursively.
67 XtApplyToWidgets (w
, proc
, arg
)
69 XtApplyToWidgetsProc proc
;
72 if (XtIsComposite (w
))
74 CompositeWidget cw
= (CompositeWidget
) w
;
75 /* We have to copy the children list before mapping over it, because
76 the procedure might add/delete elements, which would lose badly.
78 int nkids
= cw
->composite
.num_children
;
79 Widget
*kids
= (Widget
*) malloc (sizeof (Widget
) * nkids
);
81 lwlib_bcopy ((char *) cw
->composite
.children
, (char *) kids
,
82 sizeof (Widget
) * nkids
);
83 for (i
= 0; i
< nkids
; i
++)
84 /* This prevent us from using gadgets, why is it here? */
85 /* if (XtIsWidget (kids [i])) */
87 /* do the kiddies first in case we're destroying */
88 XtApplyToWidgets (kids
[i
], proc
, arg
);
97 * Apply a function to all the subwidgets of a given widget recursively.
98 * Stop as soon as the function returns non NULL and returns this as a value.
101 XtApplyUntilToWidgets (w
, proc
, arg
)
103 XtApplyUntilToWidgetsProc proc
;
107 if (XtIsComposite (w
))
109 CompositeWidget cw
= (CompositeWidget
)w
;
111 for (i
= 0; i
< cw
->composite
.num_children
; i
++)
112 if (XtIsWidget (cw
->composite
.children
[i
])){
113 result
= proc (cw
->composite
.children
[i
], arg
);
116 result
= XtApplyUntilToWidgets (cw
->composite
.children
[i
], proc
,
127 * Returns a copy of the list of all children of a composite widget
130 XtCompositeChildren (widget
, number
)
132 unsigned int* number
;
134 CompositeWidget cw
= (CompositeWidget
)widget
;
139 if (!XtIsComposite (widget
))
144 n
= cw
->composite
.num_children
;
145 result
= (Widget
*)XtMalloc (n
* sizeof (Widget
));
147 for (i
= 0; i
< n
; i
++)
148 result
[i
] = cw
->composite
.children
[i
];
153 XtWidgetBeingDestroyedP (widget
)
156 return widget
->core
.being_destroyed
;
160 XtSafelyDestroyWidget (widget
)
165 /* this requires IntrinsicI.h (actually, InitialI.h) */
167 XtAppContext app
= XtWidgetToApplicationContext(widget
);
169 if (app
->dispatch_level
== 0)
171 app
->dispatch_level
= 1;
172 XtDestroyWidget (widget
);
173 /* generates an event so that the event loop will be called */
174 XChangeProperty (XtDisplay (widget
), XtWindow (widget
),
175 XA_STRING
, XA_STRING
, 32, PropModeAppend
, NULL
, 0);
176 app
->dispatch_level
= 0;
179 XtDestroyWidget (widget
);
186 /* arch-tag: f21f0a1f-2a4e-44e1-8715-7f234fe2d159
187 (do not change this comment) */