Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / appkit / NSTouch.inc
Size: Mime:
{ Parsed from AppKit.framework NSTouch.h }


{$ifdef TYPES}
type
  NSTouchPtr = ^NSTouch;
{$endif}

{$ifdef TYPES}
type
  NSTouchPhase = NSUInteger;
  NSTouchPhasePtr = ^NSTouchPhase;

const
  NSTouchPhaseBegan = 1 shl 0;
  NSTouchPhaseMoved = 1 shl 1;
  NSTouchPhaseStationary = 1 shl 2;
  NSTouchPhaseEnded = 1 shl 3;
  NSTouchPhaseCancelled = 1 shl 4;
  NSTouchPhaseTouching = NSTouchPhaseBegan + NSTouchPhaseMoved + NSTouchPhaseStationary;
  NSTouchPhaseAny = NSUIntegerMax;
{$endif}

{$ifdef CLASSES}

type
  NSTouch = objcclass external (NSObject, NSCopyingProtocol)
  private
    _index: NSInteger;
    _identity: id;
    _phase: NSTouchPhase;
    _normalizedPosition: NSPoint;
    _privateFlags: NSInteger;
    _view: NSView;
    {$if  not defined(__LP64__)}
    _reserved1: id;
    _reserved2: id;
    _reserved3: id;
    _reserved4: id;
    {$endif}
    _device: id;
    _deviceSize: NSSize;
    {$if  not defined(__LP64__)}
    _reserved5: id;
    _reserved6: id;
    _reserved7: id;
    _reserved8: id;
    {$endif}
  public
    function identity: id; message 'identity';
    function phase: NSTouchPhase; message 'phase';
    function normalizedPosition: NSPoint; message 'normalizedPosition';
    function isResting: ObjCBOOL; message 'isResting';
    function device: id; message 'device';
    function deviceSize: NSSize; message 'deviceSize';

    { Adopted protocols }
    function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
  end;
{$endif}