e2858961e96c36e8880b9441b9270a978ff41ee9
[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 showSettingsDlg();
64     void showNetworkDlg();
65     void showDebugConsole();
66
67     void showCoreConnectionDlg(bool autoConnect = false);
68     void coreConnectionDlgFinished(int result);
69
70     void clientNetworkCreated(NetworkId);
71     void clientNetworkRemoved(NetworkId);
72     void clientNetworkUpdated();
73     void connectOrDisconnectFromNet();
74
75   signals:
76     void connectToCore(const QVariantMap &connInfo);
77     void disconnectFromCore();
78     void requestBacklog(BufferInfo, QVariant, QVariant);
79
80   private:
81     Ui::MainWin ui;
82     QtUi *gui;
83
84     void setupMenus();
85     void setupViews();
86     void setupNickWidget();
87     void setupChatMonitor();
88     void setupInputWidget();
89     void setupTopicWidget();
90     void setupSystray();
91
92     void setupSettingsDlg();
93
94     void enableMenus();
95
96     QSystemTrayIcon *systray;
97
98     CoreConnectDlg *coreConnectDlg;
99     SettingsDlg *settingsDlg;
100
101     BufferId currentBuffer;
102     QString currentProfile;
103
104     QList<QDockWidget *> netViews;
105     QDockWidget *nickDock;
106     NickListWidget *nickListWidget;
107
108     QAction *actionEditNetworks;
109     QList<QAction *> networkActions;
110
111     DebugConsole *debugConsole;
112     friend class QtUi;
113 };
114
115 #endif