mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
21 lines
529 B
Objective-C
21 lines
529 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import "TGStickerKeyboardTabPanel.h"
|
|
|
|
@class TGDocumentMediaAttachment;
|
|
|
|
@interface TGStickerKeyboardTabCell : UICollectionViewCell
|
|
|
|
- (void)setFavorite;
|
|
- (void)setRecent;
|
|
- (void)setNone;
|
|
- (void)setDocumentMedia:(TGDocumentMediaAttachment *)documentMedia;
|
|
- (void)setUrl:(NSString *)avatarUrl peerId:(int64_t)peerId title:(NSString *)title;
|
|
|
|
- (void)setStyle:(TGStickerKeyboardViewStyle)style;
|
|
- (void)setPallete:(TGStickerKeyboardPallete *)pallete;
|
|
|
|
- (void)setInnerAlpha:(CGFloat)innerAlpha;
|
|
|
|
@end
|