- implemented on request a chat monitor: a simple buffer which shows
[quassel.git] / src / qtui / mainwin.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
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) version 3.                                           *
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 "ui_mainwin.h"
25
26 #include "qtui.h"
27 #include "bufferviewfilter.h"
28
29 #include <QSystemTrayIcon>
30
31 class ServerListDlg;
32 class CoreConnectDlg;
33 class Buffer;
34 class SettingsDlg;
35 class QtUi;
36 class Message;
37 class NickListWidget;
38 class DebugConsole;
39
40 //!\brief The main window of Quassel's QtUi.
41 class MainWin : public QMainWindow {
42   Q_OBJECT
43
44   public:
45     MainWin(QtUi *gui, QWidget *parent = 0);
46     virtual ~MainWin();
47
48     void init();
49     QDockWidget *addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList<NetworkId> &);
50
51     AbstractUiMsg *layoutMsg(const Message &);
52
53   protected:
54     void closeEvent(QCloseEvent *event);
55
56   protected slots:
57     void connectedToCore();
58     void disconnectedFromCore();
59     void systrayActivated( QSystemTrayIcon::ActivationReason );
60
61   private slots:
62
63     void showServerList();
64     void showSettingsDlg();
65     void showDebugConsole();
66     void showCoreConnectionDlg(bool autoConnect = false);
67     void coreConnectionDlgFinished(int result);
68
69     void disconnectFromNet();
70
71   signals:
72     void connectToCore(const QVariantMap &connInfo);
73     void disconnectFromCore();
74     void disconnectFromNetwork(NetworkId);
75     void requestBacklog(BufferInfo, QVariant, QVariant);
76
77   private:
78     Ui::MainWin ui;
79     QtUi *gui;
80
81     void setupMenus();
82     void setupViews();
83     void setupNickWidget();
84     void setupChatMonitor();
85     void setupInputWidget();
86     void setupTopicWidget();
87   
88     void setupSettingsDlg();
89
90     void enableMenus();
91
92     QSystemTrayIcon *systray;
93
94     ServerListDlg *serverListDlg;
95     CoreConnectDlg *coreConnectDlg;
96     SettingsDlg *settingsDlg;
97
98     BufferId currentBuffer;
99     QString currentProfile;
100
101     QList<QDockWidget *> netViews;
102     QDockWidget *nickDock;
103     NickListWidget *nickListWidget;
104
105     DebugConsole *debugConsole;
106     friend class QtUi;
107 };
108
109 #endif