summaryrefslogtreecommitdiff
path: root/gfx/template/gfx_xxx.pas
blob: 904c929b53face8ca1aadb53800cbc641c9c90a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
{
    fpGFX  -  Free Pascal Graphics Library
    Copyright (C) 2000 by
      Areca Systems GmbH / Sebastian Guenther, sg@freepascal.org
    Copyright (C) 2006 by Graeme Geldenhuys 
      member of the fpGFX development team.

    Template for new target implementations

    See the file COPYING.fpGFX, included in this distribution,
    for details about the copyright.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 **********************************************************************}


unit GFX_xxx;

interface

uses
  SysUtils, Classes,	// FPC units
                  	// xxx (insert target dependent units here)
  GfxBase;		// fpGUI units

type

  ExxxError = class(EGfxError);

  TxxxDrawable = class;
  TxxxDisplay = class;

  TxxxFont = class(TGfxFont)
  public
    constructor Create;
    destructor Destroy; override;
  end;

  PxxxDrawableState = ^TxxxDrawableState;
  TxxxDrawableState = record
    Prev: PxxxDrawableState;
    Matrix: TGfxMatrix;
    // xxx Region data etc.
  end;

  TxxxDrawable = class(TGfxDrawable)
  private
    FDisplay: TxxxDisplay;
    FStateStackpointer: PxxxDrawableState;
    procedure Resized(NewWidth, NewHeight: Integer);
  public
    constructor Create(ADisplay: TxxxDisplay);	// xxx And other arguments optionally
    destructor Destroy; override;

    function CreateMemoryDrawable(AWidth, AHeight: Cardinal;
      const APixelFormat: TGfxPixelFormat;
      AStride: LongWord; AData: Pointer): TGfxDrawable; override;

    procedure SaveState; override;
    procedure RestoreState; override;
    function ExcludeClipRect(const ARect: TRect): Boolean; override;
    function IntersectClipRect(const ARect: TRect): Boolean; override;
    function GetClipRect: TRect; override;
    function MapColor(const AColor: TGfxColor): TGfxPixel; override;
    procedure SetColor(AColor: TGfxPixel); override;
    procedure SetFont(AFont: TGfxFont); override;
    procedure SetLineStyle(ALineStyle: TGfxLineStyle); override;

    procedure DrawArc(const Rect: TRect; StartAngle, EndAngle: Single); override;
    procedure DrawCircle(const Rect: TRect); override;
    procedure DrawLine(x1, y1, x2, y2: Integer); override;
    procedure FillRect(const Rect: TRect); override;
    function FontCellHeight: Integer; override;
    function TextWidth(const AText: String): Cardinal; override;
    procedure TextOut(x, y: Integer; const AText: String); override;

    procedure CopyRect(ASource: TGfxDrawable; const ASourceRect: TRect;
      ADestX, ADestY: Integer); override;


    property Display: TxxxDisplay read FDisplay;
  end;


  TxxxWindow = class;

  TxxxDisplay = class(TGfxDisplay)
  public
    destructor Destroy; override;
    function CreateFont(const Descriptor: String): TGfxFont; override;
    function CreateWindow: TGfxWindow; override;
    procedure Run; override;
  end;


  xxxSomeHandleType = Pointer;	// !!!: Remove this in your implementation

  TxxxWindow = class(TGfxWindow)
  private
    FHandle: xxxSomeHandleType;
  protected
    function GetTitle: String; override;
    procedure SetTitle(const ATitle: String); override;
  private
    constructor Create(ADisplay: TxxxDisplay);
  public
    destructor Destroy; override;

    procedure SetSize(AWidth, AHeight: Cardinal); override;
    procedure SetMinMaxSize(AMinWidth, AMinHeight,
      AMaxWidth, AMaxHeight: Cardinal); override;
    procedure Show; override;
    procedure Invalidate(const ARect: TRect); override;
    procedure CaptureMouse; override;
    procedure ReleaseMouse; override;

    property Handle: xxxSomeHandleType read FHandle;
  end;


