summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/appkit/NSUserInterfaceValidation.inc
blob: 8bd97ae902815a5bb7af04300f6ac7a0cc4e7bed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ Parsed from AppKit.framework NSUserInterfaceValidation.h }


{$ifdef TYPES}
type
  NSValidatedUserInterfaceItemProtocolPtr = ^NSValidatedUserInterfaceItemProtocol;
  NSUserInterfaceValidationsProtocolPtr = ^NSUserInterfaceValidationsProtocol;
{$endif}

{$ifdef PROTOCOLS}

type
  NSValidatedUserInterfaceItemProtocol = objcprotocol external name 'NSValidatedUserInterfaceItem'
    function action: SEL; message 'action';
    function tag: NSInteger; message 'tag';
  end;

type
  NSUserInterfaceValidationsProtocol = objcprotocol external name 'NSUserInterfaceValidations'
    function validateUserInterfaceItem (anItem: NSValidatedUserInterfaceItemProtocol): ObjCBOOL; message 'validateUserInterfaceItem:';
  end;
{$endif}