1 /* 2 3 Boost Software License - Version 1.0 - August 17th, 2003 4 5 Permission is hereby granted, free of charge, to any person or organization 6 obtaining a copy of the software and accompanying documentation covered by 7 this license (the "Software") to use, reproduce, display, distribute, 8 execute, and transmit the Software, and to prepare derivative works of the 9 Software, and to permit third-parties to whom the Software is furnished to 10 do so, all subject to the following: 11 12 The copyright notices in the Software and this entire statement, including 13 the above license grant, this restriction and the following disclaimer, 14 must be included in all copies of the Software, in whole or in part, and 15 all derivative works of the Software, unless such copies or derivative 16 works are solely in the form of machine-executable object code generated by 17 a source language processor. 18 19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 21 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 22 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 23 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 24 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 25 DEALINGS IN THE SOFTWARE. 26 27 */ 28 module derelict.sdl.macinit.NSApplication; 29 30 version(DigitalMars) version(OSX) version = darwin; 31 32 version (darwin): 33 34 import derelict.sdl.macinit.ID; 35 import derelict.sdl.macinit.NSMenu; 36 import derelict.sdl.macinit.NSObject; 37 import derelict.sdl.macinit.runtime; 38 import derelict.sdl.macinit.selectors; 39 import derelict.sdl.macinit.string; 40 import derelict.util.compat; 41 import derelict.util.loader; 42 43 package: 44 45 NSApplication NSApp; 46 47 static this () 48 { 49 NSApp = NSApplication.sharedApplication; 50 } 51 52 class NSApplication : NSObject 53 { 54 this () 55 { 56 id_ = null; 57 } 58 59 this (id id_) 60 { 61 this.id_ = id_; 62 } 63 64 static NSApplication alloc () 65 { 66 id result = objc_msgSend(cast(id)class_, sel_alloc); 67 return result ? new NSApplication(result) : null; 68 } 69 70 static Class class_ () 71 { 72 return cast(Class) objc_getClass!(this.stringof); 73 } 74 75 override NSApplication init () 76 { 77 id result = objc_msgSend(this.id_, sel_init); 78 return result ? this : null; 79 } 80 81 public static NSApplication sharedApplication () 82 { 83 id result = objc_msgSend(class_NSApplication, sel_sharedApplication); 84 return result ? new NSApplication(result) : null; 85 } 86 87 NSMenu mainMenu () 88 { 89 id result = objc_msgSend(this.id_, sel_mainMenu); 90 return result ? new NSMenu(result) : null; 91 } 92 93 void setAppleMenu (NSMenu menu) 94 { 95 objc_msgSend(this.id_, sel_setAppleMenu, menu ? menu.id_ : null); 96 } 97 98 void setWindowsMenu (NSMenu menu) 99 { 100 objc_msgSend(this.id_, sel_setWindowsMenu, menu ? menu.id_ : null); 101 } 102 103 void setMainMenu (NSMenu menu) 104 { 105 objc_msgSend(this.id_, sel_setMainMenu, menu ? menu.id_ : null); 106 } 107 108 void setDelegate (ID object) 109 { 110 objc_msgSend(this.id_, sel_setDelegate, object ? object.id_ : null); 111 } 112 113 void run () 114 { 115 objc_msgSend(this.id_, sel_run); 116 } 117 118 void stop (ID sender) 119 { 120 objc_msgSend(this.id_, sel_stop, sender ? sender.id_ : null); 121 } 122 }