API 0.9.5
AppKit/CPMenuItem/CPMenuItem.h
Go to the documentation of this file.
00001 
00002 @interface CPMenuItem : CPObject
00003 {
00004     BOOL            _isSeparator;
00005 
00006     CPString        _title;
00007     //CPAttributedString  _attributedTitle;
00008 
00009     CPFont          _font;
00010 
00011     id              _target;
00012     SEL             _action;
00013 
00014     BOOL            _isEnabled;
00015     BOOL            _isHidden;
00016 
00017     int             _tag;
00018     int             _state;
00019 
00020     CPImage         _image;
00021     CPImage         _alternateImage;
00022     CPImage         _onStateImage;
00023     CPImage         _offStateImage;
00024     CPImage         _mixedStateImage;
00025 
00026     CPMenu          _submenu;
00027     CPMenu          _menu;
00028 
00029     CPString        _keyEquivalent;
00030     unsigned        _keyEquivalentModifierMask;
00031 
00032     int             _mnemonicLocation;
00033 
00034     BOOL            _isAlternate;
00035     int             _indentationLevel;
00036 
00037     CPString        _toolTip;
00038     id              _representedObject;
00039     CPView          _view;
00040 
00041     int             _changeCount;
00042 
00043     _CPMenuItemView _menuItemView;
00044 }
00045 @end
 All Classes Files Functions Variables Defines