1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-12 17:37:33 +01:00
Telegram/thirdparty/PGPhotoEditor/PGPhotoToolComposer.h
2015-10-01 19:19:52 +03:00

17 lines
418 B
Objective-C

#import "PGPhotoProcessPass.h"
@class PGPhotoTool;
@interface PGPhotoToolComposer : PGPhotoProcessPass
@property (nonatomic, readonly) NSArray *tools;
@property (nonatomic, readonly) NSArray *advancedTools;
@property (nonatomic, readonly) bool shouldBeSkipped;
@property (nonatomic, assign) CGSize imageSize;
- (void)addPhotoTool:(PGPhotoTool *)tool;
- (void)addPhotoTools:(NSArray *)tools;
- (void)compose;
@end