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