06a12fee9ebc2e03f060907edc7d48c0b4864b92
[quassel.git] / gui / mainwin.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel Team                             *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _MAINWIN_H_
22 #define _MAINWIN_H_
23
24 #include <QtGui>
25 #include "gui/ui_mainwin.h"
26
27 #include "global.h"
28 #include "message.h"
29 #include "chatwidget.h"
30
31 class ServerListDlg;
32 class CoreConnectDlg;
33 class NetworkView;
34 class Buffer;
35 class BufferWidget;
36 class SettingsDlg;
37
38 extern LayoutThread *layoutThread;
39
40 //!\brief The main window and central object of Quassel GUI.
41 /** In addition to displaying the main window including standard stuff like a menubar,
42  * dockwidgets and of course the chat window, this class also stores all data it
43  * receives from the core, and it maintains a list of all known nicks.
44  */
45 class MainWin : public QMainWindow {
46   Q_OBJECT
47
48   public:
49     MainWin();
50     ~MainWin();
51
52     void init();
53     void registerNetView(NetworkView *);
54
55   protected:
56     void closeEvent(QCloseEvent *event);
57
58   signals:
59     void sendInput(BufferId, QString message);
60     void bufferSelected(Buffer *);
61     void bufferUpdated(Buffer *);
62     void bufferDestroyed(Buffer *);
63     void backlogReceived(Buffer *, QList<Message>);
64     void requestBacklog(BufferId, QVariant, QVariant);
65
66     void importOldBacklog();
67
68   private slots:
69     void userInput(BufferId, QString);
70     void networkConnected(QString);
71     void networkDisconnected(QString);
72     void recvNetworkState(QString, QVariant);
73     void recvMessage(Message message);
74     void recvStatusMsg(QString network, QString message);
75     void setTopic(QString net, QString buf, QString);
76     void addNick(QString net, QString nick, VarMap props);
77     void removeNick(QString net, QString nick);
78     void renameNick(QString net, QString oldnick, QString newnick);
79     void updateNick(QString net, QString nick, VarMap props);
80     void setOwnNick(QString net, QString nick);
81     void recvBacklogData(BufferId, QList<QVariant>, bool);
82     void updateBufferId(BufferId);
83
84     void showServerList();
85     void showSettingsDlg();
86
87     void showBuffer(BufferId);
88     void showBuffer(Buffer *);
89
90     void importBacklog();
91     void layoutMsg();
92
93   private:
94     Ui::MainWin ui;
95
96     void setupMenus();
97     void setupViews();
98     void setupSettingsDlg();
99     void syncToCore();  // implemented in main_mono.cpp or main_gui.cpp
100     //Buffer * getBuffer(QString net, QString buf);
101     Buffer *getBuffer(BufferId);
102     BufferId getStatusBufferId(QString net);
103     BufferId getBufferId(QString net, QString buf);
104     //void buffersUpdated();
105
106     QSystemTrayIcon *systray;
107     //QWorkspace *workspace;
108     //QWidget *widget;
109     //BufferWidget *bufferWidget;
110
111     ServerListDlg *serverListDlg;
112     CoreConnectDlg *coreConnectDlg;
113     SettingsDlg *settingsDlg;
114
115     //QString currentNetwork, currentBuffer;
116     //QHash<QString, QHash<QString, Buffer*> > buffers;
117     uint currentBuffer;
118     QHash<BufferId, Buffer *> buffers;
119     QHash<uint, BufferId> bufferIds;
120     QHash<QString, QHash<QString, VarMap> > nicks;
121     QHash<QString, bool> connected;
122     QHash<QString, QString> ownNick;
123     //QHash<QString, QList<Message> > coreBackLog;
124     QList<BufferId> coreBuffers;
125
126     QList<NetworkView *> netViews;
127
128     QTimer *layoutTimer;
129     QList<Message> layoutQueue;
130 };
131
132 #endif