2 * Copyright (C) 2007 Google (Evan Stade)
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.
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.
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
19 #ifndef _GDIPLUSTYPES_H
20 #define _GDIPLUSTYPES_H
30 InsufficientBuffer = 5,
38 UnknownImageFormat = 13,
39 FontFamilyNotFound = 14,
40 FontStyleNotFound = 15,
42 UnsupportedGdiplusVersion = 17,
43 GdiplusNotInitialized = 18,
44 PropertyNotFound = 19,
45 PropertyNotSupported = 20,
54 typedef BOOL (CALLBACK * ImageAbort)(VOID *);
55 typedef ImageAbort DrawImageAbort;
56 typedef ImageAbort GetThumbnailImageAbort;
73 Point(IN const Point &pt)
79 /* FIXME: missing constructor that takes a Size */
81 Point(IN INT x, IN INT y)
87 Point operator+(IN const Point& pt) const
89 return Point(X + pt.X, Y + pt.Y);
92 Point operator-(IN const Point& pt) const
94 return Point(X - pt.X, Y - pt.Y);
97 BOOL Equals(IN const Point& pt)
99 return (X == pt.X) && (Y == pt.Y);
115 PointF(IN const PointF &pt)
121 /* FIXME: missing constructor that takes a SizeF */
123 PointF(IN REAL x, IN REAL y)
129 PointF operator+(IN const PointF& pt) const
131 return PointF(X + pt.X, Y + pt.Y);
134 PointF operator-(IN const PointF& pt) const
136 return PointF(X - pt.X, Y - pt.Y);
139 BOOL Equals(IN const PointF& pt)
141 return (X == pt.X) && (Y == pt.Y);
173 PathData(const PathData &);
174 PathData& operator=(const PathData &);
182 /* FIXME: missing the methods. */
192 /* FIXME: missing the methods. */
202 #else /* end of c++ typedefs */
210 typedef struct PointF
216 typedef struct PathData
239 typedef struct CharacterRange
245 typedef enum Status Status;
247 #endif /* end of c typedefs */