mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
15 lines
321 B
Objective-C
15 lines
321 B
Objective-C
#import "TGSignalImageView.h"
|
|
|
|
@interface TGSignalImageViewWithProgress : TGSignalImageView
|
|
|
|
@property (nonatomic) bool manualProgress;
|
|
|
|
- (CGFloat)progress;
|
|
- (void)setProgress:(CGFloat)progress;
|
|
- (void)setProgress:(CGFloat)progress animated:(bool)animated;
|
|
- (void)setDownload;
|
|
- (void)setNone;
|
|
- (void)setPlay;
|
|
|
|
@end
|