mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
17 lines
623 B
Objective-C
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
|