mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
27 lines
496 B
ObjectPascal
27 lines
496 B
ObjectPascal
{ %target=darwin }
|
|
{ %norun }
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch objectivec1}
|
|
|
|
program Main;
|
|
uses
|
|
CocoaAll;
|
|
|
|
type
|
|
TSomeView = objcclass (NSView)
|
|
function canvasPointFromEvent (theEvent: NSEvent): NSPoint; message 'canvasPointFromEvent:';
|
|
end;
|
|
|
|
function TSomeView.canvasPointFromEvent (theEvent: NSEvent): NSPoint;
|
|
begin
|
|
result := convertPoint_fromView(theEvent.locationInWindow, nil);
|
|
end;
|
|
|
|
var
|
|
argc: LongInt;
|
|
argv: PPChar;
|
|
begin
|
|
NSApplicationMain(argc, argv);
|
|
end.
|