6c43311982
Add a program-wide avatar cache― whenever a contact or user's avatar has changed, it gets cached in ~/config/settings/Caya/Cache/$account/People (for contacts) or $account/Users (for everyone else). ImageCache is now used, only for caching the kPersonIcon resource image― it might be useful later for other commonly used images (status indicators, etc). Fixes #4
38 lines
692 B
C++
38 lines
692 B
C++
/*
|
|
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
|
|
* Copyright 2012, Dario Casalinuovo. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _CONTACT_LINKER_H_
|
|
#define _CONTACT_LINKER_H_
|
|
|
|
#include <String.h>
|
|
#include <Message.h>
|
|
#include <Messenger.h>
|
|
#include <Path.h>
|
|
|
|
#include "CayaConstants.h"
|
|
#include "User.h"
|
|
|
|
class BBitmap;
|
|
|
|
class ProtocolLooper;
|
|
class RosterItem;
|
|
|
|
|
|
class Contact : public User {
|
|
public:
|
|
Contact(BString id, BMessenger msgn);
|
|
|
|
RosterItem* GetRosterItem() const;
|
|
|
|
void SetNotifyAvatarBitmap(BBitmap* bitmap);
|
|
|
|
private:
|
|
virtual void _EnsureCachePath();
|
|
|
|
RosterItem* fRosterItem;
|
|
};
|
|
|
|
#endif // _CONTACT_LINKER_H_
|