summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/webkit/WKWindowFeatures.inc
blob: adda67665d1f770ebd08d55fe0f5797d545f7163 (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
{ Parsed from WebKit.framework WKWindowFeatures.h }


{$ifdef TYPES}
type
  WKWindowFeaturesPtr = ^WKWindowFeatures;
{$endif}

{$if defined(WK_API_ENABLED)}
{$ifdef CLASSES}

type
  WKWindowFeatures = objcclass external (NSObject)
  public
    function menuBarVisibility: NSNumber; message 'menuBarVisibility';
    function statusBarVisibility: NSNumber; message 'statusBarVisibility';
    function toolbarsVisibility: NSNumber; message 'toolbarsVisibility';
    function allowsResizing: NSNumber; message 'allowsResizing';
    function x: NSNumber; message 'x';
    function y: NSNumber; message 'y';
    function width: NSNumber; message 'width';
    function height: NSNumber; message 'height';
  end;
{$endif}

{$endif}