1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 10:27:46 +01:00
Telegram/Watch/Extension/TGChatsRowController.h

24 lines
965 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import "WKInterfaceTable+TGDataDrivenTable.h"
@class TGBridgeChat;
@class TGBridgeContext;
@interface TGChatsRowController : TGTableRowController
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *avatarGroup;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *avatarInitialsLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *nameLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *initialsLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *messageTextLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceImage *mediaIcon;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *timeLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *unreadCountGroup;
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *unreadCountLabel;
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *readGroup;
- (void)updateWithChat:(TGBridgeChat *)chat context:(TGBridgeContext *)context;
- (void)hideUnreadCountBadge;
@end