API  0.9.6
 All Classes Files Functions Variables Macros Groups Pages
CPAlert.h
Go to the documentation of this file.
1 
2 @interface CPAlert : CPObject
3 {
4  BOOL _showHelp // @accessors(property=showsHelp);
5  BOOL _showSuppressionButton // @accessors(property=showsSuppressionButton);
6 
7  CPAlertStyle _alertStyle // @accessors(property=alertStyle);
8  CPString _title // @accessors(property=title);
9  CPView _accessoryView // @accessors(property=accessoryView);
10  CPImage _icon // @accessors(property=icon);
11 
12  CPArray _buttons // @accessors(property=buttons,readonly);
13  CPCheckBox _suppressionButton // @accessors(property=suppressionButton,readonly);
14 
15  id _delegate // @accessors(property=delegate);
16  id _modalDelegate;
17  SEL _didEndSelector;
18 
19  _CPAlertThemeView _themeView // @accessors(property=themeView, readonly);
20  CPWindow _window // @accessors(property=window,readonly);
21  int _defaultWindowStyle;
22 
23  CPImageView _alertImageView;
24  CPTextField _informativeLabel;
25  CPTextField _messageLabel;
26  CPButton _alertHelpButton;
27 
28  BOOL _needsLayout;
29 }
30 @end