summaryrefslogtreecommitdiff
path: root/xc/programs/Xserver/hw/xnest/Window.h
blob: 9b96804a926f5e4b92dea0d4c51ee31d38bca0ed (plain)
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
/* $XConsortium: Window.h,v 1.1 93/07/12 15:28:58 rws Exp $ */
/*

Copyright 1993 by Davor Matic

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.  Davor Matic makes no representations about
the suitability of this software for any purpose.  It is provided "as
is" without express or implied warranty.

*/

#ifndef XNESTWINDOW_H
#define XNESTWINDOW_H

typedef struct {
  Window window;
  Window parent;
  int x;
  int y;
  unsigned int width;
  unsigned int height;
  unsigned int border_width;
  Window sibling_above;
#ifdef SHAPE
  RegionPtr bounding_shape;
  RegionPtr clip_shape;
#endif /* SHAPE */
} xnestPrivWin;

typedef struct {
  WindowPtr pWin;
  Window window;
} xnestWindowMatch;

extern int xnestWindowPrivateIndex;

#define xnestWindowPriv(pWin) \
  ((xnestPrivWin *)((pWin)->devPrivates[xnestWindowPrivateIndex].ptr))

#define xnestWindow(pWin) (xnestWindowPriv(pWin)->window)

#define xnestWindowParent(pWin) \
  ((pWin)->parent ? \
   xnestWindow((pWin)->parent) : \
   xnestDefaultWindows[pWin->drawable.pScreen->myNum])

#define xnestWindowSiblingAbove(pWin) \
  ((pWin)->prevSib ? xnestWindow((pWin)->prevSib) : None)

#define xnestWindowSiblingBelow(pWin) \
  ((pWin)->nextSib ? xnestWindow((pWin)->nextSib) : None)

#define CWParent CWSibling
#define CWStackingOrder CWStackMode

extern WindowPtr *WindowTable;

WindowPtr xnestWindowPtr();
Bool xnestCreateWindow();
Bool xnestDestroyWindow();
Bool xnestPositionWindow();
void xnestConfigureWindow();
Bool xnestChangeWindowAttributes();
Bool xnestRealizeWindow();
Bool xnestUnrealizeWindow();
void xnestPaintWindowBackground();
void xnestPaintWindowBorder();
void xnestCopyWindow();
void xnestClipNotify();
void xnestWindowExposures();
#ifdef SHAPE
void xnestShapeWindow();
#endif /* SHAPE */

#endif /* XNESTWINDOW_H */