mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
24 lines
549 B
Objective-C
24 lines
549 B
Objective-C
#import "TGModernViewModel.h"
|
|
|
|
#import <SSignalKit/SSignalKit.h>
|
|
|
|
@interface TGSignalImageViewModel : TGModernViewModel
|
|
|
|
@property (nonatomic) bool showProgress;
|
|
@property (nonatomic) bool manualProgress;
|
|
|
|
@property (nonatomic) CGRect transitionContentRect;
|
|
|
|
- (void)setSignalGenerator:(SSignal *(^)())signalGenerator identifier:(NSString *)identifier;
|
|
|
|
- (void)setProgress:(float)progress animated:(bool)animated;
|
|
- (void)setDownload;
|
|
- (void)setNone;
|
|
- (void)setPlay;
|
|
|
|
- (void)reload;
|
|
|
|
- (void)setVideoPathSignal:(SSignal *)videoPathSignal;
|
|
|
|
@end
|