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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
|
/*
* Motif
*
* Copyright (c) 1987-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with these librararies and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef REV_INFO
#ifndef lint
static char rcsid[] = "$XConsortium: ShellE.c /main/10 1995/10/25 20:19:54 cde-sun $"
#endif
#endif
#include <Xm/ShellEP.h>
#include <X11/ShellP.h>
#include <Xm/VendorSEP.h>
#include <Xm/ScreenP.h>
#include "XmI.h"
/******** Static Function Declarations ********/
static void ShellClassPartInitialize(
WidgetClass w) ;
static void StructureNotifyHandler(
Widget wid,
XtPointer closure,
XEvent *event,
Boolean *continue_to_dispatch) ;
/******** End Static Function Declarations ********/
/***************************************************************************
*
* Class Record
*
***************************************************************************/
#define Offset(field) XtOffsetOf( struct _XmShellExtRec, shell.field)
static XtResource shellResources[] =
{
{
XmNuseAsyncGeometry, XmCUseAsyncGeometry, XmRBoolean,
sizeof(Boolean), Offset(useAsyncGeometry),
XmRImmediate, FALSE,
},
};
#undef Offset
externaldef(xmshellextclassrec)
XmShellExtClassRec xmShellExtClassRec = {
{
(WidgetClass) &xmDesktopClassRec,/* superclass */
"Shell", /* class_name */
sizeof(XmShellExtRec), /* size */
NULL, /* Class Initializer */
ShellClassPartInitialize, /* class_part_init */
FALSE, /* Class init'ed ? */
NULL, /* initialize */
NULL, /* initialize_notify */
NULL, /* realize */
NULL, /* actions */
0, /* num_actions */
shellResources, /* resources */
XtNumber(shellResources), /* resource_count */
NULLQUARK, /* xrm_class */
FALSE, /* compress_motion */
FALSE, /* compress_exposure */
FALSE, /* compress_enterleave */
FALSE, /* visible_interest */
NULL, /* destroy */
NULL, /* resize */
NULL, /* expose */
NULL, /* set_values */
NULL, /* set_values_hook */
NULL, /* set_values_almost */
NULL, /* get_values_hook */
NULL, /* accept_focus */
XtVersion, /* intrinsics version */
NULL, /* callback offsets */
NULL, /* tm_table */
NULL, /* query_geometry */
NULL, /* display_accelerator */
NULL, /* extension */
},
{ /* ext */
NULL, /* synthetic resources */
0, /* num syn resources */
NULL, /* extension */
},
{ /* desktop */
NULL, /* child_class */
XtInheritInsertChild, /* insert_child */
XtInheritDeleteChild, /* delete_child */
NULL, /* extension */
},
{ /* shell ext */
StructureNotifyHandler, /* structureNotify*/
NULL, /* extension */
},
};
externaldef(xmShellExtobjectclass) WidgetClass
xmShellExtObjectClass = (WidgetClass) (&xmShellExtClassRec);
/************************************************************************
*
* ClassPartInitialize
* Set up the inheritance mechanism for the routines exported by
* vendorShells class part.
*
************************************************************************/
static void
ShellClassPartInitialize(
WidgetClass w )
{
XmShellExtObjectClass wc = (XmShellExtObjectClass) w;
XmShellExtObjectClass sc =
(XmShellExtObjectClass) wc->object_class.superclass;
if (wc == (XmShellExtObjectClass)xmShellExtObjectClass)
return;
if (wc->shell_class.structureNotifyHandler == XmInheritEventHandler)
wc->shell_class.structureNotifyHandler =
sc->shell_class.structureNotifyHandler;
}
/************************************************************************
*
* StructureNotifyHandler
*
************************************************************************/
/* ARGSUSED */
static void
StructureNotifyHandler(
Widget wid,
XtPointer closure,
XEvent *event,
Boolean *continue_to_dispatch )
{
register ShellWidget w = (ShellWidget) wid;
WMShellWidget wmshell = (WMShellWidget) w;
Boolean sizechanged = FALSE;
Position tmpx, tmpy;
XmShellExtObject shellExt = (XmShellExtObject) closure;
XmVendorShellExtObject vendorExt = (XmVendorShellExtObject)closure;
XmVendorShellExtPart *vePPtr;
XmScreen xmScreen;
/*
* for right now if this is being used by overrides bug out
*/
if (!XmIsVendorShell(wid))
return;
else
vePPtr = (XmVendorShellExtPart *) &(vendorExt->vendor);
if (XmIsScreen(vendorExt->desktop.parent))
xmScreen = (XmScreen) (vendorExt->desktop.parent);
else
xmScreen = (XmScreen) XmGetXmScreen(XtScreen(wid));
switch(event->type) {
case MapNotify:
break;
case UnmapNotify:
/*
* try to keep the pop up field synced up so it won't disallow
* a new pop up request.
*/
/*
* make sure we have good coords
*/
XtTranslateCoords((Widget) w, 0, 0, &tmpx, &tmpy);
/*
* if the offsets match up, then offset our values so we'll go in
* the same place the next time.
*/
if ((vePPtr->xAtMap != w->core.x) ||
(vePPtr->yAtMap != w->core.y))
{
if (xmScreen->screen.mwmPresent)
{
if (vePPtr->lastOffsetSerial &&
(vePPtr->lastOffsetSerial >=
vendorExt->shell.lastConfigureRequest) &&
((vePPtr->xOffset + vePPtr->xAtMap) == w->core.x) &&
((vePPtr->yOffset + vePPtr->yAtMap) == w->core.y))
{
w->core.x -= vePPtr->xOffset;
w->core.y -= vePPtr->yOffset;
w->shell.client_specified &= ~_XtShellPositionValid;
vePPtr->externalReposition = False;
}
else
{
vePPtr->externalReposition = True;
}
}
else
vePPtr->externalReposition = True;
}
break;
case ConfigureNotify:
/*
* only process configureNotifies that aren't stale
*/
if (event->xany.serial <
shellExt->shell.lastConfigureRequest)
{
/*
* make sure the hard wired event handler in shell is not called
*/
if (shellExt->shell.useAsyncGeometry)
*continue_to_dispatch = False;
}
else
{
#define NEQ(x) ( w->core.x != event->xconfigure.x )
if( NEQ(width) || NEQ(height) || NEQ(border_width) ) {
sizechanged = TRUE;
}
#undef NEQ
w->core.width = event->xconfigure.width;
w->core.height = event->xconfigure.height;
w->core.border_width = event->xconfigure.border_width;
if (event->xany.send_event /* ICCCM compliant synthetic ev */
/* || w->shell.override_redirect */
|| w->shell.client_specified & _XtShellNotReparented)
{
w->core.x = event->xconfigure.x;
w->core.y = event->xconfigure.y;
w->shell.client_specified |= _XtShellPositionValid;
}
else w->shell.client_specified &= ~_XtShellPositionValid;
if (XtIsWMShell(wid) && !wmshell->wm.wait_for_wm) {
/* Consider trusting the wm again */
register WMShellPart *wmp = &(wmshell->wm);
#define EQ(x) (wmp->size_hints.x == w->core.x)
if (EQ(x) && EQ(y) && EQ(width) && EQ(height)) {
wmshell->wm.wait_for_wm = TRUE;
}
#undef EQ
}
}
break;
case ReparentNotify:
if (event->xreparent.window == XtWindow(w)) {
if (event->xreparent.parent != RootWindowOfScreen(XtScreen(w)))
{
w->shell.client_specified &= ~_XtShellNotReparented;
/*
* check to see if it's mwm
*/
if (!(xmScreen->screen.numReparented++))
xmScreen->screen.mwmPresent =
XmIsMotifWMRunning( (Widget) w);
}
else
{
w->core.x = event->xreparent.x;
w->core.y = event->xreparent.y;
w->shell.client_specified |= _XtShellNotReparented;
xmScreen->screen.numReparented--;
}
w->shell.client_specified &= ~_XtShellPositionValid;
}
return;
default:
return;
}
if (sizechanged) {
XtWidgetProc resize;
_XmProcessLock();
resize = XtClass(w)->core_class.resize;
_XmProcessUnlock();
if (resize != (XtWidgetProc) NULL)
(*resize)((Widget) w);
}
}
|