NSWindowScripting.inc 1.2 KB

123456789101112131415161718192021222324
  1. { Parsed from AppKit.framework NSWindowScripting.h }
  2. {$ifdef CLASSES}
  3. type
  4. NSWindow_NSScripting = objccategory external name 'NSScripting' (NSWindow)
  5. function hasCloseBox: ObjCBOOL; message 'hasCloseBox';
  6. function hasTitleBar: ObjCBOOL; message 'hasTitleBar';
  7. function isFloatingPanel: ObjCBOOL; message 'isFloatingPanel';
  8. function isMiniaturizable: ObjCBOOL; message 'isMiniaturizable';
  9. function isModalPanel: ObjCBOOL; message 'isModalPanel';
  10. function isResizable: ObjCBOOL; message 'isResizable';
  11. function isZoomable: ObjCBOOL; message 'isZoomable';
  12. procedure setOrderedIndex(newValue: NSInteger); message 'setOrderedIndex:';
  13. function orderedIndex: NSInteger; message 'orderedIndex';
  14. procedure setIsMiniaturized (flag: ObjCBOOL); message 'setIsMiniaturized:';
  15. procedure setIsVisible (flag: ObjCBOOL); message 'setIsVisible:';
  16. procedure setIsZoomed (flag: ObjCBOOL); message 'setIsZoomed:';
  17. function handleCloseScriptCommand (command: NSCloseCommand): id; message 'handleCloseScriptCommand:';
  18. function handlePrintScriptCommand (command: NSScriptCommand): id; message 'handlePrintScriptCommand:';
  19. function handleSaveScriptCommand (command: NSScriptCommand): id; message 'handleSaveScriptCommand:';
  20. end;
  21. {$endif}