API  1.0.0
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 <CPAlertDelegate> _delegate // @accessors(property=delegate);
16  id _modalDelegate;
17  SEL _didEndSelector // @accessors(property=didEndSelector);
18  Function _didEndBlock;
19  unsigned _implementedDelegateMethods;
20 
21  _CPAlertThemeView _themeView // @accessors(property=themeView, readonly);
22  CPWindow _window // @accessors(property=window, readonly);
23  int _defaultWindowStyle;
24 
25  CPImageView _alertImageView;
26  CPTextField _informativeLabel;
27  CPTextField _messageLabel;
28  CPButton _alertHelpButton;
29 
30  BOOL _needsLayout;
31 }
32 @end
An immutable string (collection of characters).
Definition: CPString.h:2
Definition: CPImage.h:2
Definition: CPAlert.h:2
Definition: CPView.j:137