6f01818e8a
Structures MainWindow around a Conversations→BLayoutItem map & BCardLayout, instead of directly removing and adding ConversationViews every time.
94 lines
2.0 KiB
C++
94 lines
2.0 KiB
C++
/*
|
|
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
|
|
* Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved.
|
|
* Copyright 2021-2022, Jaidyn Levesque. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _MAIN_WINDOW_H
|
|
#define _MAIN_WINDOW_H
|
|
|
|
#include <Window.h>
|
|
|
|
#include "Server.h"
|
|
|
|
class BCardLayout;
|
|
class BLayoutItem;
|
|
class BMenu;
|
|
class BSplitView;
|
|
class BTextView;
|
|
|
|
class Conversation;
|
|
class ConversationItem;
|
|
class ConversationListView;
|
|
class ConversationView;
|
|
class ProtocolSettings;
|
|
class RosterItem;
|
|
class RosterWindow;
|
|
class Server;
|
|
class StatusView;
|
|
|
|
|
|
class MainWindow: public BWindow {
|
|
public:
|
|
MainWindow();
|
|
|
|
void Start();
|
|
void Show();
|
|
virtual bool QuitRequested();
|
|
|
|
virtual void MessageReceived(BMessage* message);
|
|
void ImMessage(BMessage* msg);
|
|
|
|
virtual void WorkspaceActivated(int32 workspace,
|
|
bool active);
|
|
|
|
void SetConversation(Conversation* chat);
|
|
void SetConversationView(ConversationView* view);
|
|
void RemoveConversation(Conversation* chat);
|
|
void SortConversation(Conversation* chat);
|
|
|
|
Server* GetServer() const { return fServer; }
|
|
|
|
private:
|
|
void _InitInterface();
|
|
|
|
BMenuBar* _CreateMenuBar();
|
|
BMenu* _CreateAccountsMenu();
|
|
void _RefreshAccountsMenu();
|
|
BMenu* _CreateProtocolMenu();
|
|
|
|
void _ToggleMenuItems();
|
|
|
|
ConversationItem*
|
|
_EnsureConversationItem(BMessage* msg);
|
|
void _EnsureConversationView(Conversation* chat);
|
|
|
|
void _ApplyWeights();
|
|
void _SaveWeights();
|
|
|
|
bool _PopulateWithAccounts(BMenu* menu,
|
|
ProtocolSettings* settings);
|
|
void _ReplaceMenu(const char* name, BMenu* newMenu);
|
|
|
|
Server* fServer;
|
|
RosterWindow* fRosterWindow;
|
|
bool fWorkspaceChanged;
|
|
BMenuBar* fMenuBar;
|
|
|
|
KeyMap<Conversation*, BLayoutItem*> fChatList;
|
|
|
|
// Left panel, chat list
|
|
ConversationListView* fListView;
|
|
StatusView* fStatusView;
|
|
BSplitView* fSplitView;
|
|
|
|
// Right panel, chat
|
|
BCardLayout* fChatLayout;
|
|
Conversation* fConversation;
|
|
ConversationView* fBackupChatView;
|
|
};
|
|
|
|
|
|
#endif // _MAIN_WINDOW_H
|
|
|