gdiplus: Add a stub for GdipSetClipRectI.
[wine] / include / gdiplusenums.h
1 /*
2  * Copyright (C) 2007 Google (Evan Stade)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef _GDIPLUSENUMS_H
20 #define _GDIPLUSENUMS_H
21
22 typedef UINT GraphicsState;
23
24 enum Unit
25 {
26     UnitWorld       = 0,
27     UnitDisplay     = 1,
28     UnitPixel       = 2,
29     UnitPoint       = 3,
30     UnitInch        = 4,
31     UnitDocument    = 5,
32     UnitMillimeter  = 6
33 };
34
35 enum BrushType
36 {
37    BrushTypeSolidColor       = 0,
38    BrushTypeHatchFill        = 1,
39    BrushTypeTextureFill      = 2,
40    BrushTypePathGradient     = 3,
41    BrushTypeLinearGradient   = 4
42 };
43
44 enum FillMode
45 {
46     FillModeAlternate   = 0,
47     FillModeWinding     = 1
48 };
49
50 enum LineCap
51 {
52     LineCapFlat             = 0x00,
53     LineCapSquare           = 0x01,
54     LineCapRound            = 0x02,
55     LineCapTriangle         = 0x03,
56
57     LineCapNoAnchor         = 0x10,
58     LineCapSquareAnchor     = 0x11,
59     LineCapRoundAnchor      = 0x12,
60     LineCapDiamondAnchor    = 0x13,
61     LineCapArrowAnchor      = 0x14,
62
63     LineCapCustom           = 0xff,
64     LineCapAnchorMask       = 0xf0
65 };
66
67 enum PathPointType{
68     PathPointTypeStart          = 0,    /* start of a figure */
69     PathPointTypeLine           = 1,
70     PathPointTypeBezier         = 3,
71     PathPointTypePathTypeMask   = 7,
72     PathPointTypePathDashMode   = 16,   /* not used */
73     PathPointTypePathMarker     = 32,
74     PathPointTypeCloseSubpath   = 128,  /* end of a closed figure */
75     PathPointTypeBezier3        = 3
76 };
77
78 enum LineJoin
79 {
80     LineJoinMiter           = 0,
81     LineJoinBevel           = 1,
82     LineJoinRound           = 2,
83     LineJoinMiterClipped    = 3
84 };
85
86 enum QualityMode
87 {
88     QualityModeInvalid  = -1,
89     QualityModeDefault  = 0,
90     QualityModeLow      = 1,
91     QualityModeHigh     = 2
92 };
93
94 enum SmoothingMode
95 {
96     SmoothingModeInvalid     = QualityModeInvalid,
97     SmoothingModeDefault     = QualityModeDefault,
98     SmoothingModeHighSpeed   = QualityModeLow,
99     SmoothingModeHighQuality = QualityModeHigh,
100     SmoothingModeNone,
101     SmoothingModeAntiAlias
102 };
103
104 enum CompositingQuality
105 {
106     CompositingQualityInvalid          = QualityModeInvalid,
107     CompositingQualityDefault          = QualityModeDefault,
108     CompositingQualityHighSpeed        = QualityModeLow,
109     CompositingQualityHighQuality      = QualityModeHigh,
110     CompositingQualityGammaCorrected,
111     CompositingQualityAssumeLinear
112 };
113
114 enum InterpolationMode
115 {
116     InterpolationModeInvalid        = QualityModeInvalid,
117     InterpolationModeDefault        = QualityModeDefault,
118     InterpolationModeLowQuality     = QualityModeLow,
119     InterpolationModeHighQuality    = QualityModeHigh,
120     InterpolationModeBilinear,
121     InterpolationModeBicubic,
122     InterpolationModeNearestNeighbor,
123     InterpolationModeHighQualityBilinear,
124     InterpolationModeHighQualityBicubic
125 };
126
127 enum PenAlignment
128 {
129     PenAlignmentCenter   = 0,
130     PenAlignmentInset    = 1
131 };
132
133 enum PixelOffsetMode
134 {
135     PixelOffsetModeInvalid     = QualityModeInvalid,
136     PixelOffsetModeDefault     = QualityModeDefault,
137     PixelOffsetModeHighSpeed   = QualityModeLow,
138     PixelOffsetModeHighQuality = QualityModeHigh,
139     PixelOffsetModeNone,
140     PixelOffsetModeHalf
141 };
142
143 enum DashCap
144 {
145     DashCapFlat     = 0,
146     DashCapRound    = 2,
147     DashCapTriangle = 3
148 };
149
150 enum DashStyle
151 {
152     DashStyleSolid,
153     DashStyleDash,
154     DashStyleDot,
155     DashStyleDashDot,
156     DashStyleDashDotDot,
157     DashStyleCustom
158 };
159
160 enum MatrixOrder
161 {
162     MatrixOrderPrepend = 0,
163     MatrixOrderAppend  = 1
164 };
165
166 enum ImageType
167 {
168     ImageTypeUnknown,
169     ImageTypeBitmap,
170     ImageTypeMetafile
171 };
172
173 enum WrapMode
174 {
175     WrapModeTile,
176     WrapModeTileFlipX,
177     WrapModeTileFlipY,
178     WrapModeTileFlipXY,
179     WrapModeClamp
180 };
181
182 enum MetafileType
183 {
184     MetafileTypeInvalid,
185     MetafileTypeWmf,
186     MetafileTypeWmfPlaceable,
187     MetafileTypeEmf,
188     MetafileTypeEmfPlusOnly,
189     MetafileTypeEmfPlusDual
190 };
191
192 enum LinearGradientMode
193 {
194     LinearGradientModeHorizontal,
195     LinearGradientModeVertical,
196     LinearGradientModeForwardDiagonal,
197     LinearGradientModeBackwardDiagonal
198 };
199
200 enum EmfType
201 {
202     EmfTypeEmfOnly     = MetafileTypeEmf,
203     EmfTypeEmfPlusOnly = MetafileTypeEmfPlusOnly,
204     EmfTypeEmfPlusDual = MetafileTypeEmfPlusDual
205 };
206
207 enum CompositingMode
208 {
209     CompositingModeSourceOver,
210     CompositingModeSourceCopy
211 };
212
213 enum TextRenderingHint
214 {
215     TextRenderingHintSystemDefault = 0,
216     TextRenderingHintSingleBitPerPixelGridFit,
217     TextRenderingHintSingleBitPerPixel,
218     TextRenderingHintAntiAliasGridFit,
219     TextRenderingHintAntiAlias,
220     TextRenderingHintClearTypeGridFit
221 };
222
223 enum StringAlignment
224 {
225     StringAlignmentNear    = 0,
226     StringAlignmentCenter  = 1,
227     StringAlignmentFar     = 2
228 };
229
230 enum StringFormatFlags
231 {
232     StringFormatFlagsDirectionRightToLeft  = 0x00000001,
233     StringFormatFlagsDirectionVertical     = 0x00000002,
234     StringFormatFlagsNoFitBlackBox         = 0x00000004,
235     StringFormatFlagsDisplayFormatControl  = 0x00000020,
236     StringFormatFlagsNoFontFallback        = 0x00000400,
237     StringFormatFlagsMeasureTrailingSpaces = 0x00000800,
238     StringFormatFlagsNoWrap                = 0x00001000,
239     StringFormatFlagsLineLimit             = 0x00002000,
240     StringFormatFlagsNoClip                = 0x00004000
241 };
242
243 enum StringTrimming
244 {
245     StringTrimmingNone                 = 0,
246     StringTrimmingCharacter            = 1,
247     StringTrimmingWord                 = 2,
248     StringTrimmingEllipsisCharacter    = 3,
249     StringTrimmingEllipsisWord         = 4,
250     StringTrimmingEllipsisPath         = 5
251 };
252
253 enum HotkeyPrefix
254 {
255     HotkeyPrefixNone   = 0,
256     HotkeyPrefixShow   = 1,
257     HotkeyPrefixHide   = 2
258 };
259
260 enum ImageCodecFlags
261 {
262     ImageCodecFlagsEncoder              = 1,
263     ImageCodecFlagsDecoder              = 2,
264     ImageCodecFlagsSupportBitmap        = 4,
265     ImageCodecFlagsSupportVector        = 8,
266     ImageCodecFlagsSeekableEncode       = 16,
267     ImageCodecFlagsBlockingDecode       = 32,
268     ImageCodecFlagsBuiltin              = 65536,
269     ImageCodecFlagsSystem               = 131072,
270     ImageCodecFlagsUser                 = 262144
271 };
272
273 enum CombineMode
274 {
275     CombineModeReplace,
276     CombineModeIntersect,
277     CombineModeUnion,
278     CombineModeXor,
279     CombineModeExclude,
280     CombineModeComplement
281 };
282
283 #ifndef __cplusplus
284
285 typedef enum Unit Unit;
286 typedef enum BrushType BrushType;
287 typedef enum FillMode FillMode;
288 typedef enum LineCap LineCap;
289 typedef enum PathPointType PathPointType;
290 typedef enum LineJoin LineJoin;
291 typedef enum QualityMode QualityMode;
292 typedef enum SmoothingMode SmoothingMode;
293 typedef enum CompositingQuality CompositingQuality;
294 typedef enum InterpolationMode InterpolationMode;
295 typedef enum PixelOffsetMode PixelOffsetMode;
296 typedef enum DashCap DashCap;
297 typedef enum DashStyle DashStyle;
298 typedef enum MatrixOrder MatrixOrder;
299 typedef enum ImageType ImageType;
300 typedef enum WrapMode WrapMode;
301 typedef enum MetafileType MetafileType;
302 typedef enum LinearGradientMode LinearGradientMode;
303 typedef enum EmfType EmfType;
304 typedef enum CompositingMode CompositingMode;
305 typedef enum TextRenderingHint TextRenderingHint;
306 typedef enum StringAlignment StringAlignment;
307 typedef enum StringTrimming StringTrimming;
308 typedef enum StringFormatFlags StringFormatFlags;
309 typedef enum HotkeyPrefix HotkeyPrefix;
310 typedef enum PenAlignment GpPenAlignment;
311 typedef enum ImageCodecFlags ImageCodecFlags;
312 typedef enum CombineMode CombineMode;
313
314 #endif /* end of c typedefs */
315
316 #endif