Cappuccino  1.0.0
 All Classes Files Functions Variables Typedefs Macros Groups Pages
CPMenu.h
Go to the documentation of this file.
1 
2 @interface CPMenu : CPObject
3 {
4  CPMenu _supermenu;
5 
6  CPString _title;
7  CPString _name;
8 
9  CPFont _font;
10 
11  float _minimumWidth;
12 
13  CPMutableArray _items;
14 
15  BOOL _autoenablesItems;
16  BOOL _showsStateColumn;
17 
18  id <CPMenuDelegate> _delegate;
19  unsigned _implementedDelegateMethods;
20 
21  int _highlightedIndex;
22  _CPMenuWindow _menuWindow;
23 
24  CPEvent _lastCloseEvent;
25 }
26 @end