1 | /*
|
---|
2 | * $Id$
|
---|
3 | *
|
---|
4 | * Copyright © 2003 Keith Packard
|
---|
5 | *
|
---|
6 | * Permission to use, copy, modify, distribute, and sell this software and its
|
---|
7 | * documentation for any purpose is hereby granted without fee, provided that
|
---|
8 | * the above copyright notice appear in all copies and that both that
|
---|
9 | * copyright notice and this permission notice appear in supporting
|
---|
10 | * documentation, and that the name of Keith Packard not be used in
|
---|
11 | * advertising or publicity pertaining to distribution of the software without
|
---|
12 | * specific, written prior permission. Keith Packard makes no
|
---|
13 | * representations about the suitability of this software for any purpose. It
|
---|
14 | * is provided "as is" without express or implied warranty.
|
---|
15 | *
|
---|
16 | * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
---|
17 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
---|
18 | * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
---|
19 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
---|
20 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
---|
21 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
---|
22 | * PERFORMANCE OF THIS SOFTWARE.
|
---|
23 | */
|
---|
24 |
|
---|
25 | #ifndef _XDAMAGE_H_
|
---|
26 | #define _XDAMAGE_H_
|
---|
27 |
|
---|
28 | #include <X11/extensions/damagewire.h>
|
---|
29 | #include <X11/extensions/Xfixes.h>
|
---|
30 | #include <X11/Xfuncproto.h>
|
---|
31 |
|
---|
32 | #define XDAMAGE_1_1_INTERFACE
|
---|
33 |
|
---|
34 | typedef XID Damage;
|
---|
35 |
|
---|
36 | typedef struct {
|
---|
37 | int type; /* event base */
|
---|
38 | unsigned long serial;
|
---|
39 | Bool send_event;
|
---|
40 | Display *display;
|
---|
41 | Drawable drawable;
|
---|
42 | Damage damage;
|
---|
43 | int level;
|
---|
44 | Bool more; /* more events will be delivered immediately */
|
---|
45 | Time timestamp;
|
---|
46 | XRectangle area;
|
---|
47 | XRectangle geometry;
|
---|
48 | } XDamageNotifyEvent;
|
---|
49 |
|
---|
50 | _XFUNCPROTOBEGIN
|
---|
51 |
|
---|
52 | Bool XDamageQueryExtension (Display *dpy, int *event_basep, int *error_basep);
|
---|
53 |
|
---|
54 | Status XDamageQueryVersion (Display *dpy,
|
---|
55 | int *major_versionp,
|
---|
56 | int *minor_versionp);
|
---|
57 |
|
---|
58 | Damage
|
---|
59 | XDamageCreate (Display *dpy, Drawable drawable, int level);
|
---|
60 |
|
---|
61 | void
|
---|
62 | XDamageDestroy (Display *dpy, Damage damage);
|
---|
63 |
|
---|
64 | void
|
---|
65 | XDamageSubtract (Display *dpy, Damage damage,
|
---|
66 | XserverRegion repair, XserverRegion parts);
|
---|
67 |
|
---|
68 | void
|
---|
69 | XDamageAdd (Display *dpy, Drawable drawable, XserverRegion region);
|
---|
70 |
|
---|
71 | _XFUNCPROTOEND
|
---|
72 |
|
---|
73 | #endif /* _XDAMAGE_H_ */
|
---|