3f262d4b878dc6044ffe8c3e798c832daf292694
[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 class ServerListDlg;
30 class CoreConnectDlg;
31 class Buffer;
32 class SettingsDlg;
33 class QtUi;
34 class Message;
35 class NickListWidget;
36
37 class DebugConsole;
38
39 //!\brief The main window of Quassel's QtUi.
40 class MainWin : public QMainWindow {
41   Q_OBJECT
42
43   public:
44     MainWin(QtUi *gui, QWidget *parent = 0);
45     virtual ~MainWin();
46
47     void init();
48     QDockWidget *addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList<NetworkId> &);
49
50     AbstractUiMsg *layoutMsg(const Message &);
51
52   protected:
53     void closeEvent(QCloseEvent *event);
54
55   protected slots:
56     void connectedToCore();
57     void disconnectedFromCore();
58     void systrayActivated( QSystemTrayIcon::ActivationReason );
59
60   private slots:
61
62     void showServerList();
63     void showSettingsDlg();
64     void showDebugConsole();
65     void showCoreConnectionDlg(bool autoConnect = false);
66     void coreConnectionDlgFinished(int result);
67
68   signals:
69     void connectToCore(const QVariantMap &connInfo);
70     void disconnectFromCore();
71     void requestBacklog(BufferInfo, QVariant, QVariant);
72
73   private:
74     Ui::MainWin ui;
75     QtUi *gui;
76
77     void setupMenus();
78     void setupViews();
79     void setupSettingsDlg();
80
81     void enableMenus();
82
83     QSystemTrayIcon *systray;
84
85     ServerListDlg *serverListDlg;
86     CoreConnectDlg *coreConnectDlg;
87     SettingsDlg *settingsDlg;
88
89     BufferId currentBuffer;
90     QString currentProfile;
91
92     QList<QDockWidget *> netViews;
93     QDockWidget *nickDock;
94     NickListWidget *nickListWidget;
95
96     DebugConsole *debugConsole;
97     friend class QtUi;
98 };
99
100 #endif