![]() |
API 0.9.5
|
00001 00002 @interface CPAlert : CPView 00003 { 00004 BOOL _showHelp // @accessors(property=showsHelp); 00005 BOOL _showSuppressionButton // @accessors(property=showsSuppressionButton); 00006 00007 CPAlertStyle _alertStyle // @accessors(property=alertStyle); 00008 CPString _title // @accessors(property=title); 00009 CPView _accessoryView // @accessors(property=accessoryView); 00010 CPImage _icon // @accessors(property=icon); 00011 00012 CPArray _buttons // @accessors(property=buttons,readonly); 00013 CPCheckBox _suppressionButton // @accessors(property=suppressionButton,readonly); 00014 00015 id _delegate // @accessors(property=delegate); 00016 id _modalDelegate; 00017 SEL _didEndSelector; 00018 00019 CPWindow _window // @accessors(property=window,readonly); 00020 int _defaultWindowStyle; 00021 00022 CPImageView _alertImageView; 00023 CPTextField _informativeLabel; 00024 CPTextField _messageLabel; 00025 CPButton _alertHelpButton; 00026 00027 BOOL _needsLayout; 00028 } 00029 @end