mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
29 lines
839 B
Objective-C
29 lines
839 B
Objective-C
#import "PGCameraMomentSegment.h"
|
|
|
|
@class PGCamera;
|
|
|
|
@interface PGCameraMomentSession : NSObject
|
|
|
|
@property (nonatomic, copy) void (^beganCapture)(void);
|
|
@property (nonatomic, copy) void (^finishedCapture)(void);
|
|
@property (nonatomic, copy) bool (^captureIsAvailable)(void);
|
|
@property (nonatomic, copy) void (^durationChanged)(NSTimeInterval);
|
|
|
|
@property (nonatomic, readonly) bool isCapturing;
|
|
@property (nonatomic, readonly) UIImage *previewImage;
|
|
@property (nonatomic, readonly) bool hasSegments;
|
|
|
|
@property (nonatomic, readonly) PGCameraMomentSegment *lastSegment;
|
|
|
|
- (instancetype)initWithCamera:(PGCamera *)camera;
|
|
|
|
- (void)captureSegment;
|
|
- (void)commitSegment;
|
|
|
|
- (void)addSegment:(PGCameraMomentSegment *)segment;
|
|
- (void)removeSegment:(PGCameraMomentSegment *)segment;
|
|
- (void)removeLastSegment;
|
|
- (void)removeAllSegments;
|
|
|
|
@end
|