|
26 | 26 | @class OutlineViewController; |
27 | 27 |
|
28 | 28 | @interface ActionMenuController : UIViewController { |
29 | | - UILabel *titleField; |
30 | | - UIButton *doneButton; |
31 | | - UIButton *doneAndArchiveButton; |
32 | | - UIButton *flagButton; |
33 | | - UIButton *flagWithNoteButton; |
34 | | - UIButton *documentViewButton; |
35 | | - UIButton *cancelButton; |
36 | | - |
| 29 | + |
37 | 30 | Node *node; |
38 | | - UITableViewCell *cell; |
39 | | - UINavigationController *firstNavController; |
40 | 31 | OutlineViewController *parentController; |
41 | | - |
42 | 32 | bool showDocumentViewButton; |
43 | | - |
44 | | - UIView *actionView; |
45 | 33 | } |
46 | 34 |
|
47 | | -- (void)onDone; |
48 | | -- (void)onDoneAndArchive; |
49 | | -- (void)onFlag; |
50 | | -- (void)onFlagWithNote; |
51 | | -- (void)onDocumentView; |
52 | | -- (void)onCancel; |
53 | | - |
54 | 35 | @property (nonatomic, retain) Node *node; |
55 | | -@property (nonatomic, retain) UITableViewCell *cell; |
56 | | -@property (nonatomic, retain) UINavigationController *firstNavController; |
57 | 36 | @property (nonatomic, retain) OutlineViewController *parentController; |
58 | | - |
59 | | -@property (nonatomic, readonly) UILabel *titleField; |
60 | | -@property (nonatomic, readonly) UIButton *doneButton; |
61 | | -@property (nonatomic, readonly) UIButton *doneAndArchiveButton; |
62 | | -@property (nonatomic, readonly) UIButton *flagButton; |
63 | | -@property (nonatomic, readonly) UIButton *flagWithNoteButton; |
64 | | -@property (nonatomic, readonly) UIButton *documentViewButton; |
65 | | -@property (nonatomic, readonly) UIButton *cancelButton; |
66 | | - |
67 | 37 | @property (nonatomic) bool showDocumentViewButton; |
68 | 38 |
|
| 39 | +- (void)showActionSheet:(UIViewController*)controller; |
| 40 | + |
69 | 41 | @end |
0 commit comments