API  1.0.0
CPMenuItem.h
Go to the documentation of this file.
1 
2 @interface CPMenuItem : CPObject
3 {
4  BOOL _isSeparator;
5 
6  CPString _title;
7  //CPAttributedString _attributedTitle;
8 
9  CPFont _font;
10 
11  id _target;
12  SEL _action;
13 
14  BOOL _isEnabled;
15  BOOL _isHidden;
16 
17  int _tag;
18  int _state;
19 
20  CPImage _image;
21  CPImage _alternateImage;
22  CPImage _onStateImage;
23  CPImage _offStateImage;
24  CPImage _mixedStateImage;
25 
26  CPMenu _submenu;
27  CPMenu _menu;
28 
29  CPString _keyEquivalent;
30  unsigned _keyEquivalentModifierMask;
31 
32  int _mnemonicLocation;
33 
34  BOOL _isAlternate;
35  int _indentationLevel;
36 
37  CPString _toolTip;
38  id _representedObject;
39  CPView _view;
40 
41  int _changeCount;
42 
43  _CPMenuItemView _menuItemView;
44 }
45 @end
Definition: CPFont.h:2
Definition: CPMenu.h:2
An immutable string (collection of characters).
Definition: CPString.h:2
Definition: CPImage.h:2
Definition: CPView.j:137