// ===================================================================
// ===================================================================

implementation


// -------------------------------------------------------------------
//   TxxxFont
// -------------------------------------------------------------------

constructor TxxxFont.Create;
begin
  inherited Create;
  // !!!: Implement this
end;

destructor TxxxFont.Destroy;
begin
  // !!!: Implement this
  inherited Destroy;
end;


// -------------------------------------------------------------------
//   TxxxDrawable
// -------------------------------------------------------------------



// -------------------------------------------------------------------
//   TxxxDrawable
// -------------------------------------------------------------------

constructor TxxxDrawable.Create(ADisplay: TxxxDisplay);
begin
  inherited Create;
  FDisplay := ADisplay;
  // !!!: Create handle, init graphics state (line attributes, font etc.)
end;

destructor TxxxDrawable.Destroy;
begin
  // !!!: Implement this
  inherited Destroy;
end;

function TxxxDrawable.CreateMemoryDrawable(AWidth, AHeight: Cardinal;
  const APixelFormat: TGfxPixelFormat;
  AStride: LongWord; AData: Pointer): TGfxDrawable;
begin
  // !!!: Implement this
  raise EGfxError.Create(SUnsupportedPixelFormat);
  Result := nil;
end;

procedure TxxxDrawable.SaveState;
var
  SavedState: PxxxDrawableState;
begin
  New(SavedState);
  SavedState^.Prev := FStateStackpointer;
  SavedState^.Matrix := Matrix;
  // !!!: Save additional state informations
  FStateStackpointer := SavedState;
end;

procedure TxxxDrawable.RestoreState;
var
  SavedState: PxxxDrawableState;
begin
  SavedState := FStateStackpointer;
  FStateStackpointer := SavedState^.Prev;
  Matrix := SavedState^.Matrix;
  // !!!: Restore additional state informations
  Dispose(SavedState);
end;

function TxxxDrawable.ExcludeClipRect(const ARect: TRect): Boolean;
var
  x1, y1, x2, y2: Integer;
begin
  Transform(ARect.Left, ARect.Top, x1, y1);
  Transform(ARect.Right, ARect.Bottom, x2, y2);

  if (x2 > x1) and (y2 > y1) then
  begin
    // !!!: Implement this
    Result := True; // !!!: Return False if region is empty
  end else
    Result := False;
end;

function TxxxDrawable.IntersectClipRect(const ARect: TRect): Boolean;
var
  x1, y1, x2, y2: Integer;
begin
  Transform(ARect.Left, ARect.Top, x1, y1);
  Transform(ARect.Right, ARect.Bottom, x2, y2);

  if (x2 > x1) and (y2 > y1) then
  begin
    // !!!: Implement this
    Result := True; // !!!: Return False if region is empty
  end else
    Result := False;
end;

function TxxxDrawable.GetClipRect: TRect;
begin
  // !!!: Implement this
  Result.Left := 0;
  Result.Top := 0;
  Result.Right := 0;
  Result.Bottom := 0;
end;

function TxxxDrawable.MapColor(const AColor: TGfxColor): TGfxPixel;
begin
  // !!!: Implement this
  Result := 0;
end;

procedure TxxxDrawable.SetColor(AColor: TGfxPixel);
begin
  // !!!: Implement this
end;

procedure TxxxDrawable.SetFont(AFont: TGfxFont);
begin
  // !!!: Implement this
end;

procedure TxxxDrawable.SetLineStyle(ALineStyle: TGfxLineStyle);
begin
  // !!!: Implement this
end;

procedure TxxxDrawable.DrawArc(const Rect: TRect; StartAngle, EndAngle: Single);
var
  x1, y1, x2, y2: Integer;
begin
  Transform(Rect.Left, Rect.Top, x1, y1);
  Transform(Rect.Right, Rect.Bottom, x2, y2);
  // !!!: Implement this
end;

procedure TxxxDrawable.DrawCircle(const Rect: TRect);
var
  x1, y1, x2, y2: Integer;
