Improved debuging:
[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 <QMainWindow>
25 #include <QSystemTrayIcon>
26
27 #include "qtui.h"
28 #include "sessionsettings.h"
29 #include "titlesetter.h"
30
31 class ActionCollection;
32 class BufferViewConfig;
33 class BufferWidget;
34 class MsgProcessorStatusWidget;
35 class NickListWidget;
36 class SystemTrayIcon;
37
38 class QMenu;
39 class QLabel;
40
41 //!\brief The main window of Quassel's QtUi.
42 class MainWin : public QMainWindow {
43   Q_OBJECT
44
45   public:
46     MainWin(QWidget *parent = 0);
47     virtual ~MainWin();
48
49     void init();
50
51     void addBufferView(BufferViewConfig *config = 0);
52
53     inline QSystemTrayIcon *systemTrayIcon() const;
54
55     virtual bool event(QEvent *event);
56   public slots:
57     void saveStateToSession(const QString &sessionId);
58     void saveStateToSessionSettings(SessionSettings &s);
59     void showStatusBarMessage(const QString &message);
60
61   protected:
62     void closeEvent(QCloseEvent *event);
63     virtual void changeEvent(QEvent *event);
64
65   protected slots:
66     void connectedToCore();
67     void setConnectedState();
68     void updateLagIndicator(int lag);
69     void securedConnection();
70     void disconnectedFromCore();
71     void setDisconnectedState();
72     void systrayActivated(QSystemTrayIcon::ActivationReason);
73
74   private slots:
75     void addBufferView(int bufferViewConfigId);
76     void removeBufferView(int bufferViewConfigId);
77     void messagesInserted(const QModelIndex &parent, int start, int end);
78     void showAboutDlg();
79     void showChannelList(NetworkId netId = NetworkId());
80     void showCoreConnectionDlg(bool autoConnect = false);
81     void showCoreInfoDlg();
82     void showSettingsDlg();
83     void on_actionEditNetworks_triggered();
84     void on_actionManageViews_triggered();
85     void on_actionLockDockPositions_toggled(bool lock);
86     void on_actionDebugNetworkModel_triggered();
87     void on_actionDebugLog_triggered();
88
89     void clientNetworkCreated(NetworkId);
90     void clientNetworkRemoved(NetworkId);
91     void clientNetworkUpdated();
92     void connectOrDisconnectFromNet();
93
94     void saveStatusBarStatus(bool enabled);
95
96     void loadLayout();
97     void saveLayout();
98
99   signals:
100     void connectToCore(const QVariantMap &connInfo);
101     void disconnectFromCore();
102
103   private:
104
105     QMenu *systrayMenu;
106     QLabel *coreLagLabel;
107     QLabel *sslLabel;
108     MsgProcessorStatusWidget *msgProcessorStatusWidget;
109
110     TitleSetter _titleSetter;
111
112     void setupActions();
113     void setupBufferWidget();
114     void setupMenus();
115     void setupViews();
116     void setupNickWidget();
117     void setupChatMonitor();
118     void setupInputWidget();
119     void setupTopicWidget();
120     void setupStatusBar();
121     void setupSystray();
122     void setupTitleSetter();
123
124     void updateIcon();
125     void toggleVisibility();
126     void enableMenus();
127
128     QSystemTrayIcon *_trayIcon;
129
130     QList<QDockWidget *> _netViews;
131     BufferWidget *_bufferWidget;
132     NickListWidget *_nickListWidget;
133
134     QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu;
135
136     friend class QtUi;
137 };
138
139 QSystemTrayIcon *MainWin::systemTrayIcon() const {
140   return _trayIcon;
141 }
142
143 #endif