another.im-ios/Monal/Classes/MLImageManager.h
2024-11-18 15:53:52 +01:00

53 lines
1.4 KiB
Objective-C

//
// MLImageManager.h
// Monal
//
// Created by Anurodh Pokharel on 8/16/13.
//
//
#import <Foundation/Foundation.h>
@import UIKit;
@class MLContact;
@interface MLImageManager : NSObject
/**
chatview inbound background image
*/
@property (nonatomic, strong) UIImage* _Nullable inboundImage;
/**
chatview outbound background image
*/
@property (nonatomic, strong) UIImage* _Nullable outboundImage;
+(MLImageManager* _Nonnull) sharedInstance;
-(void) cleanupHashes;
-(void) removeAllIcons;
/**
Takes the string from the xmpp icon vcard info and stores it in an appropropriate place.
*/
-(void) setIconForContact:(MLContact* _Nonnull) contact WithData:(NSData* _Nullable) data ;
/**
retrieves a uiimage for the icon. returns noicon.png if nothing is found. never returns nil.
*/
-(BOOL) hasIconForContact:(MLContact* _Nonnull) contact;
-(UIImage* _Nullable) getIconForContact:(MLContact* _Nonnull) contact withCompletion:(void (^_Nullable)(UIImage *_Nullable))completion;
-(UIImage* _Nullable) getIconForContact:(MLContact* _Nonnull) contact;
+(UIImage* _Nonnull) circularImage:(UIImage* _Nonnull) image;
-(void) saveBackgroundImageData:(NSData* _Nullable) data forContact:(MLContact* _Nullable) contact;
-(UIImage* _Nullable) getBackgroundFor:(MLContact* _Nullable) contact;
/**
Purge cache in the event of a memory warning
*/
-(void) purgeCache;
-(void) purgeCacheForContact:(NSString* _Nonnull) contact andAccount:(NSNumber* _Nonnull) accountID;
@end