2006-11-26 11:13:41 -07:00
|
|
|
|
/**************************************************************************
|
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
|
Copyright (c) 2002-2007 Apple Inc. All Rights Reserved.
|
2006-11-26 11:13:41 -07:00
|
|
|
|
Copyright (c) 2003 Torrey T. Lyons. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
copy of this software and associated documentation files (the
|
|
|
|
|
"Software"), to deal in the Software without restriction, including
|
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
|
the following conditions:
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice (including the
|
|
|
|
|
next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
of the Software.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
|
|
|
IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
|
|
|
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
**************************************************************************/
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
|
#include "sanitizedCarbon.h"
|
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
|
#include <dix-config.h>
|
2007-11-24 10:55:21 -07:00
|
|
|
|
#endif
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
|
#include "quartzCommon.h"
|
|
|
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
|
#include "dixstruct.h"
|
|
|
|
|
#include "globals.h"
|
|
|
|
|
#include "extnsionst.h"
|
|
|
|
|
#include "colormapst.h"
|
|
|
|
|
#include "cursorstr.h"
|
|
|
|
|
#include "scrnintstr.h"
|
|
|
|
|
#include "windowstr.h"
|
|
|
|
|
#include "servermd.h"
|
|
|
|
|
#include "swaprep.h"
|
|
|
|
|
#include "propertyst.h"
|
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
#include "darwin.h"
|
|
|
|
|
#define _APPLEWM_SERVER_
|
2010-07-27 13:02:24 -06:00
|
|
|
|
#include <X11/extensions/applewmproto.h>
|
2006-11-26 11:13:41 -07:00
|
|
|
|
#include "applewmExt.h"
|
2008-11-02 08:26:08 -07:00
|
|
|
|
#include "X11Application.h"
|
2010-07-27 13:02:24 -06:00
|
|
|
|
#include "protocol-versions.h"
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
|
|
#define DEFINE_ATOM_HELPER(func,atom_name) \
|
|
|
|
|
static Atom func (void) { \
|
|
|
|
|
static int generation; \
|
|
|
|
|
static Atom atom; \
|
|
|
|
|
if (generation != serverGeneration) { \
|
|
|
|
|
generation = serverGeneration; \
|
|
|
|
|
atom = MakeAtom (atom_name, strlen (atom_name), TRUE); \
|
|
|
|
|
} \
|
|
|
|
|
return atom; \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEFINE_ATOM_HELPER(xa_native_screen_origin, "_NATIVE_SCREEN_ORIGIN")
|
|
|
|
|
DEFINE_ATOM_HELPER (xa_apple_no_order_in, "_APPLE_NO_ORDER_IN")
|
|
|
|
|
|
|
|
|
|
static AppleWMProcsPtr appleWMProcs;
|
|
|
|
|
|
|
|
|
|
static int WMErrorBase;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static unsigned char WMReqCode = 0;
|
|
|
|
|
static int WMEventBase = 0;
|
|
|
|
|
|
|
|
|
|
static RESTYPE ClientType, EventType; /* resource types for event masks */
|
|
|
|
|
static XID eventResource;
|
|
|
|
|
|
|
|
|
|
/* Currently selected events */
|
|
|
|
|
static unsigned int eventMask = 0;
|
|
|
|
|
|
|
|
|
|
static int WMFreeClient (pointer data, XID id);
|
|
|
|
|
static int WMFreeEvents (pointer data, XID id);
|
|
|
|
|
static void SNotifyEvent(xAppleWMNotifyEvent *from, xAppleWMNotifyEvent *to);
|
|
|
|
|
|
|
|
|
|
typedef struct _WMEvent *WMEventPtr;
|
|
|
|
|
typedef struct _WMEvent {
|
|
|
|
|
WMEventPtr next;
|
|
|
|
|
ClientPtr client;
|
|
|
|
|
XID clientResource;
|
|
|
|
|
unsigned int mask;
|
|
|
|
|
} WMEventRec;
|
|
|
|
|
|
|
|
|
|
static inline BoxRec
|
|
|
|
|
make_box (int x, int y, int w, int h)
|
|
|
|
|
{
|
|
|
|
|
BoxRec r;
|
|
|
|
|
r.x1 = x;
|
|
|
|
|
r.y1 = y;
|
|
|
|
|
r.x2 = x + w;
|
|
|
|
|
r.y2 = y + h;
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Updates the _NATIVE_SCREEN_ORIGIN property on the given root window. */
|
|
|
|
|
void
|
|
|
|
|
AppleWMSetScreenOrigin(
|
|
|
|
|
WindowPtr pWin
|
|
|
|
|
)
|
|
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
|
int32_t data[2];
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
|
data[0] = pWin->drawable.pScreen->x + darwinMainScreenX;
|
|
|
|
|
data[1] = pWin->drawable.pScreen->y + darwinMainScreenY;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
|
dixChangeWindowProperty(serverClient, pWin, xa_native_screen_origin(),
|
|
|
|
|
XA_INTEGER, 32, PropModeReplace, 2, data, TRUE);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Window managers can set the _APPLE_NO_ORDER_IN property on windows
|
|
|
|
|
that are being genie-restored from the Dock. We want them to
|
|
|
|
|
be mapped but remain ordered-out until the animation
|
|
|
|
|
completes (when the Dock will order them in). */
|
|
|
|
|
Bool
|
|
|
|
|
AppleWMDoReorderWindow(
|
|
|
|
|
WindowPtr pWin
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
Atom atom;
|
|
|
|
|
PropertyPtr prop;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
int rc;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
|
|
atom = xa_apple_no_order_in();
|
2008-11-02 08:26:08 -07:00
|
|
|
|
rc = dixLookupProperty(&prop, pWin, atom, serverClient, DixReadAccess);
|
2009-09-06 13:44:18 -06:00
|
|
|
|
|
|
|
|
|
if(Success == rc && prop->type == atom)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return 1;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMQueryVersion(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
xAppleWMQueryVersionReply rep;
|
|
|
|
|
register int n;
|
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMQueryVersionReq);
|
|
|
|
|
rep.type = X_Reply;
|
|
|
|
|
rep.length = 0;
|
|
|
|
|
rep.sequenceNumber = client->sequence;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
rep.majorVersion = SERVER_APPLEWM_MAJOR_VERSION;
|
|
|
|
|
rep.minorVersion = SERVER_APPLEWM_MINOR_VERSION;
|
|
|
|
|
rep.patchVersion = SERVER_APPLEWM_PATCH_VERSION;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
if (client->swapped) {
|
|
|
|
|
swaps(&rep.sequenceNumber, n);
|
|
|
|
|
swapl(&rep.length, n);
|
|
|
|
|
}
|
|
|
|
|
WriteToClient(client, sizeof(xAppleWMQueryVersionReply), (char *)&rep);
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* events */
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
updateEventMask (WMEventPtr *pHead)
|
|
|
|
|
{
|
|
|
|
|
WMEventPtr pCur;
|
|
|
|
|
|
|
|
|
|
eventMask = 0;
|
|
|
|
|
for (pCur = *pHead; pCur != NULL; pCur = pCur->next)
|
|
|
|
|
eventMask |= pCur->mask;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
|
static int
|
2010-07-27 13:02:24 -06:00
|
|
|
|
WMFreeClient (pointer data, XID id) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
WMEventPtr pEvent;
|
|
|
|
|
WMEventPtr *pHead, pCur, pPrev;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
int i;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
|
|
pEvent = (WMEventPtr) data;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
i = dixLookupResourceByType((pointer *)&pHead, eventResource, EventType, serverClient, DixReadAccess | DixWriteAccess | DixDestroyAccess);
|
|
|
|
|
if (i == Success && pHead) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
pPrev = 0;
|
|
|
|
|
for (pCur = *pHead; pCur && pCur != pEvent; pCur=pCur->next)
|
|
|
|
|
pPrev = pCur;
|
|
|
|
|
if (pCur) {
|
|
|
|
|
if (pPrev)
|
|
|
|
|
pPrev->next = pEvent->next;
|
|
|
|
|
else
|
|
|
|
|
*pHead = pEvent->next;
|
|
|
|
|
}
|
|
|
|
|
updateEventMask (pHead);
|
|
|
|
|
}
|
2010-12-05 08:36:02 -07:00
|
|
|
|
free((pointer) pEvent);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
|
static int
|
2010-07-27 13:02:24 -06:00
|
|
|
|
WMFreeEvents (pointer data, XID id) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
WMEventPtr *pHead, pCur, pNext;
|
|
|
|
|
|
|
|
|
|
pHead = (WMEventPtr *) data;
|
|
|
|
|
for (pCur = *pHead; pCur; pCur = pNext) {
|
|
|
|
|
pNext = pCur->next;
|
|
|
|
|
FreeResource (pCur->clientResource, ClientType);
|
2010-12-05 08:36:02 -07:00
|
|
|
|
free((pointer) pCur);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
2010-12-05 08:36:02 -07:00
|
|
|
|
free((pointer) pHead);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
eventMask = 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2008-11-02 08:26:08 -07:00
|
|
|
|
ProcAppleWMSelectInput (register ClientPtr client)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
{
|
|
|
|
|
REQUEST(xAppleWMSelectInputReq);
|
|
|
|
|
WMEventPtr pEvent, pNewEvent, *pHead;
|
|
|
|
|
XID clientResource;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
int i;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH (xAppleWMSelectInputReq);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
i = dixLookupResourceByType((pointer *)&pHead, eventResource, EventType, client, DixWriteAccess);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
if (stuff->mask != 0) {
|
2010-07-27 13:02:24 -06:00
|
|
|
|
if (i == Success && pHead) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
/* check for existing entry. */
|
|
|
|
|
for (pEvent = *pHead; pEvent; pEvent = pEvent->next)
|
|
|
|
|
{
|
|
|
|
|
if (pEvent->client == client)
|
|
|
|
|
{
|
|
|
|
|
pEvent->mask = stuff->mask;
|
|
|
|
|
updateEventMask (pHead);
|
|
|
|
|
return Success;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* build the entry */
|
2010-12-05 08:36:02 -07:00
|
|
|
|
pNewEvent = (WMEventPtr) malloc(sizeof (WMEventRec));
|
2006-11-26 11:13:41 -07:00
|
|
|
|
if (!pNewEvent)
|
|
|
|
|
return BadAlloc;
|
|
|
|
|
pNewEvent->next = 0;
|
|
|
|
|
pNewEvent->client = client;
|
|
|
|
|
pNewEvent->mask = stuff->mask;
|
|
|
|
|
/*
|
|
|
|
|
* add a resource that will be deleted when
|
|
|
|
|
* the client goes away
|
|
|
|
|
*/
|
|
|
|
|
clientResource = FakeClientID (client->index);
|
|
|
|
|
pNewEvent->clientResource = clientResource;
|
|
|
|
|
if (!AddResource (clientResource, ClientType, (pointer)pNewEvent))
|
|
|
|
|
return BadAlloc;
|
|
|
|
|
/*
|
|
|
|
|
* create a resource to contain a pointer to the list
|
|
|
|
|
* of clients selecting input. This must be indirect as
|
|
|
|
|
* the list may be arbitrarily rearranged which cannot be
|
|
|
|
|
* done through the resource database.
|
|
|
|
|
*/
|
2010-07-27 13:02:24 -06:00
|
|
|
|
if (i != Success || !pHead)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
{
|
2010-12-05 08:36:02 -07:00
|
|
|
|
pHead = (WMEventPtr *) malloc(sizeof (WMEventPtr));
|
2006-11-26 11:13:41 -07:00
|
|
|
|
if (!pHead ||
|
|
|
|
|
!AddResource (eventResource, EventType, (pointer)pHead))
|
|
|
|
|
{
|
|
|
|
|
FreeResource (clientResource, RT_NONE);
|
|
|
|
|
return BadAlloc;
|
|
|
|
|
}
|
|
|
|
|
*pHead = 0;
|
|
|
|
|
}
|
|
|
|
|
pNewEvent->next = *pHead;
|
|
|
|
|
*pHead = pNewEvent;
|
|
|
|
|
updateEventMask (pHead);
|
|
|
|
|
} else if (stuff->mask == 0) {
|
|
|
|
|
/* delete the interest */
|
2010-07-27 13:02:24 -06:00
|
|
|
|
if (i == Success && pHead) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
pNewEvent = 0;
|
|
|
|
|
for (pEvent = *pHead; pEvent; pEvent = pEvent->next) {
|
|
|
|
|
if (pEvent->client == client)
|
|
|
|
|
break;
|
|
|
|
|
pNewEvent = pEvent;
|
|
|
|
|
}
|
|
|
|
|
if (pEvent) {
|
|
|
|
|
FreeResource (pEvent->clientResource, ClientType);
|
|
|
|
|
if (pNewEvent)
|
|
|
|
|
pNewEvent->next = pEvent->next;
|
|
|
|
|
else
|
|
|
|
|
*pHead = pEvent->next;
|
2010-12-05 08:36:02 -07:00
|
|
|
|
free(pEvent);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
updateEventMask (pHead);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
client->errorValue = stuff->mask;
|
|
|
|
|
return BadValue;
|
|
|
|
|
}
|
|
|
|
|
return Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* deliver the event
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
void
|
2010-07-27 13:02:24 -06:00
|
|
|
|
AppleWMSendEvent (int type, unsigned int mask, int which, int arg) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
WMEventPtr *pHead, pEvent;
|
|
|
|
|
xAppleWMNotifyEvent se;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
int i;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
|
i = dixLookupResourceByType((pointer *)&pHead, eventResource, EventType, serverClient, DixReadAccess);
|
|
|
|
|
if (i != Success || !pHead)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
return;
|
|
|
|
|
for (pEvent = *pHead; pEvent; pEvent = pEvent->next) {
|
2010-12-05 08:36:02 -07:00
|
|
|
|
if ((pEvent->mask & mask) == 0)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
continue;
|
|
|
|
|
se.type = type + WMEventBase;
|
|
|
|
|
se.kind = which;
|
|
|
|
|
se.arg = arg;
|
|
|
|
|
se.time = currentTime.milliseconds;
|
2010-12-05 08:36:02 -07:00
|
|
|
|
WriteEventsToClient (pEvent->client, 1, (xEvent *) &se);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Safe to call from any thread. */
|
|
|
|
|
unsigned int
|
|
|
|
|
AppleWMSelectedEvents (void)
|
|
|
|
|
{
|
|
|
|
|
return eventMask;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* general utility functions */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMDisableUpdate(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMDisableUpdateReq);
|
|
|
|
|
|
|
|
|
|
appleWMProcs->DisableUpdate();
|
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMReenableUpdate(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMReenableUpdateReq);
|
|
|
|
|
|
|
|
|
|
appleWMProcs->EnableUpdate();
|
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* window functions */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMSetWindowMenu(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
const char *bytes, **items;
|
|
|
|
|
char *shortcuts;
|
|
|
|
|
int max_len, nitems, i, j;
|
|
|
|
|
REQUEST(xAppleWMSetWindowMenuReq);
|
|
|
|
|
|
|
|
|
|
REQUEST_AT_LEAST_SIZE(xAppleWMSetWindowMenuReq);
|
|
|
|
|
|
|
|
|
|
nitems = stuff->nitems;
|
2010-12-05 08:36:02 -07:00
|
|
|
|
items = malloc(sizeof (char *) * nitems);
|
|
|
|
|
shortcuts = malloc(sizeof (char) * nitems);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
|
|
max_len = (stuff->length << 2) - sizeof(xAppleWMSetWindowMenuReq);
|
|
|
|
|
bytes = (char *) &stuff[1];
|
|
|
|
|
|
|
|
|
|
for (i = j = 0; i < max_len && j < nitems;)
|
|
|
|
|
{
|
|
|
|
|
shortcuts[j] = bytes[i++];
|
|
|
|
|
items[j++] = bytes + i;
|
|
|
|
|
|
|
|
|
|
while (i < max_len)
|
|
|
|
|
{
|
|
|
|
|
if (bytes[i++] == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-11-24 10:55:21 -07:00
|
|
|
|
X11ApplicationSetWindowMenu (nitems, items, shortcuts);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
free(items);
|
|
|
|
|
free(shortcuts);
|
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMSetWindowMenuCheck(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
REQUEST(xAppleWMSetWindowMenuCheckReq);
|
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMSetWindowMenuCheckReq);
|
2007-11-24 10:55:21 -07:00
|
|
|
|
X11ApplicationSetWindowMenuCheck(stuff->index);
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMSetFrontProcess(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMSetFrontProcessReq);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
X11ApplicationSetFrontProcess();
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2008-11-02 08:26:08 -07:00
|
|
|
|
ProcAppleWMSetWindowLevel(register ClientPtr client)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
{
|
|
|
|
|
REQUEST(xAppleWMSetWindowLevelReq);
|
|
|
|
|
WindowPtr pWin;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
int err;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMSetWindowLevelReq);
|
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
if (Success != dixLookupWindow(&pWin, stuff->window, client,
|
|
|
|
|
DixReadAccess))
|
2006-11-26 11:13:41 -07:00
|
|
|
|
return BadValue;
|
|
|
|
|
|
2011-11-05 07:32:40 -06:00
|
|
|
|
if (stuff->level >= AppleWMNumWindowLevels) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
return BadValue;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
|
err = appleWMProcs->SetWindowLevel(pWin, stuff->level);
|
|
|
|
|
if (err != Success) {
|
|
|
|
|
return err;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMSendPSN(register ClientPtr client)
|
|
|
|
|
{
|
|
|
|
|
REQUEST(xAppleWMSendPSNReq);
|
|
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMSendPSNReq);
|
|
|
|
|
|
|
|
|
|
if(!appleWMProcs->SendPSN)
|
|
|
|
|
return BadRequest;
|
|
|
|
|
|
|
|
|
|
err = appleWMProcs->SendPSN(stuff->psn_hi, stuff->psn_lo);
|
|
|
|
|
if (err != Success) {
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMAttachTransient(register ClientPtr client)
|
|
|
|
|
{
|
|
|
|
|
WindowPtr pWinChild, pWinParent;
|
|
|
|
|
REQUEST(xAppleWMAttachTransientReq);
|
|
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMAttachTransientReq);
|
|
|
|
|
|
|
|
|
|
if(!appleWMProcs->AttachTransient)
|
|
|
|
|
return BadRequest;
|
|
|
|
|
|
|
|
|
|
if (Success != dixLookupWindow(&pWinChild, stuff->child, client, DixReadAccess))
|
|
|
|
|
return BadValue;
|
|
|
|
|
|
|
|
|
|
if(stuff->parent) {
|
|
|
|
|
if(Success != dixLookupWindow(&pWinParent, stuff->parent, client, DixReadAccess))
|
|
|
|
|
return BadValue;
|
|
|
|
|
} else {
|
|
|
|
|
pWinParent = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = appleWMProcs->AttachTransient(pWinChild, pWinParent);
|
|
|
|
|
if (err != Success) {
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
}
|
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMSetCanQuit(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
REQUEST(xAppleWMSetCanQuitReq);
|
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMSetCanQuitReq);
|
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
|
X11ApplicationSetCanQuit(stuff->state);
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* frame functions */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMFrameGetRect(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
xAppleWMFrameGetRectReply rep;
|
|
|
|
|
BoxRec ir, or, rr;
|
|
|
|
|
REQUEST(xAppleWMFrameGetRectReq);
|
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMFrameGetRectReq);
|
|
|
|
|
rep.type = X_Reply;
|
|
|
|
|
rep.length = 0;
|
|
|
|
|
rep.sequenceNumber = client->sequence;
|
|
|
|
|
|
|
|
|
|
ir = make_box (stuff->ix, stuff->iy, stuff->iw, stuff->ih);
|
|
|
|
|
or = make_box (stuff->ox, stuff->oy, stuff->ow, stuff->oh);
|
|
|
|
|
|
|
|
|
|
if (appleWMProcs->FrameGetRect(stuff->frame_rect,
|
|
|
|
|
stuff->frame_class,
|
|
|
|
|
&or, &ir, &rr) != Success)
|
|
|
|
|
{
|
|
|
|
|
return BadValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rep.x = rr.x1;
|
|
|
|
|
rep.y = rr.y1;
|
|
|
|
|
rep.w = rr.x2 - rr.x1;
|
|
|
|
|
rep.h = rr.y2 - rr.y1;
|
|
|
|
|
|
|
|
|
|
WriteToClient(client, sizeof(xAppleWMFrameGetRectReply), (char *)&rep);
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMFrameHitTest(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
xAppleWMFrameHitTestReply rep;
|
|
|
|
|
BoxRec ir, or;
|
|
|
|
|
int ret;
|
|
|
|
|
REQUEST(xAppleWMFrameHitTestReq);
|
|
|
|
|
|
|
|
|
|
REQUEST_SIZE_MATCH(xAppleWMFrameHitTestReq);
|
|
|
|
|
rep.type = X_Reply;
|
|
|
|
|
rep.length = 0;
|
|
|
|
|
rep.sequenceNumber = client->sequence;
|
|
|
|
|
|
|
|
|
|
ir = make_box (stuff->ix, stuff->iy, stuff->iw, stuff->ih);
|
|
|
|
|
or = make_box (stuff->ox, stuff->oy, stuff->ow, stuff->oh);
|
|
|
|
|
|
|
|
|
|
if (appleWMProcs->FrameHitTest(stuff->frame_class, stuff->px,
|
|
|
|
|
stuff->py, &or, &ir, &ret) != Success)
|
|
|
|
|
{
|
|
|
|
|
return BadValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rep.ret = ret;
|
|
|
|
|
|
|
|
|
|
WriteToClient(client, sizeof(xAppleWMFrameHitTestReply), (char *)&rep);
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMFrameDraw(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
BoxRec ir, or;
|
|
|
|
|
unsigned int title_length, title_max;
|
|
|
|
|
unsigned char *title_bytes;
|
|
|
|
|
REQUEST(xAppleWMFrameDrawReq);
|
|
|
|
|
WindowPtr pWin;
|
|
|
|
|
|
|
|
|
|
REQUEST_AT_LEAST_SIZE(xAppleWMFrameDrawReq);
|
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
if (Success != dixLookupWindow(&pWin, stuff->window, client,
|
|
|
|
|
DixReadAccess))
|
2006-11-26 11:13:41 -07:00
|
|
|
|
return BadValue;
|
|
|
|
|
|
|
|
|
|
ir = make_box (stuff->ix, stuff->iy, stuff->iw, stuff->ih);
|
|
|
|
|
or = make_box (stuff->ox, stuff->oy, stuff->ow, stuff->oh);
|
|
|
|
|
|
|
|
|
|
title_length = stuff->title_length;
|
|
|
|
|
title_max = (stuff->length << 2) - sizeof(xAppleWMFrameDrawReq);
|
|
|
|
|
|
|
|
|
|
if (title_max < title_length)
|
|
|
|
|
return BadValue;
|
|
|
|
|
|
|
|
|
|
title_bytes = (unsigned char *) &stuff[1];
|
|
|
|
|
|
|
|
|
|
errno = appleWMProcs->FrameDraw(pWin, stuff->frame_class,
|
|
|
|
|
stuff->frame_attr, &or, &ir,
|
|
|
|
|
title_length, title_bytes);
|
|
|
|
|
if (errno != Success) {
|
|
|
|
|
return errno;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* dispatch */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ProcAppleWMDispatch (
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
REQUEST(xReq);
|
|
|
|
|
|
|
|
|
|
switch (stuff->data)
|
|
|
|
|
{
|
|
|
|
|
case X_AppleWMQueryVersion:
|
|
|
|
|
return ProcAppleWMQueryVersion(client);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!LocalClient(client))
|
|
|
|
|
return WMErrorBase + AppleWMClientNotLocal;
|
|
|
|
|
|
|
|
|
|
switch (stuff->data)
|
|
|
|
|
{
|
|
|
|
|
case X_AppleWMSelectInput:
|
|
|
|
|
return ProcAppleWMSelectInput(client);
|
|
|
|
|
case X_AppleWMDisableUpdate:
|
|
|
|
|
return ProcAppleWMDisableUpdate(client);
|
|
|
|
|
case X_AppleWMReenableUpdate:
|
|
|
|
|
return ProcAppleWMReenableUpdate(client);
|
|
|
|
|
case X_AppleWMSetWindowMenu:
|
|
|
|
|
return ProcAppleWMSetWindowMenu(client);
|
|
|
|
|
case X_AppleWMSetWindowMenuCheck:
|
|
|
|
|
return ProcAppleWMSetWindowMenuCheck(client);
|
|
|
|
|
case X_AppleWMSetFrontProcess:
|
|
|
|
|
return ProcAppleWMSetFrontProcess(client);
|
|
|
|
|
case X_AppleWMSetWindowLevel:
|
|
|
|
|
return ProcAppleWMSetWindowLevel(client);
|
|
|
|
|
case X_AppleWMSetCanQuit:
|
|
|
|
|
return ProcAppleWMSetCanQuit(client);
|
|
|
|
|
case X_AppleWMFrameGetRect:
|
|
|
|
|
return ProcAppleWMFrameGetRect(client);
|
|
|
|
|
case X_AppleWMFrameHitTest:
|
|
|
|
|
return ProcAppleWMFrameHitTest(client);
|
|
|
|
|
case X_AppleWMFrameDraw:
|
|
|
|
|
return ProcAppleWMFrameDraw(client);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
case X_AppleWMSendPSN:
|
|
|
|
|
return ProcAppleWMSendPSN(client);
|
|
|
|
|
case X_AppleWMAttachTransient:
|
|
|
|
|
return ProcAppleWMAttachTransient(client);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
default:
|
|
|
|
|
return BadRequest;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-27 13:02:24 -06:00
|
|
|
|
SNotifyEvent(xAppleWMNotifyEvent *from, xAppleWMNotifyEvent *to) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
to->type = from->type;
|
|
|
|
|
to->kind = from->kind;
|
|
|
|
|
cpswaps (from->sequenceNumber, to->sequenceNumber);
|
|
|
|
|
cpswapl (from->time, to->time);
|
|
|
|
|
cpswapl (from->arg, to->arg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
SProcAppleWMQueryVersion(
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
register int n;
|
|
|
|
|
REQUEST(xAppleWMQueryVersionReq);
|
|
|
|
|
swaps(&stuff->length, n);
|
|
|
|
|
return ProcAppleWMQueryVersion(client);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
SProcAppleWMDispatch (
|
|
|
|
|
register ClientPtr client
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
REQUEST(xReq);
|
|
|
|
|
|
|
|
|
|
/* It is bound to be non-local when there is byte swapping */
|
|
|
|
|
if (!LocalClient(client))
|
|
|
|
|
return WMErrorBase + AppleWMClientNotLocal;
|
|
|
|
|
|
|
|
|
|
/* only local clients are allowed WM access */
|
|
|
|
|
switch (stuff->data)
|
|
|
|
|
{
|
|
|
|
|
case X_AppleWMQueryVersion:
|
|
|
|
|
return SProcAppleWMQueryVersion(client);
|
|
|
|
|
default:
|
|
|
|
|
return BadRequest;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-11-05 07:32:40 -06:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
AppleWMExtensionInit(
|
|
|
|
|
AppleWMProcsPtr procsPtr)
|
|
|
|
|
{
|
|
|
|
|
ExtensionEntry* extEntry;
|
|
|
|
|
|
|
|
|
|
ClientType = CreateNewResourceType(WMFreeClient, "WMClient");
|
|
|
|
|
EventType = CreateNewResourceType(WMFreeEvents, "WMEvent");
|
|
|
|
|
eventResource = FakeClientID(0);
|
|
|
|
|
|
|
|
|
|
if (ClientType && EventType &&
|
|
|
|
|
(extEntry = AddExtension(APPLEWMNAME,
|
|
|
|
|
AppleWMNumberEvents,
|
|
|
|
|
AppleWMNumberErrors,
|
|
|
|
|
ProcAppleWMDispatch,
|
|
|
|
|
SProcAppleWMDispatch,
|
|
|
|
|
NULL,
|
|
|
|
|
StandardMinorOpcode)))
|
|
|
|
|
{
|
|
|
|
|
size_t i;
|
|
|
|
|
WMReqCode = (unsigned char)extEntry->base;
|
|
|
|
|
WMErrorBase = extEntry->errorBase;
|
|
|
|
|
WMEventBase = extEntry->eventBase;
|
|
|
|
|
for (i=0; i < AppleWMNumberEvents; i++)
|
|
|
|
|
EventSwapVector[WMEventBase + i] = (EventSwapPtr) SNotifyEvent;
|
|
|
|
|
appleWMProcs = procsPtr;
|
|
|
|
|
}
|
|
|
|
|
}
|