mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
24 lines
629 B
Objective-C
24 lines
629 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import "TGStickerKeyboardTabPanel.h"
|
|
|
|
typedef enum {
|
|
TGStickerKeyboardTabSettingsCellSettings,
|
|
TGStickerKeyboardTabSettingsCellGifs,
|
|
TGStickerKeyboardTabSettingsCellTrending
|
|
} TGStickerKeyboardTabSettingsCellMode;
|
|
|
|
@interface TGStickerKeyboardTabSettingsCell : UICollectionViewCell
|
|
|
|
@property (nonatomic, copy) void (^pressed)();
|
|
|
|
@property (nonatomic) TGStickerKeyboardTabSettingsCellMode mode;
|
|
|
|
- (void)setBadge:(NSString *)badge;
|
|
- (void)setStyle:(TGStickerKeyboardViewStyle)style;
|
|
- (void)setPallete:(TGStickerKeyboardPallete *)pallete;
|
|
|
|
- (void)setInnerAlpha:(CGFloat)innerAlpha;
|
|
|
|
@end
|