begin
  Transform(Rect.Left, Rect.Top, x1, y1);
  Transform(Rect.Right, Rect.Bottom, x2, y2);
  // !!!: Implement this
end;

procedure TxxxDrawable.DrawLine(x1, y1, x2, y2: Integer);
begin
  Transform(x1, y1, x1, y1);
  Transform(x2, y2, x2, y2);
  // !!!: Implement this
end;

procedure TxxxDrawable.FillRect(const Rect: TRect);
var
  r: TRect;
begin
  Transform(Rect.Left, Rect.Top, r.Left, r.Top);
  Transform(Rect.Right, Rect.Bottom, r.Right, r.Bottom);
  // !!!: Implement this
end;

function TxxxDrawable.FontCellHeight: Integer;
begin
  // !!!: Implement this
  Result := 16;
end;

function TxxxDrawable.TextWidth(const AText: String): Cardinal;
begin
  // !!!: Implement this
  Result := 16 * Length(AText);
end;

procedure TxxxDrawable.TextOut(x, y: Integer; const AText: String);
begin
  Transform(x, y, x, y);
  // !!!: Implement this
end;

procedure TxxxDrawable.CopyRect(ASource: TGfxDrawable; const ASourceRect: TRect;
  DestX, DestY: Integer);
begin
  Transform(DestX, DestY, DestX, DestY);
  // !!!: Implement this
end;

procedure TxxxDrawable.Resized(NewWidth, NewHeight: Integer);
begin
  FWidth := NewWidth;
  FHeight := NewHeight;
end;


// -------------------------------------------------------------------
//   TxxxDisplay
// -------------------------------------------------------------------

destructor TxxxDisplay.Destroy;
begin
  // !!!: Implement this
  inherited Destroy;
end;

function TxxxDisplay.CreateFont(const Descriptor: String): TGfxFont;
begin
  Result := TxxxFont.Create;
end;

function TxxxDisplay.CreateWindow: TGfxWindow;
begin
  Result := TxxxWindow.Create(Self);
  // !!!: Implement this
end;

procedure TxxxDisplay.Run;
begin
  // !!!: Implement this
end;


// -------------------------------------------------------------------
//   TxxxWindow
// -------------------------------------------------------------------

function TxxxWindow.GetTitle: String;
begin
  // !!!: Implement this
  Result := inherited;
end;

procedure TxxxWindow.SetTitle(const ATitle: String);
begin
  // !!!: Implement this
end;

constructor TxxxWindow.Create(ADisplay: TxxxDisplay);
begin
  inherited Create;
  FDisplay := ADisplay;
  // !!!: Implement this
  FDrawable := TxxxDrawable.Create(ADisplay); // !!!: Create a suitable drawable
end;

destructor TxxxWindow.Destroy;
begin
  if Assigned(OnClose) then
    OnClose(Self);

  Drawable.Free;

  // !!!: Clean up

  inherited Destroy;
end;

procedure TxxxWindow.SetSize(AWidth, AHeight: Cardinal);
begin
  // !!!: Implement this
end;

procedure TxxxWindow.SetMinMaxSize(AMinWidth, AMinHeight,
  AMaxWidth, AMaxHeight: Cardinal);
begin
  // !!!: Implement this
end;

procedure TxxxWindow.Show;
begin
  // !!!: Implement this
end;

procedure TxxxWindow.Invalidate(const ARect: TRect);
begin
  // !!!: Implement this
end;

procedure TxxxWindow.CaptureMouse;
begin
  // !!!: Implement this
end;

procedure TxxxWindow.ReleaseMouse;
begin
  // !!!: Implement this
end;


end.


{
  $Log: gfx_xxx.pp,v $
  Revision 1.3  2000/12/23 23:07:24  sg
  *** empty log message ***

  Revision 1.2  2000/10/28 20:28:27  sg
  * First version

  Revision 1.1  2000/08/04 21:05:53  sg
  * First version in CVS

}