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