Swiftgram/submodules/LegacyComponents/Sources/TGPhotoTextSettingsView.h
2020-06-05 17:52:43 +03:00

14 lines
503 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);
- (instancetype)initWithFonts:(NSArray *)fonts selectedFont:(TGPhotoPaintFont *)font selectedStyle:(TGPhotoPaintTextEntityStyle)selectedStyle;
@end