Swiftgram/submodules/LegacyComponents/Sources/TGStickerKeyboardTabSettingsCell.h
2020-02-22 15:38:54 +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