mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
17 lines
412 B
Objective-C
17 lines
412 B
Objective-C
#import "TGCollectionItemView.h"
|
|
|
|
@class TGModernTextViewModel;
|
|
|
|
@interface TGUserInfoTextCollectionItemView : TGCollectionItemView
|
|
|
|
+ (CGFloat)heightForWidth:(CGFloat)width textModel:(TGModernTextViewModel *)textModel;
|
|
|
|
- (void)setTitle:(NSString *)title;
|
|
- (void)setTextModel:(TGModernTextViewModel *)textModel;
|
|
|
|
- (bool)shouldDisplayContextMenu;
|
|
|
|
- (void)setFollowLink:(void (^)(NSString *))followLink;
|
|
|
|
@end
|