Swiftgram/LegacyComponents/TGStickerKeyboardTabSettingsCell.h
2017-07-28 16:50:06 +03:00

23 lines
573 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)setInnerAlpha:(CGFloat)innerAlpha;
@end