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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
|
/* +-------------------------------------------------------------------+ */
/* | Copyright 1993, David Koblas (koblas@netcom.com) | */
/* | Copyright 1995, 1996 Torsten Martinsen (bullestock@dk-online.dk) | */
/* | | */
/* | Permission to use, copy, modify, and to distribute 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. There is no | */
/* | representations about the suitability of this software for | */
/* | any purpose. this software is provided "as is" without express | */
/* | or implied warranty. | */
/* | | */
/* +-------------------------------------------------------------------+ */
/* $Id: grab.c,v 1.7 1996/04/19 09:08:04 torsten Exp $ */
#include <X11/Intrinsic.h>
#include <X11/cursorfont.h>
#include "misc.h"
#include "image.h"
#define GRAB_FAST
/*
** Convenience function for doing server pointer grabs
*/
#define GRAB_INTERVAL 30
typedef struct {
XtAppContext app;
Display *dpy;
GC gc;
Window root;
Boolean drawn;
int x, y, ox, oy, width, height;
XtIntervalId id;
} GrabInfo;
/*
* Draws the box cursor used when grabbing a rectangle.
*/
static void
grabHilite(XtPointer infoArg, XtIntervalId * id)
{
GrabInfo *info = (GrabInfo *) infoArg;
if (info->drawn) {
if (info->ox == info->x && info->oy == info->y)
goto end;
XDrawRectangle(info->dpy, info->root, info->gc,
info->ox - info->width / 2,
info->oy - info->height / 2,
info->width, info->height);
}
info->drawn = True;
XDrawRectangle(info->dpy, info->root, info->gc,
info->x - info->width / 2,
info->y - info->height / 2,
info->width, info->height);
info->ox = info->x;
info->oy = info->y;
end:
info->id = XtAppAddTimeOut(info->app, GRAB_INTERVAL,
grabHilite, (XtPointer) info);
}
/*
* Given coords x,y in the 'base' window, descend the window hierarchy
* and find the child window of class InputOutput containing those
* coordinates. Return coords in child window in (*nx,*ny).
* If the child window has a colormap, return that; otherwise return
* the default colormap for the display.
*/
static void
xyToWindowCmap(Display * dpy, int x, int y, Window base,
int *nx, int *ny, Window * window, Colormap * cmap)
{
Window twin;
Colormap tmap;
Window child, sub;
XWindowAttributes attr;
twin = base;
tmap = None;
sub = base;
*nx = x;
*ny = y;
while (sub != None) {
x = *nx;
y = *ny;
child = sub;
XTranslateCoordinates(dpy, base, child, x, y, nx, ny, &sub);
base = child;
XGetWindowAttributes(dpy, child, &attr);
if (attr.class == InputOutput && attr.colormap != None) {
tmap = attr.colormap;
twin = child;
}
}
if (tmap == None)
*cmap = DefaultColormap(dpy, DefaultScreen(dpy));
else
*cmap = tmap;
*window = twin;
}
/*
* Grab a rectangle of some window.
* Zero width and height specifies to just grab a single pixel.
* Returns coords of event.
*/
static void
doGrab(Widget w, int width, int height, int *x, int *y)
{
Display *dpy = XtDisplay(w);
XtAppContext app = XtWidgetToApplicationContext(w);
Window root = DefaultRootWindow(dpy);
XEvent event;
Cursor cursor = XCreateFontCursor(dpy, XC_crosshair);
int count = 0;
GrabInfo *info = NULL;
/* Set up grab cursor */
if (width != 0 && height != 0) {
XGCValues gcv;
info = XtNew(GrabInfo);
gcv.function = GXxor;
gcv.foreground = 1;
gcv.subwindow_mode = IncludeInferiors;
info->root = root;
info->app = app;
info->x = 0;
info->y = 0;
info->drawn = False;
info->dpy = dpy;
info->gc = XCreateGC(dpy, root,
GCSubwindowMode | GCForeground | GCFunction, &gcv);
info->width = width;
info->height = height;
info->id = XtAppAddTimeOut(app, GRAB_INTERVAL,
grabHilite, (XtPointer) info);
}
if (XGrabPointer(dpy, root, False,
info == NULL ? ButtonPressMask | ButtonReleaseMask
: ButtonPressMask | ButtonReleaseMask | PointerMotionMask,
GrabModeSync, GrabModeAsync,
root, cursor, CurrentTime))
return;
do {
XAllowEvents(dpy, SyncPointer, CurrentTime);
XtAppNextEvent(app, &event);
if (event.type == ButtonPress)
count++;
else if (event.type == ButtonRelease) {
if (count == 1)
break;
else
count--;
} else if (event.type == MotionNotify) {
info->x = event.xmotion.x;
info->y = event.xmotion.y;
} else
XtDispatchEvent(&event);
}
while (True);
XUngrabPointer(dpy, CurrentTime);
if (info != NULL) {
/* remove grab cursor */
if (info->drawn)
XDrawRectangle(info->dpy, info->root, info->gc,
info->ox - info->width / 2,
info->oy - info->height / 2,
info->width, info->height);
XtRemoveTimeOut(info->id);
XFreeGC(XtDisplay(w), info->gc);
XtFree((XtPointer) info);
}
*x = event.xbutton.x;
*y = event.xbutton.y;
}
Image *
DoGrabImage(Widget w, int width, int height)
{
Screen *screen = XtScreen(w);
Display *dpy = XtDisplay(w);
Window root = RootWindowOfScreen(screen);
int x, y, nx, ny, tx, ty;
Colormap cmap, lastCmap;
Window window, lastWindow;
unsigned char *ip;
Image *image;
XColor *xcol;
XImage *xim;
#ifndef GRAB_FAST
Colormap dmap = DefaultColormapOfScreen(screen);
int fx, fy, i, count, xi, yi;
#endif
doGrab(w, width, height, &x, &y);
x -= width / 2; /* center the grabbed region around event coords */
y -= height / 2;
/* Do some manual clipping */
if (x < 0) {
width += x;
x = 0;
}
if (y < 0) {
height += y;
y = 0;
}
if (x + width > WidthOfScreen(screen))
width = WidthOfScreen(screen) - x;
if (y + height > HeightOfScreen(screen))
height = HeightOfScreen(screen) - x;
if (width == 0 || height == 0)
return NULL;
image = ImageNew(width, height);
ip = image->data;
xcol = (XColor *) XtCalloc(width, sizeof(XColor));
#ifdef GRAB_FAST
/*
** Fast grabs, just use the colormap at the 0,0 position
** gotcha is that the XImage is from the root window
** thus, with its depth.
*/
xyToWindowCmap(dpy, x, y, root, &nx, &ny, &window, &cmap);
xyToWindowCmap(dpy, x + width, y + height, root,
&tx, &ty, &lastWindow, &lastCmap);
/*
** XXX Improvement:
** instead of window == lastWindow
** we could check for common parent, and use that.
*/
if (window == lastWindow)
xim = XGetImage(dpy, window, nx, ny, width, height, AllPlanes, ZPixmap);
else
xim = XGetImage(dpy, root, x, y, width, height, AllPlanes, ZPixmap);
for (y = 0; y < height; y++) {
for (x = 0; x < width; x++) {
xcol[x].pixel = XGetPixel(xim, x, y);
xcol[x].flags = DoRed | DoGreen | DoBlue;
}
XQueryColors(XtDisplay(w), cmap, xcol, width);
for (x = 0; x < width; x++) {
*ip++ = (xcol[x].red >> 8) & 0xff;
*ip++ = (xcol[x].green >> 8) & 0xff;
*ip++ = (xcol[x].blue >> 8) & 0xff;
}
}
#else
/*
** Slow grabs, get the correct color and colormap though a lot of
** server calls.
*/
StateSetBusyWatch(True);
for (yi = 0; yi < height; yi++) {
count = 0;
lastCmap = None;
lastWindow = None;
for (xi = 0; xi < width; xi++, count++) {
xyToWindowCmap(dpy, xi + x, yi + y, root, &nx, &ny, &window, &cmap);
if ((window != lastWindow || cmap != lastCmap) && count != 0) {
if (cmap == lastCmap && lastWindow == root)
continue;
xim = XGetImage(dpy, lastWindow, fx, fy, count, 1,
AllPlanes, ZPixmap);
for (i = 0; i < count; i++) {
xcol[i].pixel = XGetPixel(xim, i, 0);
xcol[i].flags = DoRed | DoGreen | DoBlue;
}
XQueryColors(XtDisplay(w), lastCmap, xcol, count);
for (i = 0; i < count; i++) {
*ip++ = (xcol[i].red >> 8) & 0xff;
*ip++ = (xcol[i].green >> 8) & 0xff;
*ip++ = (xcol[i].blue >> 8) & 0xff;
}
XDestroyImage(xim);
count = 0;
}
if (count == 0) {
fx = nx;
fy = ny;
if (cmap == dmap) {
fx = x + xi;
fy = y + yi;
lastWindow = root;
} else {
lastWindow = window;
}
lastCmap = cmap;
}
}
if (count != 0) {
xim = XGetImage(dpy, lastWindow, fx, fy, count, 1,
AllPlanes, ZPixmap);
for (i = 0; i < count; i++) {
xcol[i].pixel = XGetPixel(xim, i, 0);
xcol[i].flags = DoRed | DoGreen | DoBlue;
}
XQueryColors(XtDisplay(w), lastCmap, xcol, count);
for (i = 0; i < count; i++) {
*ip++ = (xcol[i].red >> 8) & 0xff;
*ip++ = (xcol[i].green >> 8) & 0xff;
*ip++ = (xcol[i].blue >> 8) & 0xff;
}
XDestroyImage(xim);
}
}
StateSetBusyWatch(False);
#endif
XtFree((XtPointer) xcol);
XDestroyImage(xim);
return image;
}
/*
** Grab the pixel value from some other window
**
** Store pixel value in *p and colormap ID in *cmap unless they are NULL.
**
** General strategy:
** Grab the cursor
** Wait for the up/down button event
** Lookup what window the event is over
** Query the pixel value
*/
void
DoGrabPixel(Widget w, Pixel * p, Colormap * cmap)
{
int x, y, nx, ny;
XImage *xim;
Colormap amap;
Window root = RootWindowOfScreen(XtScreen(w));
Window window;
Display *dpy = XtDisplay(w);
doGrab(w, 0, 0, &x, &y);
if (cmap == NULL)
cmap = &amap;
xyToWindowCmap(dpy, x, y, root, &nx, &ny, &window, cmap);
xim = XGetImage(dpy, window, nx, ny, 1, 1, AllPlanes, ZPixmap);
if (p != NULL)
*p = XGetPixel(xim, 0, 0);
XDestroyImage(xim);
}
/*
** Grab the RGB value from some other window
**
** General strategy:
** Grab the cursor
** Wait for the up/down button event
** Lookup what window the event is over
** Query the pixel value
** Query the colormap of the window
** Query the rgb pixel value
*/
XColor *
DoGrabColor(Widget w)
{
static XColor xcol;
Colormap cmap;
Pixel p;
DoGrabPixel(w, &p, &cmap);
xcol.pixel = p;
xcol.flags = DoRed | DoGreen | DoBlue;
XQueryColor(XtDisplay(w), cmap, &xcol);
return &xcol;
}
|