2014-07-10 16:11:09 +02:00
|
|
|
/*
|
|
|
|
* This is the source code of Telegram for iOS v. 1.1
|
|
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
|
|
*
|
|
|
|
* Copyright Peter Iakovlev, 2013.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@class TGAudioRecorder;
|
|
|
|
@class TGLiveUploadActorData;
|
2015-10-01 18:19:52 +02:00
|
|
|
@class TGDataItem;
|
2014-07-10 16:11:09 +02:00
|
|
|
|
|
|
|
@protocol TGAudioRecorderDelegate <NSObject>
|
|
|
|
|
|
|
|
@optional
|
|
|
|
|
|
|
|
- (void)audioRecorderDidStartRecording:(TGAudioRecorder *)audioRecorder;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface TGAudioRecorder : NSObject
|
|
|
|
|
|
|
|
@property (nonatomic, weak) id<TGAudioRecorderDelegate> delegate;
|
2015-10-01 18:19:52 +02:00
|
|
|
@property (nonatomic, strong) id activityHolder;
|
2014-07-10 16:11:09 +02:00
|
|
|
|
|
|
|
- (instancetype)initWithFileEncryption:(bool)fileEncryption;
|
|
|
|
|
|
|
|
- (void)start;
|
|
|
|
- (NSTimeInterval)currentDuration;
|
|
|
|
- (void)cancel;
|
2015-10-01 18:19:52 +02:00
|
|
|
- (void)finish:(void (^)(TGDataItem *, NSTimeInterval, TGLiveUploadActorData *))completion;
|
2014-07-10 16:11:09 +02:00
|
|
|
|
|
|
|
@end
|