~ubuntu-branches/ubuntu/karmic/virtualbox-ose/karmic-updates

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/x11include/7.1/xorg/gc.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-09-14 18:25:07 UTC
  • mfrom: (0.4.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090914182507-c98g07mq16hjmn6d
Tags: 3.0.6-dfsg-1ubuntu1
* Merge from debian unstable (LP: #429697), remaining changes:
  - Enable DKMS support on virtualbox host and guest modules (LP: #267097)
    - Drop virtualbox-ose{-guest,}-modules-* package templates
    - Recommend *-source instead of *-modules packages
    - Replace error messages related to missing/mismatched
      kernel module accordingly
  - Autoload kernel module
    - LOAD_VBOXDRV_MODULE=1 in virtualbox-ose.default
  - Disable update action
    - patches/u01-disable-update-action.dpatch
  - Virtualbox should go in Accessories, not in System tools (LP: #288590)
    - virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add apport hook
    - virtualbox-ose.files/source_virtualbox-ose.py
    - virtualbox-ose.install
  - Add launchpad integration
    - control
    - lpi-bug.xpm
    - patches/u02-lp-integration.dpatch
  - virtualbox, virtualbox-* (names of the upstream proprietary packages)
    conflict with virtualbox-ose (LP: #379878)
* Make debug package depend on normal or guest utils package
* Drop patches/22-pulseaudio-stubs.dpatch (applied upstream)
* Rename Ubuntu specific patches to uXX-*.dpatch
* Fix lintian warnings in maintainer scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $XFree86: xc/programs/Xserver/include/gc.h,v 1.5 2001/12/14 19:59:54 dawes Exp $ */
2
 
/***********************************************************
3
 
 
4
 
Copyright 1987, 1998  The Open Group
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.
11
 
 
12
 
The above copyright notice and this permission notice shall be included in
13
 
all copies or substantial portions of the Software.
14
 
 
15
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
18
 
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
19
 
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
 
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
 
 
22
 
Except as contained in this notice, the name of The Open Group shall not be
23
 
used in advertising or otherwise to promote the sale, use or other dealings
24
 
in this Software without prior written authorization from The Open Group.
25
 
 
26
 
 
27
 
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
28
 
 
29
 
                        All Rights Reserved
30
 
 
31
 
Permission to use, copy, modify, and distribute this software and its 
32
 
documentation for any purpose and without fee is hereby granted, 
33
 
provided that the above copyright notice appear in all copies and that
34
 
both that copyright notice and this permission notice appear in 
35
 
supporting documentation, and that the name of Digital not be
36
 
used in advertising or publicity pertaining to distribution of the
37
 
software without specific, written prior permission.  
38
 
 
39
 
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
40
 
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
41
 
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
42
 
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
43
 
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
44
 
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
45
 
SOFTWARE.
46
 
 
47
 
******************************************************************/
48
 
/* $Xorg: gc.h,v 1.4 2001/02/09 02:05:15 xorgcvs Exp $ */
49
 
 
50
 
#ifndef GC_H
51
 
#define GC_H 
52
 
 
53
 
#include <X11/X.h>      /* for GContext, Mask */
54
 
#include <X11/Xdefs.h>  /* for Bool */
55
 
#include <X11/Xproto.h>
56
 
#include "screenint.h"  /* for ScreenPtr */
57
 
#include "pixmap.h"     /* for DrawablePtr */
58
 
 
59
 
/* clientClipType field in GC */
60
 
#define CT_NONE                 0
61
 
#define CT_PIXMAP               1
62
 
#define CT_REGION               2
63
 
#define CT_UNSORTED             6
64
 
#define CT_YSORTED              10
65
 
#define CT_YXSORTED             14
66
 
#define CT_YXBANDED             18
67
 
 
68
 
#define GCQREASON_VALIDATE      1
69
 
#define GCQREASON_CHANGE        2
70
 
#define GCQREASON_COPY_SRC      3
71
 
#define GCQREASON_COPY_DST      4
72
 
#define GCQREASON_DESTROY       5
73
 
 
74
 
#define GC_CHANGE_SERIAL_BIT        (((unsigned long)1)<<31)
75
 
#define GC_CALL_VALIDATE_BIT        (1L<<30)
76
 
#define GCExtensionInterest   (1L<<29)
77
 
 
78
 
#define DRAWABLE_SERIAL_BITS        (~(GC_CHANGE_SERIAL_BIT))
79
 
 
80
 
#define MAX_SERIAL_NUM     (1L<<28)
81
 
 
82
 
#define NEXT_SERIAL_NUMBER ((++globalSerialNumber) > MAX_SERIAL_NUM ? \
83
 
            (globalSerialNumber  = 1): globalSerialNumber)
84
 
 
85
 
typedef struct _GCInterest *GCInterestPtr;
86
 
typedef struct _GC    *GCPtr;
87
 
typedef struct _GCOps *GCOpsPtr;
88
 
 
89
 
extern void ValidateGC(
90
 
    DrawablePtr /*pDraw*/,
91
 
    GCPtr /*pGC*/);
92
 
 
93
 
extern int ChangeGC(
94
 
    GCPtr/*pGC*/,
95
 
    BITS32 /*mask*/,
96
 
    XID* /*pval*/);
97
 
 
98
 
extern int DoChangeGC(
99
 
    GCPtr/*pGC*/,
100
 
    BITS32 /*mask*/,
101
 
    XID* /*pval*/,
102
 
    int /*fPointer*/);
103
 
 
104
 
typedef union {
105
 
    CARD32 val;
106
 
    pointer ptr;
107
 
} ChangeGCVal, *ChangeGCValPtr;
108
 
 
109
 
extern int dixChangeGC(
110
 
    ClientPtr /*client*/,
111
 
    GCPtr /*pGC*/,
112
 
    BITS32 /*mask*/,
113
 
    CARD32 * /*pval*/,
114
 
    ChangeGCValPtr /*pCGCV*/);
115
 
 
116
 
extern GCPtr CreateGC(
117
 
    DrawablePtr /*pDrawable*/,
118
 
    BITS32 /*mask*/,
119
 
    XID* /*pval*/,
120
 
    int* /*pStatus*/);
121
 
 
122
 
extern int CopyGC(
123
 
    GCPtr/*pgcSrc*/,
124
 
    GCPtr/*pgcDst*/,
125
 
    BITS32 /*mask*/);
126
 
 
127
 
extern int FreeGC(
128
 
    pointer /*pGC*/,
129
 
    XID /*gid*/);
130
 
 
131
 
extern void SetGCMask(
132
 
    GCPtr /*pGC*/,
133
 
    Mask /*selectMask*/,
134
 
    Mask /*newDataMask*/);
135
 
 
136
 
extern GCPtr CreateScratchGC(
137
 
    ScreenPtr /*pScreen*/,
138
 
    unsigned /*depth*/);
139
 
 
140
 
extern void FreeGCperDepth(
141
 
    int /*screenNum*/);
142
 
 
143
 
extern Bool CreateGCperDepth(
144
 
    int /*screenNum*/);
145
 
 
146
 
extern Bool CreateDefaultStipple(
147
 
    int /*screenNum*/);
148
 
 
149
 
extern void FreeDefaultStipple(
150
 
    int /*screenNum*/);
151
 
 
152
 
extern int SetDashes(
153
 
    GCPtr /*pGC*/,
154
 
    unsigned /*offset*/,
155
 
    unsigned /*ndash*/,
156
 
    unsigned char* /*pdash*/);
157
 
 
158
 
extern int VerifyRectOrder(
159
 
    int /*nrects*/,
160
 
    xRectangle* /*prects*/,
161
 
    int /*ordering*/);
162
 
 
163
 
extern int SetClipRects(
164
 
    GCPtr /*pGC*/,
165
 
    int /*xOrigin*/,
166
 
    int /*yOrigin*/,
167
 
    int /*nrects*/,
168
 
    xRectangle* /*prects*/,
169
 
    int /*ordering*/);
170
 
 
171
 
extern GCPtr GetScratchGC(
172
 
    unsigned /*depth*/,
173
 
    ScreenPtr /*pScreen*/);
174
 
 
175
 
extern void FreeScratchGC(
176
 
    GCPtr /*pGC*/);
177
 
 
178
 
#endif /* GC_H */