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.NSMenuItem;
29 
30 version(DigitalMars) version(OSX) version = darwin;
31 
32 version (darwin):
33 
34 import derelict.sdl.macinit.ID;
35 import derelict.sdl.macinit.NSGeometry;
36 import derelict.sdl.macinit.NSMenu;
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 NSMenuItem : NSObject
47 {
48     this ()
49     {
50         id_ = null;
51     }
52 
53     this (id id_)
54     {
55         this.id_ = id_;
56     }
57 
58     static NSMenuItem alloc ()
59     {
60         id result = objc_msgSend(cast(id)class_, sel_alloc);
61         return result ? new NSMenuItem(result) : null;
62     }
63 
64     static Class class_ ()
65     {
66         return cast(Class) objc_getClass!(this.stringof);
67     }
68 
69     override NSMenuItem init ()
70     {
71         id result = objc_msgSend(this.id_, sel_init);
72         return result ? this : null;
73     }
74 
75     static NSMenuItem separatorItem ()
76     {
77         id result = objc_msgSend(class_NSMenuItem, sel_separatorItem);
78         return result ? new NSMenuItem(result) : null;
79     }
80 
81     NSMenuItem initWithTitle (NSString itemName, SEL anAction, NSString charCode)
82     {
83         id result = objc_msgSend(this.id_, sel_initWithTitle_action_keyEquivalent, itemName ? itemName.id_ : null, anAction, charCode ? charCode.id_ : null);
84         return result ? new NSMenuItem(result) : null;
85     }
86 
87     NSString title ()
88     {
89         id result = objc_msgSend(this.id_, sel_title);
90         return result ? new NSString(result) : null;
91     }
92 
93     void setTitle (NSString str)
94     {
95         objc_msgSend(this.id_, sel_setTitle, str ? str.id_ : null);
96     }
97 
98     bool hasSubmenu ()
99     {
100         return objc_msgSend(this.id_, sel_hasSubmenu) !is null;
101     }
102 
103     NSMenu submenu ()
104     {
105         id result = objc_msgSend(this.id_, sel_submenu);
106         return result ? new NSMenu(result) : null;
107     }
108 
109     void setKeyEquivalentModifierMask (NSUInteger mask)
110     {
111         objc_msgSend(this.id_, sel_setKeyEquivalentModifierMask, mask);
112     }
113 
114     void setSubmenu (NSMenu submenu)
115     {
116         objc_msgSend(this.id_, sel_setSubmenu, submenu ? submenu.id_ : null);
117     }
118 }