Chat-O-Matic/application/views/ConversationView.h
2021-08-05 21:05:59 -05:00

81 lines
1.8 KiB
C++

/*
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
* Copyright 2021, Jaidyn Levesque. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _CHAT_VIEW_H
#define _CHAT_VIEW_H
#include <GroupView.h>
#include <ObjectList.h>
#include "AppConstants.h"
#include "Conversation.h"
#include "Observer.h"
class BStringView;
class BSplitView;
class BitmapView;
class EnterTextView;
class RenderView;
class SendTextView;
class User;
class UserListView;
class ConversationView : public BGroupView, public Observer, public Notifier {
public:
ConversationView(Conversation* chat = NULL);
virtual void AttachedToWindow();
virtual void MessageReceived(BMessage* message);
void ImMessage(BMessage* msg);
Conversation* GetConversation();
void SetConversation(Conversation* chat);
void UpdateIcon();
void UpdateUserList(UserMap users);
void InvalidateUserList();
void ObserveString(int32 what, BString str);
void GetWeights(float* horizChat, float* horizList,
float* vertChat, float* vertSend);
void SetWeights(float horizChat, float horizList,
float vertChat, float vertSend);
private:
void _InitInterface();
bool _AppendOrEnqueueMessage(BMessage* msg);
void _AppendMessage(BMessage* msg);
void _UserMessage(const char* format, const char* bodyFormat,
BMessage* msg);
// When the user hasn't joined any real conversations
void _FakeChat();
void _FakeChatNoRooms();
void _FakeChatNoAccounts();
Conversation* fConversation;
BObjectList<BMessage> fMessageQueue;
EnterTextView* fNameTextView;
EnterTextView* fSubjectTextView;
BitmapView* fProtocolView;
BitmapView* fIcon;
RenderView* fReceiveView;
UserListView* fUserList;
SendTextView* fSendView;
BSplitView* fHorizSplit;
BSplitView* fVertSplit;
};
#endif // _CHAT_VIEW_H