summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/appkit/NSWindowScripting.inc
blob: 69cfc24c82e6710ea8884d25aff3e2a8b46e9925 (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
{ Parsed from AppKit.framework NSWindowScripting.h }

{$ifdef CLASSES}

type
  NSWindow_NSScripting = objccategory external name 'NSScripting' (NSWindow)
    function hasCloseBox: ObjCBOOL; message 'hasCloseBox';
    function hasTitleBar: ObjCBOOL; message 'hasTitleBar';
    function isFloatingPanel: ObjCBOOL; message 'isFloatingPanel';
    function isMiniaturizable: ObjCBOOL; message 'isMiniaturizable';
    function isModalPanel: ObjCBOOL; message 'isModalPanel';
    function isResizable: ObjCBOOL; message 'isResizable';
    function isZoomable: ObjCBOOL; message 'isZoomable';
    procedure setOrderedIndex(newValue: NSInteger); message 'setOrderedIndex:';
    function orderedIndex: NSInteger; message 'orderedIndex';
    procedure setIsMiniaturized (flag: ObjCBOOL); message 'setIsMiniaturized:';
    procedure setIsVisible (flag: ObjCBOOL); message 'setIsVisible:';
    procedure setIsZoomed (flag: ObjCBOOL); message 'setIsZoomed:';
    function handleCloseScriptCommand (command: NSCloseCommand): id; message 'handleCloseScriptCommand:';
    function handlePrintScriptCommand (command: NSScriptCommand): id; message 'handlePrintScriptCommand:';
    function handleSaveScriptCommand (command: NSScriptCommand): id; message 'handleSaveScriptCommand:';
  end;
{$endif}