Swiftgram/LegacyComponents/TGStickerKeyboardTabSettingsCell.h
Ilya Laktyushin 53480a35a2 no message
2017-12-23 03:21:01 +04:00

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