]> git.saurik.com Git - iphone-api.git/blob - UIKit/UIModalView.h
Added some SpringBoardServices work from ashikase.
[iphone-api.git] / UIKit / UIModalView.h
1 /*
2 * Generated by class-dump 3.1.2.
3 *
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
5 */
6
7 #import <UIKit/UIView.h>
8
9 #import "UITextFieldDelegate-Protocol.h"
10
11 @class NSMutableArray, UILabel, UIToolbar, UIWindow;
12
13 @interface UIModalView : UIView <UITextFieldDelegate>
14 {
15 id <UIModalViewDelegate> _delegate;
16 UILabel *_titleLabel;
17 UILabel *_subtitleLabel;
18 UILabel *_bodyTextLabel;
19 UILabel *_taglineTextLabel;
20 float _startY;
21 id _context;
22 int _cancelButton;
23 int _defaultButton;
24 int _firstOtherButton;
25 UIToolbar *_toolbar;
26 UIWindow *_dimWindow;
27 int _suspendTag;
28 int _dismissButtonIndex;
29 float _bodyTextHeight;
30 NSMutableArray *_buttons;
31 NSMutableArray *_textFields;
32 UIView *_keyboard;
33 UIView *_table;
34 UIView *_dimView;
35 struct {
36 unsigned int numberOfRows:7;
37 unsigned int delegateAlertSheetButtonClicked:1;
38 unsigned int delegateDidPresentAlertSheet:1;
39 unsigned int delegateDidDismissAlertSheet:1;
40 unsigned int hideButtonBar:1;
41 unsigned int alertStyle:3;
42 unsigned int dontDimBackground:1;
43 unsigned int dismissSuspended:1;
44 unsigned int dontBlockInteraction:1;
45 unsigned int sheetWasPoppedUp:1;
46 unsigned int animating:1;
47 unsigned int hideWhenDoneAnimating:1;
48 unsigned int layoutWhenDoneAnimating:1;
49 unsigned int titleMaxLineCount:2;
50 unsigned int bodyTextMaxLineCount:3;
51 unsigned int runsModal:1;
52 unsigned int runningModal:1;
53 unsigned int addedTextView:1;
54 unsigned int addedTableShadows:1;
55 unsigned int showOverSBAlerts:1;
56 unsigned int showMinTableContent:1;
57 unsigned int bodyTextTruncated:1;
58 unsigned int orientation:3;
59 unsigned int delegateBodyTextAlignment:1;
60 unsigned int delegateClickedButtonAtIndex:1;
61 unsigned int delegateCancel:1;
62 unsigned int delegateWillPresent:1;
63 unsigned int delegateDidPresent:1;
64 unsigned int delegateWillDismiss:1;
65 unsigned int delegateDidDismiss:1;
66 unsigned int extra:21;
67 } _modalViewFlags;
68 }
69
70 - (id)initWithFrame:(struct CGRect)fp8;
71 - (id)initWithTitle:(id)fp8 message:(id)fp12 delegate:(id)fp16 defaultButton:(id)fp20 cancelButton:(id)fp24 otherButtons:(id)fp28;
72 - (void)dealloc;
73 - (void)setDelegate:(id)fp8;
74 - (id)delegate;
75 - (void)setTitle:(id)fp8;
76 - (id)title;
77 - (void)setMessage:(id)fp8;
78 - (id)message;
79 - (int)addButtonWithTitle:(id)fp8;
80 - (id)buttonTitleAtIndex:(int)fp8;
81 - (int)numberOfButtons;
82 - (BOOL)isVisible;
83 - (void)setDefaultButtonIndex:(int)fp8;
84 - (int)defaultButtonIndex;
85 - (void)setCancelButtonIndex:(int)fp8;
86 - (int)cancelButtonIndex;
87 - (void)_setFirstOtherButtonIndex:(int)fp8;
88 - (int)firstOtherButtonIndex;
89 - (void)dismissWithClickedButtonIndex:(int)fp8 animated:(BOOL)fp12;
90
91 @end
92