Swiftgram/submodules/LegacyComponents/Sources/TGPhotoPaintActionsView.h
2020-02-22 15:38:54 +04:00

16 lines
438 B
Objective-C

#import <UIKit/UIKit.h>
@interface TGPhotoPaintActionsView : UIView
@property (nonatomic, assign) UIInterfaceOrientation interfaceOrientation;
@property (nonatomic, copy) void (^undoPressed)(void);
@property (nonatomic, copy) void (^redoPressed)(void);
@property (nonatomic, copy) void (^clearPressed)(UIView *);
- (void)setUndoEnabled:(bool)enabled;
- (void)setRedoEnabled:(bool)enabled;
- (void)setClearEnabled:(bool)enabled;
@end