mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
17 lines
521 B
Objective-C
17 lines
521 B
Objective-C
#import <LegacyComponents/TGPhotoEditorTabController.h>
|
|
|
|
@class PGPhotoEditor;
|
|
@class PGPhotoTool;
|
|
@class TGPhotoEditorPreviewView;
|
|
|
|
@interface TGPhotoAvatarPreviewController : TGPhotoEditorTabController
|
|
|
|
- (instancetype)initWithContext:(id<LegacyComponentsContext>)context photoEditor:(PGPhotoEditor *)photoEditor previewView:(TGPhotoEditorPreviewView *)previewView;
|
|
|
|
- (void)setScrubberPosition:(NSTimeInterval)position reset:(bool)reset;
|
|
- (void)setScrubberPlaying:(bool)value;
|
|
|
|
- (NSTimeInterval)coverPosition;
|
|
|
|
@end
|