mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
13 lines
517 B
Objective-C
13 lines
517 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface TGModernGalleryVideoScrubbingInterfaceView : UIView
|
|
|
|
@property (nonatomic, copy) void (^scrubbingBegan)();
|
|
@property (nonatomic, copy) void (^scrubbingChanged)(CGFloat position);
|
|
@property (nonatomic, copy) void (^scrubbingCancelled)();
|
|
@property (nonatomic, copy) void (^scrubbingFinished)(CGFloat position);
|
|
|
|
- (void)setDuration:(NSTimeInterval)duration currentTime:(NSTimeInterval)currentTime isPlaying:(bool)isPlaying isPlayable:(bool)isPlayable animated:(bool)animated;
|
|
|
|
@end
|