More formatting fixe
[reactos.git] / include / psdk / gdiplusmatrix.h
1 /*
2 * GdiPlusMatrix.h
3 *
4 * Windows GDI+
5 *
6 * This file is part of the w32api package.
7 *
8 * THIS SOFTWARE IS NOT COPYRIGHTED
9 *
10 * This source code is offered for use in the public domain. You may
11 * use, modify or distribute it freely.
12 *
13 * This code is distributed in the hope that it will be useful but
14 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
15 * DISCLAIMED. This includes but is not limited to warranties of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 */
18
19 #ifndef _GDIPLUSMATRIX_H
20 #define _GDIPLUSMATRIX_H
21
22 class Matrix : public GdiplusBase
23 {
24 public:
25 Matrix(const RectF &rect, const PointF *dstplg)
26 {
27 }
28
29 Matrix(const Rect &rect, const Point *dstplg)
30 {
31 }
32
33 Matrix(VOID)
34 {
35 }
36
37 Matrix(REAL m11, REAL m12, REAL m21, REAL m22, REAL dx, REAL dy)
38 {
39 }
40
41 Matrix *Clone(VOID)
42 {
43 return NULL;
44 }
45
46 static BOOL Equals(const Matrix* matrix)
47 {
48 return FALSE;
49 }
50
51 Status GetElements(REAL *m) const
52 {
53 return NotImplemented;
54 }
55
56 Status GetLastStatus(VOID)
57 {
58 return NotImplemented;
59 }
60
61 Status Invert(VOID)
62 {
63 return NotImplemented;
64 }
65
66 BOOL IsIdentity(VOID)
67 {
68 return FALSE;
69 }
70
71 BOOL IsInvertible(VOID)
72 {
73 return FALSE;
74 }
75
76 Status Multiply(const Matrix *matrix, MatrixOrder order)
77 {
78 return NotImplemented;
79 }
80
81 REAL OffsetX(VOID)
82 {
83 return 0;
84 }
85
86 REAL OffsetY(VOID)
87 {
88 return 0;
89 }
90
91 Status Reset(VOID)
92 {
93 return NotImplemented;
94 }
95
96 Status Rotate(REAL angle, MatrixOrder order)
97 {
98 return NotImplemented;
99 }
100
101 Status RotateAt(REAL angle, const PointF &center, MatrixOrder order)
102 {
103 return NotImplemented;
104 }
105
106 Status Scale(REAL scaleX, REAL scaleY, MatrixOrder order)
107 {
108 return NotImplemented;
109 }
110
111 Status SetElements(REAL m11, REAL m12, REAL m21, REAL m22, REAL dx, REAL dy)
112 {
113 return NotImplemented;
114 }
115
116 Status Shear(REAL shearX, REAL shearY, REAL order)
117 {
118 return NotImplemented;
119 }
120
121 Status TransformPoints(Point *pts, INT count)
122 {
123 return NotImplemented;
124 }
125
126 Status TransformPoints(PointF *pts, INT count)
127 {
128 return NotImplemented;
129 }
130
131 Status TransformVectors(Point *pts, INT count)
132 {
133 return NotImplemented;
134 }
135
136 Status TransformVectors(PointF *pts, INT count)
137 {
138 return NotImplemented;
139 }
140
141 Status Translate(REAL offsetX, REAL offsetY, REAL order)
142 {
143 return NotImplemented;
144 }
145 };
146
147 #endif /* _GDIPLUSMATRIX_H */