48d0b7bc96
This is a commit with it's foot in a lot of places, but: The Conversation class was created as the abstraction of chats: All ImMessages that are relevant to a conversation get routed through it, meta-data on chats is stored in it (even if right now that's basically limited to the user list and ID). Server was given more methods to help accessing contacts― ContactById(BString) and AddContact(Contact*). This better allows Conversations to add and fetch Contacts as necessary. Right now, all users in chats are treated as Contacts, so in the future creating an independent userlist for Server (fUserMap?) would be useful. Server also now stores all Conversations (fChatMap) and has some convenience methods like for Contacts: Conversations(), ConversationById(BString), and AddConversation(Conversation*). CayaRenderView has been changed to not store user nicks, and will use the appropriate nick of any arbitrarily-numbered user. Users also have a map of all Conversations they are a part of (fChatMap). The Remove* methods of KeyMap now return the removed item.
82 lines
1.8 KiB
C++
82 lines
1.8 KiB
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 USER_H
|
|
#define USER_H
|
|
|
|
#include <String.h>
|
|
#include <Message.h>
|
|
#include <Messenger.h>
|
|
#include <ObjectList.h>
|
|
|
|
#include <libsupport/KeyMap.h>
|
|
|
|
#include "Notifier.h"
|
|
#include "CayaConstants.h"
|
|
|
|
class BBitmap;
|
|
|
|
class ChatWindow;
|
|
class Conversation;
|
|
class UserPopUp;
|
|
class ProtocolLooper;
|
|
class RosterItem;
|
|
|
|
|
|
typedef KeyMap<BString, Conversation*> ChatMap;
|
|
|
|
|
|
class User : public Notifier {
|
|
public:
|
|
User(BString id, BMessenger msgn);
|
|
|
|
void RegisterObserver(Conversation* chat);
|
|
void RegisterObserver(Observer* obs) { Notifier::RegisterObserver(obs); }
|
|
void UnregisterObserver(Conversation* chat);
|
|
void UnregisterObserver(Observer* obs) { Notifier::UnregisterObserver(obs); }
|
|
|
|
void ShowPopUp(BPoint where);
|
|
void DeletePopUp();
|
|
void HidePopUp();
|
|
|
|
BString GetId() const;
|
|
|
|
BMessenger Messenger() const;
|
|
void SetMessenger(BMessenger messenger);
|
|
|
|
ProtocolLooper* GetProtocolLooper() const;
|
|
void SetProtocolLooper(ProtocolLooper* looper);
|
|
BBitmap* ProtocolBitmap() const;
|
|
|
|
BString GetName() const;
|
|
BBitmap* AvatarBitmap() const;
|
|
CayaStatus GetNotifyStatus() const;
|
|
BString GetNotifyPersonalStatus() const;
|
|
|
|
void SetNotifyName(BString name);
|
|
void SetNotifyAvatarBitmap(BBitmap* bitmap);
|
|
void SetNotifyStatus(CayaStatus status);
|
|
void SetNotifyPersonalStatus(BString personalStatus);
|
|
|
|
ChatMap Conversations();
|
|
|
|
protected:
|
|
BMessenger fMessenger;
|
|
ProtocolLooper* fLooper;
|
|
|
|
BString fID;
|
|
bigtime_t fInstance;
|
|
BString fName;
|
|
BString fPersonalStatus;
|
|
BBitmap* fAvatarBitmap;
|
|
CayaStatus fStatus;
|
|
UserPopUp* fPopUp;
|
|
ChatMap fConversations;
|
|
};
|
|
|
|
|
|
#endif // USER_H
|
|
|