1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
/*
* Motif Tools Library, Version 3.1
* $Id$
*
* Written by David Flanagan.
* Copyright (c) 1992-2001 by David Flanagan.
* All Rights Reserved. See the file COPYRIGHT for details.
* This is open source software. See the file LICENSE for details.
* There is no warranty for this software. See NO_WARRANTY for details.
*
* $Log$
* Revision 1.1.1.1 2001/07/18 11:06:02 root
* Initial checkin.
*
* Revision 1.2 2001/06/12 16:25:28 andre
* *** empty log message ***
*
*
*/
/*
* This file is almost directly from the X11R5 distribution.
* It is included with the Xmt library to patch an RS/6000 bug in AIX 3.2,
* which has a broken X11R4 version of the file, which cause the
* XmtLayout widget not to work.
* This file will only be included in the Xmt library if you have
* set the appropriate variable in Xmt.tmpl.
*
* Thanks to Peter Klingebiel for figuring out this workaround.
*/
#ifdef IBM_MANAGE_WORKAROUND
/* $XConsortium: Manage.c,v 1.25 90/12/12 14:52:32 rws Exp $ */
/***********************************************************
Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Digital or MIT not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
#include "IntrinsicP.h"
static String XtCXtToolkitError = "XtToolkitError";
static String XtNinvalidChild = "invalidChild";
static String XtNxtUnmanageChildren = "xtUnmanageChildren";
static String XtNxtManageChildren = "xtManageChildren";
void XtUnmanageChildren(children, num_children)
WidgetList children;
Cardinal num_children;
{
register CompositeWidget parent;
register Widget child;
register Cardinal num_unique_children, i;
XtWidgetProc change_managed;
Bool parent_realized;
if (num_children == 0) return;
if (children[0] == NULL) {
XtWarningMsg(XtNinvalidChild,XtNxtUnmanageChildren,XtCXtToolkitError,
"Null child passed to XtUnmanageChildren",
(String *)NULL, (Cardinal *)NULL);
return;
}
parent = (CompositeWidget) children[0]->core.parent;
if (parent->core.being_destroyed) return;
if (XtIsComposite((Widget) parent)) {
change_managed = ((CompositeWidgetClass) parent->core.widget_class)
->composite_class.change_managed;
parent_realized = XtIsRealized((Widget)parent);
}
num_unique_children = 0;
for (i = 0; i < num_children; i++) {
child = children[i];
if (child == NULL) {
XtAppWarningMsg(XtWidgetToApplicationContext((Widget)parent),
XtNinvalidChild,XtNxtUnmanageChildren,XtCXtToolkitError,
"Null child passed to XtUnmanageChildren",
(String *)NULL, (Cardinal *)NULL);
return;
}
if ((CompositeWidget) child->core.parent != parent) {
XtAppWarningMsg(XtWidgetToApplicationContext((Widget)parent),
"ambiguousParent",XtNxtUnmanageChildren,XtCXtToolkitError,
"Not all children have same parent in XtUnmanageChildren",
(String *)NULL, (Cardinal *)NULL);
} else
if (child->core.managed) {
num_unique_children++;
child->core.managed = FALSE;
if (XtIsWidget(child)
&& XtIsRealized(child)
&& child->core.mapped_when_managed)
XtUnmapWidget(child);
else
{ /* RectObj child */
Widget pw = child->core.parent;
RectObj r = (RectObj) child;
while ((pw!=NULL) && (!XtIsWidget(pw))) pw = pw->core.parent;
if ((pw!=NULL) && XtIsRealized (pw))
XClearArea (XtDisplay (pw), XtWindow (pw),
r->rectangle.x, r->rectangle.y,
r->rectangle.width + (r->rectangle.border_width << 1),
r->rectangle.height + (r->rectangle.border_width << 1),
TRUE);
}
}
}
if (num_unique_children != 0 && change_managed != NULL && parent_realized) {
(*change_managed) ((Widget)parent);
}
} /* XtUnmanageChildren */
void XtUnmanageChild(child)
Widget child;
{
XtUnmanageChildren(&child, (Cardinal)1);
} /* XtUnmanageChild */
void XtManageChildren(children, num_children)
WidgetList children;
Cardinal num_children;
{
#define MAXCHILDREN 100
register CompositeWidget parent;
register Widget child;
register Cardinal num_unique_children, i;
XtWidgetProc change_managed;
register WidgetList unique_children;
Widget cache[MAXCHILDREN];
Bool parent_realized;
if (num_children == 0) return;
if (children[0] == NULL) {
XtWarningMsg(XtNinvalidChild,XtNxtManageChildren,XtCXtToolkitError,
"null child passed to XtManageChildren",
(String *)NULL, (Cardinal *)NULL);
return;
}
parent = (CompositeWidget) children[0]->core.parent;
if (XtIsComposite((Widget) parent)) {
change_managed = ((CompositeWidgetClass) parent->core.widget_class)
->composite_class.change_managed;
parent_realized = XtIsRealized((Widget)parent);
} else {
XtAppErrorMsg(XtWidgetToApplicationContext((Widget)parent),
"invalidParent",XtNxtManageChildren, XtCXtToolkitError,
"Attempt to manage a child when parent is not Composite",
(String *) NULL, (Cardinal *) NULL);
}
if (parent->core.being_destroyed) return;
/* Construct new list of children that really need to be operated upon. */
if (num_children <= MAXCHILDREN) {
unique_children = cache;
} else {
unique_children = (WidgetList) XtMalloc(num_children * sizeof(Widget));
}
num_unique_children = 0;
for (i = 0; i < num_children; i++) {
child = children[i];
if (child == NULL) {
XtAppWarningMsg(XtWidgetToApplicationContext((Widget)parent),
XtNinvalidChild,XtNxtManageChildren,XtCXtToolkitError,
"null child passed to XtManageChildren",
(String *)NULL, (Cardinal *)NULL);
if (unique_children != cache) XtFree((char *) unique_children);
return;
}
#ifdef DEBUG
if (!XtIsRectObj(child)) {
String params[2];
Cardinal num_params = 2;
params[0] = XtName(child);
params[1] = child->core.widget_class->core_class.class_name;
XtAppWarningMsg(XtWidgetToApplicationContext((Widget)parent),
"notRectObj",XtNxtManageChildren,XtCXtToolkitError,
"child \"%s\", class %s is not a RectObj",
params, &num_params);
continue;
}
#endif /*DEBUG*/
if ((CompositeWidget) child->core.parent != parent) {
XtAppWarningMsg(XtWidgetToApplicationContext((Widget)parent),
"ambiguousParent",XtNxtManageChildren,XtCXtToolkitError,
"Not all children have same parent in XtManageChildren",
(String *)NULL, (Cardinal *)NULL);
} else if (! child->core.managed && !child->core.being_destroyed) {
unique_children[num_unique_children++] = child;
child->core.managed = TRUE;
}
}
if (num_unique_children != 0 && parent_realized) {
/* Compute geometry of new managed set of children. */
if (change_managed != NULL) (*change_managed) ((Widget)parent);
/* Realize each child if necessary, then map if necessary */
for (i = 0; i < num_unique_children; i++) {
child = unique_children[i];
if (XtIsWidget(child)) {
if (! XtIsRealized(child)) XtRealizeWidget(child);
if (child->core.mapped_when_managed) XtMapWidget(child);
} else { /* RectObj child */
Widget pw = child->core.parent;
RectObj r = (RectObj) child;
while ((pw!=NULL) && (!XtIsWidget(pw)))
pw = pw->core.parent;
if (pw != NULL)
XClearArea (XtDisplay (pw), XtWindow (pw),
r->rectangle.x, r->rectangle.y,
r->rectangle.width + (r->rectangle.border_width << 1),
r->rectangle.height + (r->rectangle.border_width << 1),
TRUE);
}
}
}
if (unique_children != cache) XtFree((char *) unique_children);
} /* XtManageChildren */
void XtManageChild(child)
Widget child;
{
XtManageChildren(&child, (Cardinal) 1);
} /* XtManageChild */
#if NeedFunctionPrototypes
void XtSetMappedWhenManaged(
register Widget widget,
_XtBoolean mapped_when_managed
)
#else
void XtSetMappedWhenManaged(widget, mapped_when_managed)
register Widget widget;
Boolean mapped_when_managed;
#endif
{
if (widget->core.mapped_when_managed == mapped_when_managed) return;
widget->core.mapped_when_managed = mapped_when_managed;
if (! XtIsManaged(widget)) return;
if (mapped_when_managed) {
/* Didn't used to be mapped when managed. */
if (XtIsRealized(widget)) XtMapWidget(widget);
} else {
/* Used to be mapped when managed. */
if (XtIsRealized(widget)) XtUnmapWidget(widget);
}
} /* XtSetMappedWhenManaged */
#else
/* just so the compiler doesn't complain about an empty file. */
static char XmtDummy;
#endif
|