mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-23 22:12:43 +00:00
22 lines
447 B
Objective-C
22 lines
447 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TGWallpaperInfo : NSObject
|
|
|
|
- (NSString *)thumbnailUrl;
|
|
- (NSString *)fullscreenUrl;
|
|
- (int)tintColor;
|
|
- (CGFloat)systemAlpha;
|
|
- (CGFloat)buttonsAlpha;
|
|
- (CGFloat)highlightedButtonAlpha;
|
|
- (CGFloat)progressAlpha;
|
|
|
|
- (UIImage *)image;
|
|
- (NSData *)imageData;
|
|
- (bool)hasData;
|
|
|
|
- (NSDictionary *)infoDictionary;
|
|
+ (TGWallpaperInfo *)infoWithDictionary:(NSDictionary *)dict;
|
|
|
|
@end
|