VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/dmxwindow.h@ 54853

最後變更 在這個檔案從54853是 43272,由 vboxsync 提交於 12 年 前

Additions/x11: more original X server headers.

  • 屬性 svn:eol-style 設為 native
檔案大小: 4.8 KB
 
1/*
2 * Copyright 2001-2004 Red Hat Inc., Durham, North Carolina.
3 *
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation on the rights to use, copy, modify, merge,
10 * publish, distribute, sublicense, and/or sell copies of the Software,
11 * and to permit persons to whom the Software is furnished to do so,
12 * subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial
16 * portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
22 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
23 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
28/*
29 * Authors:
30 * Kevin E. Martin <[email protected]>
31 *
32 */
33
34/** \file
35 * Interface for window support. \see dmxwindow.c */
36
37#ifndef DMXWINDOW_H
38#define DMXWINDOW_H
39
40#include "windowstr.h"
41
42/** Window private area. */
43typedef struct _dmxWinPriv {
44 Window window;
45 Bool offscreen;
46 Bool mapped;
47 Bool restacked;
48 unsigned long attribMask;
49 Colormap cmap;
50 Visual *visual;
51 Bool isShaped;
52#ifdef RENDER
53 Bool hasPict;
54#endif
55#ifdef GLXEXT
56 void *swapGroup;
57 int barrier;
58 void (*windowDestroyed)(WindowPtr);
59 void (*windowUnmapped)(WindowPtr);
60#endif
61} dmxWinPrivRec, *dmxWinPrivPtr;
62
63
64extern Bool dmxInitWindow(ScreenPtr pScreen);
65
66extern Window dmxCreateRootWindow(WindowPtr pWindow);
67
68extern void dmxGetDefaultWindowAttributes(WindowPtr pWindow,
69 Colormap *cmap,
70 Visual **visual);
71extern void dmxCreateAndRealizeWindow(WindowPtr pWindow, Bool doSync);
72
73extern Bool dmxCreateWindow(WindowPtr pWindow);
74extern Bool dmxDestroyWindow(WindowPtr pWindow);
75extern Bool dmxPositionWindow(WindowPtr pWindow, int x, int y);
76extern Bool dmxChangeWindowAttributes(WindowPtr pWindow, unsigned long mask);
77extern Bool dmxRealizeWindow(WindowPtr pWindow);
78extern Bool dmxUnrealizeWindow(WindowPtr pWindow);
79extern void dmxRestackWindow(WindowPtr pWindow, WindowPtr pOldNextSib);
80extern void dmxWindowExposures(WindowPtr pWindow, RegionPtr prgn,
81 RegionPtr other_exposed);
82extern void dmxCopyWindow(WindowPtr pWindow, DDXPointRec ptOldOrg,
83 RegionPtr prgnSrc);
84
85extern void dmxResizeWindow(WindowPtr pWindow, int x, int y,
86 unsigned int w, unsigned int h, WindowPtr pSib);
87extern void dmxReparentWindow(WindowPtr pWindow, WindowPtr pPriorParent);
88
89extern void dmxChangeBorderWidth(WindowPtr pWindow, unsigned int width);
90
91extern void dmxResizeScreenWindow(ScreenPtr pScreen,
92 int x, int y, int w, int h);
93extern void dmxResizeRootWindow(WindowPtr pRoot,
94 int x, int y, int w, int h);
95
96extern Bool dmxBEDestroyWindow(WindowPtr pWindow);
97
98/* Support for shape extension */
99extern void dmxSetShape(WindowPtr pWindow);
100
101/** Private index. \see dmxwindow.c \see dmxscrinit.c */
102extern DevPrivateKey dmxWinPrivateKey;
103
104/** Get window private pointer. */
105#define DMX_GET_WINDOW_PRIV(_pWin) ((dmxWinPrivPtr) \
106 dixLookupPrivate(&(_pWin)->devPrivates, dmxWinPrivateKey))
107
108/* All of these macros are only used in dmxwindow.c */
109#define DMX_WINDOW_FUNC_PROLOGUE(_pGC) \
110do { \
111 dmxGCPrivPtr pGCPriv = DMX_GET_GC_PRIV(_pGC); \
112 DMX_UNWRAP(funcs, pGCPriv, (_pGC)); \
113 if (pGCPriv->ops) \
114 DMX_UNWRAP(ops, pGCPriv, (_pGC)); \
115} while (0)
116
117#define DMX_WINDOW_FUNC_EPILOGUE(_pGC) \
118do { \
119 dmxGCPrivPtr pGCPriv = DMX_GET_GC_PRIV(_pGC); \
120 DMX_WRAP(funcs, &dmxGCFuncs, pGCPriv, (_pGC)); \
121 if (pGCPriv->ops) \
122 DMX_WRAP(ops, &dmxGCOps, pGCPriv, (_pGC)); \
123} while (0)
124
125#define DMX_WINDOW_X1(_pWin) \
126 ((_pWin)->drawable.x - wBorderWidth(_pWin))
127#define DMX_WINDOW_Y1(_pWin) \
128 ((_pWin)->drawable.y - wBorderWidth(_pWin))
129#define DMX_WINDOW_X2(_pWin) \
130 ((_pWin)->drawable.x + wBorderWidth(_pWin) + (_pWin)->drawable.width)
131#define DMX_WINDOW_Y2(_pWin) \
132 ((_pWin)->drawable.y + wBorderWidth(_pWin) + (_pWin)->drawable.height)
133
134#define DMX_WINDOW_OFFSCREEN(_pWin) \
135 (DMX_WINDOW_X1(_pWin) >= (_pWin)->drawable.pScreen->width || \
136 DMX_WINDOW_Y1(_pWin) >= (_pWin)->drawable.pScreen->height || \
137 DMX_WINDOW_X2(_pWin) <= 0 || \
138 DMX_WINDOW_Y2(_pWin) <= 0)
139
140#endif /* DMXWINDOW_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette