1/*
2
3Template
4
5Copyright (c) 2002 Haiku.
6
7Author:
8	<YOUR NAME>
9
10Permission is hereby granted, free of charge, to any person obtaining a copy of
11this software and associated documentation files (the "Software"), to deal in
12the Software without restriction, including without limitation the rights to
13use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
14of the Software, and to permit persons to whom the Software is furnished to do
15so, subject to the following conditions:
16
17The above copyright notice and this permission notice shall be included in all
18copies or substantial portions of the Software.
19
20THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26THE SOFTWARE.
27
28*/
29
30#include "Template.h"
31
32void Template::Op(int number) {
33}
34
35
36void Template::MovePenBy(BPoint delta) {
37}
38
39
40void Template::StrokeLine(BPoint start, BPoint end) {
41}
42
43
44void Template::StrokeRect(BRect rect) {
45}
46
47
48void Template::FillRect(BRect rect) {
49}
50
51
52void Template::StrokeRoundRect(BRect rect, BPoint radii) {
53}
54
55
56void Template::FillRoundRect(BRect rect, BPoint radii) {
57}
58
59
60void Template::StrokeBezier(BPoint *control) {
61}
62
63
64void Template::FillBezier(BPoint *control) {
65}
66
67
68void Template::StrokeArc(BPoint center, BPoint radii, float startTheta, float arcTheta) {
69}
70
71
72void Template::FillArc(BPoint center, BPoint radii, float startTheta, float arcTheta) {
73}
74
75
76void Template::StrokeEllipse(BPoint center, BPoint radii) {
77}
78
79
80void Template::FillEllipse(BPoint center, BPoint radii) {
81}
82
83
84void Template::StrokePolygon(int32 numPoints, BPoint *points, bool isClosed) {
85}
86
87
88void Template::FillPolygon(int32 numPoints, BPoint *points, bool isClosed) {
89}
90
91
92void Template::StrokeShape(BShape *shape) {
93}
94
95
96void Template::FillShape(BShape *shape) {
97}
98
99
100void Template::DrawString(char *string, float escapement_nospace, float escapement_space) {
101}
102
103
104void Template::DrawPixels(BRect src, BRect dest, int32 width, int32 height, int32 bytesPerRow, int32 pixelFormat, int32 flags, void *data) {
105}
106
107
108void Template::SetClippingRects(BRect *rects, uint32 numRects) {
109}
110
111
112void Template::ClipToPicture(BPicture *picture, BPoint point, bool clip_to_inverse_picture) {
113}
114
115
116void Template::PushState() {
117}
118
119
120void Template::PopState() {
121}
122
123
124void Template::EnterStateChange() {
125}
126
127
128void Template::ExitStateChange() {
129}
130
131
132void Template::EnterFontState() {
133}
134
135
136void Template::ExitFontState() {
137}
138
139
140void Template::SetOrigin(BPoint pt) {
141}
142
143
144void Template::SetPenLocation(BPoint pt) {
145}
146
147
148void Template::SetDrawingMode(drawing_mode mode) {
149}
150
151
152void Template::SetLineMode(cap_mode capMode, join_mode joinMode, float miterLimit) {
153}
154
155
156void Template::SetPenSize(float size) {
157}
158
159
160void Template::SetForeColor(rgb_color color) {
161}
162
163
164void Template::SetBackColor(rgb_color color) {
165}
166
167
168void Template::SetStipplePattern(pattern p) {
169}
170
171
172void Template::SetScale(float scale) {
173}
174
175
176void Template::SetFontFamily(char *family) {
177}
178
179
180void Template::SetFontStyle(char *style) {
181}
182
183
184void Template::SetFontSpacing(int32 spacing) {
185}
186
187
188void Template::SetFontSize(float size) {
189}
190
191
192void Template::SetFontRotate(float rotation) {
193}
194
195
196void Template::SetFontEncoding(int32 encoding) {
197}
198
199
200void Template::SetFontFlags(int32 flags) {
201}
202
203
204void Template::SetFontShear(float shear) {
205}
206
207
208void Template::SetFontFace(int32 flags) {
209}
210
211
212
213