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.NSMenu; 29 30 version(DigitalMars) version(OSX) version = darwin; 31 32 version (darwin): 33 34 import derelict.sdl.macinit.ID; 35 import derelict.sdl.macinit.NSArray; 36 import derelict.sdl.macinit.NSMenuItem; 37 import derelict.sdl.macinit.NSObject; 38 import derelict.sdl.macinit.NSString; 39 import derelict.sdl.macinit.runtime; 40 import derelict.sdl.macinit.selectors; 41 import derelict.sdl.macinit.string; 42 import derelict.util.compat; 43 44 package: 45 46 class NSMenu : NSObject 47 { 48 this () 49 { 50 id_ = null; 51 } 52 53 this (id id_) 54 { 55 this.id_ = id_; 56 } 57 58 static NSMenu alloc () 59 { 60 id result = objc_msgSend(cast(id)class_, sel_alloc); 61 return result ? new NSMenu(result) : null; 62 } 63 64 static Class class_ () 65 { 66 return cast(Class) objc_getClass!(this.stringof); 67 } 68 69 override NSMenu init () 70 { 71 id result = objc_msgSend(this.id_, sel_init); 72 return result ? this : null; 73 } 74 75 NSString title () 76 { 77 id result = objc_msgSend(this.id_, sel_title); 78 return result ? new NSString(result) : null; 79 } 80 81 NSMenu initWithTitle (NSString aTitle) 82 { 83 id result = objc_msgSend(this.id_, sel_initWithTitle, aTitle ? aTitle.id_ : null); 84 return result ? new NSMenu(result) : null; 85 } 86 87 void setTitle (NSString str) 88 { 89 objc_msgSend(this.id_, sel_setTitle, str ? str.id_ : null); 90 } 91 92 NSArray itemArray () 93 { 94 id result = objc_msgSend(this.id_, sel_itemArray); 95 return result ? new NSArray(result) : null; 96 } 97 98 void sizeToFit () 99 { 100 objc_msgSend(this.id_, sel_sizeToFit); 101 } 102 103 NSMenuItem addItemWithTitle (NSString str, SEL selector, NSString keyEquiv) 104 { 105 id result = objc_msgSend(this.id_, sel_addItemWithTitle_action_keyEquivalent, str ? str.id_ : null, selector, keyEquiv ? keyEquiv.id_ : null); 106 return result ? new NSMenuItem(result) : null; 107 } 108 109 void addItem (NSMenuItem newItem) 110 { 111 objc_msgSend(this.id_, sel_addItem, newItem ? newItem.id_ : null); 112 } 113 }