-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathTGMessageViewFooterController.h
29 lines (20 loc) · 1.09 KB
/
TGMessageViewFooterController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#import "WKInterfaceTable+TGDataDrivenTable.h"
@class TGBridgeMessage;
@interface TGMessageViewFooterController : TGTableRowController
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *dateLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *timeLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *statusGroup;
@property (nonatomic, weak) IBOutlet WKInterfaceButton *forwardButton;
@property (nonatomic, weak) IBOutlet WKInterfaceButton *replyButton;
@property (nonatomic, weak) IBOutlet WKInterfaceButton *viewButton;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *forwardLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *replyLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *viewLabel;
- (IBAction)forwardButtonPressedAction;
- (IBAction)replyButtonPressedAction;
- (IBAction)viewButtonPressedAction;
@property (nonatomic, copy) void (^forwardPressed)(void);
@property (nonatomic, copy) void (^replyPressed)(void);
@property (nonatomic, copy) void (^viewPressed)(void);
- (void)updateWithMessage:(TGBridgeMessage *)message channel:(bool)channel;
@end