API  0.9.7
 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 // @accessors(property=didEndSelector);
18  Function _didEndBlock;
19 
20  _CPAlertThemeView _themeView // @accessors(property=themeView, readonly);
21  CPWindow _window // @accessors(property=window, readonly);
22  int _defaultWindowStyle;
23 
24  CPImageView _alertImageView;
25  CPTextField _informativeLabel;
26  CPTextField _messageLabel;
27  CPButton _alertHelpButton;
28 
29  BOOL _needsLayout;
30 }
31 @end