linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / CocoaMenuItem.schelp
blobc7867b64532a10bb7de2f7f976590f3f2d1d387e
1 class:: CocoaMenuItem
2 summary:: Abstract superclass of OSX Menu Items
3 categories:: GUI
4 related:: Classes/SCMenuItem, Classes/SCMenuGroup, Classes/SCMenuSeparator
6 description::
7 CocoaMenuItem represents a menu item or sub menu in the application menu. This is an abstract class. Generally you will deal with the subclasses SCMenuItem, SCMenuGroup, and SCMenuSeparator, but the convenience method *add (see below) allows one to easily add items to a default 'Library' menu.
10 classmethods::
12 method:: clearCustomItems
13 Clear all custom menu items.
15 method:: default
16 Returns the 'Library' menu, creating it if necessary.
18 method:: add
19 Add an item to the Library menu. The Library menu will be created automatically if needed.
20 argument:: names
21 An link::Classes/Array:: of link::Classes/String::s indicating the menu path to this item.
22 argument:: action
23 A link::Classes/Function:: that will be evaluated when this item is selected.
26 instancemethods::
28 method:: action
29 Get or set this item's action. This is a Function that will be evaluated when this item is selected.
32 method:: state
33 Get or set this item's state. If bool is true a check mark is displayed next to the item.
34 argument:: bool
36 method:: remove
37 Remove the receiver and its children (if any).
39 method:: enabled
40 Enable or disable this menu item.
41 argument:: bool
42 A link::Classes/Boolean:: indicating whether this item should be enabled or disabled.
44 method:: setShortCut
45 Set the keyboard shortcut for this item. The Cmd key is assumed.
46 argument:: string
47 A link::Classes/String:: indicating the character for this shortcut.
48 argument:: alt
49 A link::Classes/Boolean:: indicating whether the alt key is included in this shortcut. Default value is false.
50 argument:: ctrl
51 A link::Classes/Boolean:: indicating whether the ctrl key is included in this shortcut. Default value is false.
53 method:: doAction
54 Evaluate the receiver's action function.
57 examples::
59 code::
60 // Simple example
61 g = SCMenuGroup(nil, "stuff", 10);
62 i = SCMenuItem(g, "foo");
63 j = SCMenuItem(g, "bar");
64 j.action = { "bar!!".postln };
65 k = SCMenuSeparator(g, 1); // add a separator
66 i.enabled = false;
67 j.state = true;
68 j.setShortCut("$", true, true); // Cmd-ctrl-alt-$
70 // using *add
71 CocoaMenuItem.add(["hallo", "world"], { "hallo menu".postln });
72 CocoaMenuItem.add(["hallo", "world", "here"], { "hallo here".postln }); // fails correctly
73 CocoaMenuItem.add(["mellow", "world", "here"], { "mellow here".postln }); // works.
74 CocoaMenuItem.add(["hallo", "thought"], { "hallo world".scramble.postln });
76 CocoaMenuItem.clearCustomItems;