Swiftgram/submodules/LegacyComponents/Sources/TGPhotoTextSettingsView.h
2020-05-26 11:11:27 +03:00

17 lines
623 B
Objective-C

#import <UIKit/UIKit.h>
#import "TGPhotoPaintSettingsView.h"
#import "TGPhotoPaintFont.h"
#import "TGPhotoPaintTextEntity.h"
@interface TGPhotoTextSettingsView : UIView <TGPhotoPaintPanelView>
@property (nonatomic, copy) void (^fontChanged)(TGPhotoPaintFont *font);
@property (nonatomic, copy) void (^styleChanged)(TGPhotoPaintTextEntityStyle style);
@property (nonatomic, strong) TGPhotoPaintFont *font;
@property (nonatomic, assign) TGPhotoPaintTextEntityStyle style;
- (instancetype)initWithFonts:(NSArray *)fonts selectedFont:(TGPhotoPaintFont *)font selectedStyle:(TGPhotoPaintTextEntityStyle)selectedStyle;
@end