xrdp/xorg/server/module/rdpDraw.h

94 lines
3.1 KiB
C
Raw Normal View History

2013-07-13 13:36:16 +08:00
/*
2014-01-18 09:37:09 +08:00
Copyright 2005-2014 Jay Sorg
2013-07-13 13:36:16 +08:00
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.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
misc draw calls
*/
#ifndef __RDPDRAW_H
#define __RDPDRAW_H
#include <xorg-server.h>
#include <xorgVersion.h>
2013-07-13 13:36:16 +08:00
#include <xf86.h>
#if XORG_VERSION_CURRENT < XORG_VERSION_NUMERIC(1, 13, 0, 0, 0)
/* 1.1, 1.2, 1.3, 1.4 1.5, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12 */
#define XRDP_CLOSESCR 1
#else
/* 1.13 */
#define XRDP_CLOSESCR 2
#endif
2014-01-23 02:31:05 +08:00
/* true if drawable is window or pixmap is screen */
2014-01-22 10:40:08 +08:00
#define XRDP_DRAWABLE_IS_VISIBLE(_dev, _drw) \
(((_drw)->type == DRAWABLE_WINDOW && ((WindowPtr)(_drw))->viewable) || \
((_drw)->type == DRAWABLE_PIXMAP && \
((PixmapPtr)(_drw))->devPrivate.ptr == (_dev)->pfbMemory))
/******************************************************************************/
#define GC_OP_VARS rdpPtr dev; rdpGCPtr priv; GCFuncs *oldFuncs
2013-07-13 13:36:16 +08:00
/******************************************************************************/
#define GC_OP_PROLOGUE(_pGC) \
do { \
dev = rdpGetDevFromScreen((_pGC)->pScreen); \
2013-07-13 13:36:16 +08:00
priv = (rdpGCPtr)rdpGetGCPrivate(_pGC, dev->privateKeyRecGC); \
oldFuncs = (_pGC)->funcs; \
(_pGC)->funcs = priv->funcs; \
(_pGC)->ops = priv->ops; \
} while (0)
/******************************************************************************/
#define GC_OP_EPILOGUE(_pGC) \
do { \
priv->ops = (_pGC)->ops; \
(_pGC)->funcs = oldFuncs; \
(_pGC)->ops = &g_rdpGCOps; \
} while (0)
extern GCOps g_rdpGCOps; /* in rdpGC.c */
2014-10-21 08:49:36 +08:00
extern _X_EXPORT int
2014-01-19 08:11:30 +08:00
rdpDrawGetClip(rdpPtr dev, RegionPtr pRegion, DrawablePtr pDrawable, GCPtr pGC);
2014-10-21 08:49:36 +08:00
extern _X_EXPORT void
2014-01-21 17:45:30 +08:00
GetTextBoundingBox(DrawablePtr pDrawable, FontPtr font, int x, int y,
int n, BoxPtr pbox);
2014-10-21 08:49:36 +08:00
extern _X_EXPORT int
2013-11-15 12:30:33 +08:00
rdpDrawItemAdd(rdpPtr dev, rdpPixmapRec *priv, struct rdp_draw_item *di);
2014-10-21 08:49:36 +08:00
extern _X_EXPORT int
2013-11-15 12:30:33 +08:00
rdpDrawItemRemove(rdpPtr dev, rdpPixmapRec *priv, struct rdp_draw_item *di);
2014-10-21 08:49:36 +08:00
extern _X_EXPORT int
2013-11-15 12:30:33 +08:00
rdpDrawItemRemoveAll(rdpPtr dev, rdpPixmapRec *priv);
2014-10-21 08:49:36 +08:00
extern _X_EXPORT void
2013-07-13 13:36:16 +08:00
rdpCopyWindow(WindowPtr pWin, DDXPointRec ptOldOrg, RegionPtr pOldRegion);
#if XRDP_CLOSESCR == 1
2014-10-21 08:49:36 +08:00
extern _X_EXPORT Bool
2013-07-18 08:28:53 +08:00
rdpCloseScreen(int index, ScreenPtr pScreen);
#else
2014-10-21 08:49:36 +08:00
extern _X_EXPORT Bool
rdpCloseScreen(ScreenPtr pScreen);
#endif
2014-10-21 08:49:36 +08:00
extern _X_EXPORT WindowPtr
2013-07-18 08:28:53 +08:00
rdpGetRootWindowPtr(ScreenPtr pScreen);
2014-10-21 08:49:36 +08:00
extern _X_EXPORT rdpPtr
rdpGetDevFromScreen(ScreenPtr pScreen);
2013-07-13 13:36:16 +08:00
#endif