2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
* Copyright © 2002 Keith Packard
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, 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 name of Keith Packard not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
|
|
|
* specific, written prior permission. Keith Packard makes no
|
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL KEITH PACKARD 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
#include <dix-config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "xfixesint.h"
|
2008-11-02 08:26:08 -07:00
|
|
|
#include "xace.h"
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
static RESTYPE SelectionClientType, SelectionWindowType;
|
|
|
|
static Bool SelectionCallbackRegistered = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There is a global list of windows selecting for selection events
|
|
|
|
* on every selection. This should be plenty efficient for the
|
|
|
|
* expected usage, if it does become a problem, it should be easily
|
|
|
|
* replaced with a hash table of some kind keyed off the selection atom
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _SelectionEvent *SelectionEventPtr;
|
|
|
|
|
|
|
|
typedef struct _SelectionEvent {
|
2012-06-10 07:21:05 -06:00
|
|
|
SelectionEventPtr next;
|
|
|
|
Atom selection;
|
|
|
|
CARD32 eventMask;
|
|
|
|
ClientPtr pClient;
|
|
|
|
WindowPtr pWindow;
|
|
|
|
XID clientResource;
|
2006-11-26 11:13:41 -07:00
|
|
|
} SelectionEventRec;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
static SelectionEventPtr selectionEvents;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
XFixesSelectionCallback(CallbackListPtr *callbacks, pointer data, pointer args)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
SelectionEventPtr e;
|
|
|
|
SelectionInfoRec *info = (SelectionInfoRec *) args;
|
|
|
|
Selection *selection = info->selection;
|
|
|
|
int subtype;
|
|
|
|
CARD32 eventMask;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
switch (info->kind) {
|
|
|
|
case SelectionSetOwner:
|
2012-06-10 07:21:05 -06:00
|
|
|
subtype = XFixesSetSelectionOwnerNotify;
|
|
|
|
eventMask = XFixesSetSelectionOwnerNotifyMask;
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
case SelectionWindowDestroy:
|
2012-06-10 07:21:05 -06:00
|
|
|
subtype = XFixesSelectionWindowDestroyNotify;
|
|
|
|
eventMask = XFixesSelectionWindowDestroyNotifyMask;
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
case SelectionClientClose:
|
2012-06-10 07:21:05 -06:00
|
|
|
subtype = XFixesSelectionClientCloseNotify;
|
|
|
|
eventMask = XFixesSelectionClientCloseNotifyMask;
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
default:
|
2012-06-10 07:21:05 -06:00
|
|
|
return;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
for (e = selectionEvents; e; e = e->next) {
|
|
|
|
if (e->selection == selection->selection && (e->eventMask & eventMask)) {
|
2013-06-07 11:28:45 -06:00
|
|
|
xXFixesSelectionNotifyEvent ev = {
|
|
|
|
.type = XFixesEventBase + XFixesSelectionNotify,
|
|
|
|
.subtype = subtype,
|
|
|
|
.window = e->pWindow->drawable.id,
|
|
|
|
.owner = (subtype == XFixesSetSelectionOwnerNotify) ?
|
|
|
|
selection->window : 0,
|
|
|
|
.selection = e->selection,
|
|
|
|
.timestamp = currentTime.milliseconds,
|
|
|
|
.selectionTimestamp = selection->lastTimeChanged.milliseconds
|
|
|
|
};
|
2012-06-10 07:21:05 -06:00
|
|
|
WriteEventsToClient(e->pClient, 1, (xEvent *) &ev);
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
CheckSelectionCallback(void)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
if (selectionEvents) {
|
|
|
|
if (!SelectionCallbackRegistered) {
|
|
|
|
if (!AddCallback(&SelectionCallback, XFixesSelectionCallback, NULL))
|
|
|
|
return FALSE;
|
|
|
|
SelectionCallbackRegistered = TRUE;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else {
|
|
|
|
if (SelectionCallbackRegistered) {
|
|
|
|
DeleteCallback(&SelectionCallback, XFixesSelectionCallback, NULL);
|
|
|
|
SelectionCallbackRegistered = FALSE;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SelectionAllEvents (XFixesSetSelectionOwnerNotifyMask |\
|
|
|
|
XFixesSelectionWindowDestroyNotifyMask |\
|
|
|
|
XFixesSelectionClientCloseNotifyMask)
|
|
|
|
|
|
|
|
static int
|
2012-06-10 07:21:05 -06:00
|
|
|
XFixesSelectSelectionInput(ClientPtr pClient,
|
|
|
|
Atom selection, WindowPtr pWindow, CARD32 eventMask)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
pointer val;
|
2008-11-02 08:26:08 -07:00
|
|
|
int rc;
|
2012-06-10 07:21:05 -06:00
|
|
|
SelectionEventPtr *prev, e;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
rc = XaceHook(XACE_SELECTION_ACCESS, pClient, selection, DixGetAttrAccess);
|
|
|
|
if (rc != Success)
|
2012-06-10 07:21:05 -06:00
|
|
|
return rc;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
for (prev = &selectionEvents; (e = *prev); prev = &e->next) {
|
|
|
|
if (e->selection == selection &&
|
|
|
|
e->pClient == pClient && e->pWindow == pWindow) {
|
|
|
|
break;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!eventMask) {
|
|
|
|
if (e) {
|
|
|
|
FreeResource(e->clientResource, 0);
|
|
|
|
}
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!e) {
|
|
|
|
e = (SelectionEventPtr) malloc(sizeof(SelectionEventRec));
|
|
|
|
if (!e)
|
|
|
|
return BadAlloc;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
e->next = 0;
|
|
|
|
e->selection = selection;
|
|
|
|
e->pClient = pClient;
|
|
|
|
e->pWindow = pWindow;
|
|
|
|
e->clientResource = FakeClientID(pClient->index);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Add a resource hanging from the window to
|
|
|
|
* catch window destroy
|
|
|
|
*/
|
|
|
|
rc = dixLookupResourceByType(&val, pWindow->drawable.id,
|
|
|
|
SelectionWindowType, serverClient,
|
|
|
|
DixGetAttrAccess);
|
|
|
|
if (rc != Success)
|
|
|
|
if (!AddResource(pWindow->drawable.id, SelectionWindowType,
|
|
|
|
(pointer) pWindow)) {
|
|
|
|
free(e);
|
|
|
|
return BadAlloc;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!AddResource(e->clientResource, SelectionClientType, (pointer) e))
|
|
|
|
return BadAlloc;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
*prev = e;
|
|
|
|
if (!CheckSelectionCallback()) {
|
|
|
|
FreeResource(e->clientResource, 0);
|
|
|
|
return BadAlloc;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
e->eventMask = eventMask;
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-06-10 07:21:05 -06:00
|
|
|
ProcXFixesSelectSelectionInput(ClientPtr client)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
REQUEST(xXFixesSelectSelectionInputReq);
|
|
|
|
WindowPtr pWin;
|
|
|
|
int rc;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
REQUEST_SIZE_MATCH(xXFixesSelectSelectionInputReq);
|
2008-11-02 08:26:08 -07:00
|
|
|
rc = dixLookupWindow(&pWin, stuff->window, client, DixGetAttrAccess);
|
2007-11-24 10:55:21 -07:00
|
|
|
if (rc != Success)
|
|
|
|
return rc;
|
2012-06-10 07:21:05 -06:00
|
|
|
if (stuff->eventMask & ~SelectionAllEvents) {
|
|
|
|
client->errorValue = stuff->eventMask;
|
|
|
|
return BadValue;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
return XFixesSelectSelectionInput(client, stuff->selection,
|
|
|
|
pWin, stuff->eventMask);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-06-10 07:21:05 -06:00
|
|
|
SProcXFixesSelectSelectionInput(ClientPtr client)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
REQUEST(xXFixesSelectSelectionInputReq);
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
swaps(&stuff->length);
|
|
|
|
swapl(&stuff->window);
|
|
|
|
swapl(&stuff->selection);
|
|
|
|
swapl(&stuff->eventMask);
|
|
|
|
return (*ProcXFixesVector[stuff->xfixesReqType]) (client);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
SXFixesSelectionNotifyEvent(xXFixesSelectionNotifyEvent * from,
|
|
|
|
xXFixesSelectionNotifyEvent * to)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
to->type = from->type;
|
2012-06-10 07:21:05 -06:00
|
|
|
cpswaps(from->sequenceNumber, to->sequenceNumber);
|
|
|
|
cpswapl(from->window, to->window);
|
|
|
|
cpswapl(from->owner, to->owner);
|
|
|
|
cpswapl(from->selection, to->selection);
|
|
|
|
cpswapl(from->timestamp, to->timestamp);
|
|
|
|
cpswapl(from->selectionTimestamp, to->selectionTimestamp);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-06-10 07:21:05 -06:00
|
|
|
SelectionFreeClient(pointer data, XID id)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
SelectionEventPtr old = (SelectionEventPtr) data;
|
|
|
|
SelectionEventPtr *prev, e;
|
|
|
|
|
|
|
|
for (prev = &selectionEvents; (e = *prev); prev = &e->next) {
|
|
|
|
if (e == old) {
|
|
|
|
*prev = e->next;
|
|
|
|
free(e);
|
|
|
|
CheckSelectionCallback();
|
|
|
|
break;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-06-10 07:21:05 -06:00
|
|
|
SelectionFreeWindow(pointer data, XID id)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
WindowPtr pWindow = (WindowPtr) data;
|
|
|
|
SelectionEventPtr e, next;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
for (e = selectionEvents; e; e = next) {
|
|
|
|
next = e->next;
|
|
|
|
if (e->pWindow == pWindow) {
|
|
|
|
FreeResource(e->clientResource, 0);
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
XFixesSelectionInit(void)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
SelectionClientType = CreateNewResourceType(SelectionFreeClient,
|
2012-06-10 07:21:05 -06:00
|
|
|
"XFixesSelectionClient");
|
2010-07-27 13:02:24 -06:00
|
|
|
SelectionWindowType = CreateNewResourceType(SelectionFreeWindow,
|
2012-06-10 07:21:05 -06:00
|
|
|
"XFixesSelectionWindow");
|
2006-11-26 11:13:41 -07:00
|
|
|
return SelectionClientType && SelectionWindowType;
|
|
|
|
}
|