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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
|
{
fpGUI - Free Pascal Graphical User Interface
GFX_Carbon - Carbon (Mac OS X) target implementation
Copyright (C) 2006 - 2007 See the file AUTHORS, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, 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_carbon;
{$ifdef fpc}
{$mode delphi}{$H+}
{$endif}
interface
uses
{ Pascal RTL Units }
SysUtils, Classes,
{ Carbon headers }
FPCMacOSAll,
{ fpGfx units }
GfxBase;
type
ECarbonError = class(EGfxError);
{ TCarbonFont }
TCarbonFont = class(TFCustomFont)
public
class function GetDefaultFontName(const AFontClass: TGfxFontClass): String; override;
constructor Create(const Descriptor: String);
destructor Destroy; override;
end;
{ TCarbonCanvas }
TCarbonCanvas = class(TFCustomCanvas)
private
protected
function DoExcludeClipRect(const ARect: TRect): Boolean; override;
function DoIntersectClipRect(const ARect: TRect): Boolean; override;
function DoUnionClipRect(const ARect: TRect): Boolean; override;
function DoGetClipRect: TRect; override;
procedure DoDrawArc(const ARect: TRect; StartAngle, EndAngle: Single); override;
procedure DoDrawCircle(const ARect: TRect); override;
procedure DoDrawLine(const AFrom, ATo: TPoint); override;
procedure DoDrawPoint(const APoint: TPoint); override;
procedure DoFillRect(const ARect: TRect); override;
procedure DoTextOut(const APosition: TPoint; const AText: String); override;
procedure DoCopyRect(ASource: TFCustomCanvas; const ASourceRect: TRect; const ADestPos: TPoint); override;
procedure DoMaskedCopyRect(ASource, AMask: TFCustomCanvas; const ASourceRect: TRect; const AMaskPos, ADestPos: TPoint); override;
procedure DoDrawImageRect(AImage: TFCustomBitmap; ASourceRect: TRect; const ADestPos: TPoint); override;
public
constructor Create;
destructor Destroy; override;
function MapColor(const AColor: TGfxColor): TGfxPixel; override;
function FontCellHeight: Integer; override;
function TextExtent(const AText: String): TSize; override;
procedure SaveState; override;
procedure RestoreState; override;
procedure EmptyClipRect; override;
procedure DoSetColor(AColor: TGfxPixel); override;
procedure SetFont(AFont: TFCustomFont); override;
procedure SetLineStyle(ALineStyle: TGfxLineStyle); override;
end;
{ TCarbonWindowCanvas }
TCarbonWindowCanvas = class(TCarbonCanvas)
public
constructor Create;
destructor Destroy; override;
end;
{ TCarbonBitmapCanvas }
TCarbonBitmapCanvas = class(TCarbonCanvas)
public
constructor Create(AWidth, AHeight: Integer);
destructor Destroy; override;
end;
{ TCarbonBitmap }
TCarbonBitmap = class(TFCustomBitmap)
private
IsLocked: Boolean;
public
constructor Create(AWidth, AHeight: Integer; APixelFormat: TGfxPixelFormat); override;
destructor Destroy; override;
procedure Lock(out AData: Pointer; out AStride: LongWord); override;
procedure Unlock; override;
end;
{ TCarbonScreen }
TCarbonScreen = class(TFCustomScreen)
public
constructor Create; override;
end;
{ TCarbonApplication }
TCarbonApplication = class(TFCustomApplication)
private
public
{ default methods }
constructor Create; override;
destructor Destroy; override;
procedure Initialize(ADisplayName: String = ''); override;
procedure Run; override;
procedure Quit; override;
end;
{ TCarbonWindow }
TCarbonWindow = class(TFCustomWindow)
private
FHandle: WindowRef;
contentView: HIViewRef;
protected
function GetTitle: String; override;
procedure SetTitle(const ATitle: String); override;
procedure DoSetCursor; override;
function GetHandle: PtrUInt; override;
public
constructor Create(AParent: TFCustomWindow; AWindowOptions: TFWindowOptions); override;
destructor Destroy; override;
procedure DefaultHandler(var Message); override;
procedure SetPosition(const APosition: TPoint); override;
procedure SetSize(const ASize: TSize); override;
procedure SetMinMaxSize(const AMinSize, AMaxSize: TSize); override;
procedure SetClientSize(const ASize: TSize); override;
procedure SetMinMaxClientSize(const AMinSize, AMaxSize: TSize); override;
procedure Show; override;
procedure Invalidate; override;
procedure CaptureMouse; override;
procedure ReleaseMouse; override;
end;
implementation
{ TCarbonFont }
class function TCarbonFont.GetDefaultFontName(const AFontClass: TGfxFontClass): String;
begin
Result:=inherited GetDefaultFontName(AFontClass);
end;
constructor TCarbonFont.Create(const Descriptor: String);
begin
end;
destructor TCarbonFont.Destroy;
begin
inherited Destroy;
end;
{ TCarbonCanvas }
function TCarbonCanvas.DoExcludeClipRect(const ARect: TRect): Boolean;
begin
end;
function TCarbonCanvas.DoIntersectClipRect(const ARect: TRect): Boolean;
begin
end;
function TCarbonCanvas.DoUnionClipRect(const ARect: TRect): Boolean;
begin
end;
function TCarbonCanvas.DoGetClipRect: TRect;
begin
end;
procedure TCarbonCanvas.DoDrawArc(const ARect: TRect; StartAngle, EndAngle: Single);
begin
end;
procedure TCarbonCanvas.DoDrawCircle(const ARect: TRect);
begin
end;
procedure TCarbonCanvas.DoDrawLine(const AFrom, ATo: TPoint);
begin
end;
procedure TCarbonCanvas.DoDrawPoint(const APoint: TPoint);
begin
end;
procedure TCarbonCanvas.DoFillRect(const ARect: TRect);
begin
end;
procedure TCarbonCanvas.DoTextOut(const APosition: TPoint; const AText: String);
begin
end;
procedure TCarbonCanvas.DoCopyRect(ASource: TFCustomCanvas;
const ASourceRect: TRect; const ADestPos: TPoint);
begin
end;
procedure TCarbonCanvas.DoMaskedCopyRect(ASource, AMask: TFCustomCanvas;
const ASourceRect: TRect; const AMaskPos, ADestPos: TPoint);
begin
end;
procedure TCarbonCanvas.DoDrawImageRect(AImage: TFCustomBitmap;
ASourceRect: TRect; const ADestPos: TPoint);
begin
end;
constructor TCarbonCanvas.Create;
begin
inherited Create;
end;
destructor TCarbonCanvas.Destroy;
begin
inherited Destroy;
end;
function TCarbonCanvas.MapColor(const AColor: TGfxColor): TGfxPixel;
begin
end;
function TCarbonCanvas.FontCellHeight: Integer;
begin
end;
function TCarbonCanvas.TextExtent(const AText: String): TSize;
begin
end;
procedure TCarbonCanvas.SaveState;
begin
end;
procedure TCarbonCanvas.RestoreState;
begin
end;
procedure TCarbonCanvas.EmptyClipRect;
begin
end;
procedure TCarbonCanvas.DoSetColor(AColor: TGfxPixel);
begin
end;
procedure TCarbonCanvas.SetFont(AFont: TFCustomFont);
begin
end;
procedure TCarbonCanvas.SetLineStyle(ALineStyle: TGfxLineStyle);
begin
end;
{ TCarbonWindowCanvas }
constructor TCarbonWindowCanvas.Create;
begin
end;
destructor TCarbonWindowCanvas.Destroy;
begin
inherited Destroy;
end;
{ TCarbonBitmapCanvas }
constructor TCarbonBitmapCanvas.Create(AWidth, AHeight: Integer);
begin
end;
destructor TCarbonBitmapCanvas.Destroy;
begin
inherited Destroy;
end;
{ TCarbonBitmap }
constructor TCarbonBitmap.Create(AWidth, AHeight: Integer;
APixelFormat: TGfxPixelFormat);
begin
inherited Create(AWidth, AHeight, APixelFormat);
end;
destructor TCarbonBitmap.Destroy;
begin
inherited Destroy;
end;
procedure TCarbonBitmap.Lock(out AData: Pointer; out AStride: LongWord);
begin
end;
procedure TCarbonBitmap.Unlock;
begin
end;
{ TCarbonScreen }
constructor TCarbonScreen.Create;
begin
inherited Create;
end;
{ TCarbonApplication }
constructor TCarbonApplication.Create;
begin
inherited Create;
end;
destructor TCarbonApplication.Destroy;
begin
inherited Destroy;
end;
procedure TCarbonApplication.Initialize(ADisplayName: String);
begin
end;
procedure TCarbonApplication.Run;
begin
RunApplicationEventLoop();
end;
procedure TCarbonApplication.Quit;
begin
end;
{ TCarbonWindow }
function WindowCommandHandler(nextHandler: EventHandlerCallRef; theEvent: EventRef; userDataPtr: UnivPtr): OSStatus;
var
status: OSStatus;
ignoreResult: OSStatus;
aCommand: HICommand;
theAssociatedControl: ControlRef;
begin
status := eventNotHandledErr;
ignoreResult := GetEventParameter(theEvent, kEventParamDirectObject, typeHICommand, NIL, sizeof(aCommand), NIL, @aCommand);
// if aCommand.commandID = UInt32(FourCharCode(kButtonHello)) then status := ButtonHelloPressed()
// else if aCommand.commandID = UInt32(FourCharCode(kButtonMessage)) then status := ButtonMessagePressed();
Result := status;
end;
function TCarbonWindow.GetTitle: String;
begin
end;
procedure TCarbonWindow.SetTitle(const ATitle: String);
begin
end;
procedure TCarbonWindow.DoSetCursor;
begin
end;
function TCarbonWindow.GetHandle: PtrUInt;
begin
Result := PtrUInt(FHandle);
end;
constructor TCarbonWindow.Create(AParent: TFCustomWindow; AWindowOptions: TFWindowOptions);
var
status, ignoreResult: OSStatus;
cmdEvent: EventTypeSpec;
eventHandler: EventHandlerUPP;
QDRect: FPCMacOSAll.Rect;
begin
QDRect.left := 50;
QDRect.Top := 50;
QDRect.right := 300;
QDRect.bottom := 300;
status := CreateNewWindow(kDocumentWindowClass,
(kWindowStandardDocumentAttributes or kWindowStandardHandlerAttribute
or kWindowCompositingAttribute),
QDRect, FHandle);
if (status <> noErr) or (FHandle = nil) then
begin
// DoShowMessage('Error', 'CreateNewWindow failed');
end;
ignoreResult := SetWindowTitleWithCFString(FHandle, CFSTRP('Carbon FPC Hello World'));
ignoreResult := HIViewFindByID(HIViewGetRoot(FHandle), kHIViewWindowContentID, contentView);
{ Add events }
cmdEvent.eventClass := kEventClassCommand;
cmdEvent.eventKind := kEventCommandProcess;
eventHandler := NewEventHandlerUPP(@WindowCommandHandler);
ignoreResult := InstallEventHandler(GetWindowEventTarget(FHandle),
eventHandler, 1, @cmdEvent, nil, nil);
{ Creates a canvas }
FCanvas := TCarbonCanvas.Create;
end;
destructor TCarbonWindow.Destroy;
begin
end;
procedure TCarbonWindow.DefaultHandler(var Message);
begin
end;
procedure TCarbonWindow.SetPosition(const APosition: TPoint);
begin
end;
procedure TCarbonWindow.SetSize(const ASize: TSize);
begin
end;
procedure TCarbonWindow.SetMinMaxSize(const AMinSize, AMaxSize: TSize);
begin
end;
procedure TCarbonWindow.SetClientSize(const ASize: TSize);
begin
end;
procedure TCarbonWindow.SetMinMaxClientSize(const AMinSize, AMaxSize: TSize);
begin
end;
procedure TCarbonWindow.Show;
begin
ShowWindow(FHandle);
end;
procedure TCarbonWindow.Invalidate;
begin
end;
procedure TCarbonWindow.CaptureMouse;
begin
end;
procedure TCarbonWindow.ReleaseMouse;
begin
end;
end.
|