mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-04-23 19:36:26 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
34 lines
1.4 KiB
Objective-C
34 lines
1.4 KiB
Objective-C
#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 *replyWithoutPresetButton;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceButton *viewButton;
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *forwardLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *replyLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *replyWithoutPresetLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *viewLabel;
|
|
|
|
- (IBAction)forwardButtonPressedAction;
|
|
- (IBAction)replyButtonPressedAction;
|
|
- (IBAction)replyWithoutPresetButtonPressedAction;
|
|
- (IBAction)viewButtonPressedAction;
|
|
|
|
@property (nonatomic, copy) void (^forwardPressed)(void);
|
|
@property (nonatomic, copy) void (^replyPressed)(void);
|
|
@property (nonatomic, copy) void (^replyWithoutPresetPressed)(void);
|
|
@property (nonatomic, copy) void (^viewPressed)(void);
|
|
|
|
- (void)updateWithMessage:(TGBridgeMessage *)message channel:(bool)channel;
|
|
|
|
@end
|