8c9c1ec71781e024709aff8b4d77de7e4c90399a
[quassel.git] / src / qtui / mainwin.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 #ifdef HAVE_KDE
25 #  include <KMainWindow>
26 #else
27 #  include <QMainWindow>
28 #endif
29
30 #ifdef Q_WS_WIN
31 #  include <windows.h>
32 #endif
33
34 #include <QSystemTrayIcon>
35
36 #include "qtui.h"
37 #include "titlesetter.h"
38 #include "uisettings.h"
39
40 class ActionCollection;
41 class BufferHotListFilter;
42 class BufferView;
43 class BufferViewConfig;
44 class ClientBufferViewConfig;
45 class CoreAccount;
46 class CoreConnectionStatusWidget;
47 class BufferViewDock;
48 class BufferWidget;
49 class InputWidget;
50 class MsgProcessorStatusWidget;
51 class NickListWidget;
52 class SystemTray;
53
54 class QMenu;
55 class QLabel;
56 class QToolBar;
57
58 class KHelpMenu;
59
60 //!\brief The main window of Quassel's QtUi.
61 class MainWin
62 #ifdef HAVE_KDE
63 : public KMainWindow {
64 #else
65 : public QMainWindow {
66 #endif
67   Q_OBJECT
68
69   public:
70     MainWin(QWidget *parent = 0);
71     virtual ~MainWin();
72
73     void init();
74
75     void addBufferView(ClientBufferViewConfig *config);
76     BufferView *allBuffersView() const;
77
78     BufferWidget *bufferWidget() const { return _bufferWidget; }
79
80     inline SystemTray *systemTray() const;
81
82     bool event(QEvent *event);
83
84     static void flagRemoteCoreOnly(QObject *object) { object->setProperty("REMOTE_CORE_ONLY", true); }
85     static bool isRemoteCoreOnly(QObject *object) { return object->property("REMOTE_CORE_ONLY").toBool(); }
86
87     void saveStateToSettings(UiSettings &);
88     void restoreStateFromSettings(UiSettings &);
89
90   public slots:
91     void showStatusBarMessage(const QString &message);
92
93     void toggleMinimizedToTray();
94
95     //! Bring window to front and focus it
96     void forceActivated();
97
98     //! Quit application
99     void quit();
100
101   protected:
102     void closeEvent(QCloseEvent *event);
103     void changeEvent(QEvent *event);
104     void moveEvent(QMoveEvent *event);
105     void resizeEvent(QResizeEvent *event);
106
107   protected slots:
108     void connectedToCore();
109     void setConnectedState();
110     void disconnectedFromCore();
111     void setDisconnectedState();
112
113   private slots:
114     void addBufferView(int bufferViewConfigId);
115     void awayLogDestroyed();
116     void removeBufferView(int bufferViewConfigId);
117     void currentBufferChanged(BufferId);
118     void messagesInserted(const QModelIndex &parent, int start, int end);
119     void showAboutDlg();
120     void showChannelList(NetworkId netId = NetworkId());
121     void showCoreConnectionDlg();
122     void showCoreInfoDlg();
123     void showAwayLog();
124     void showSettingsDlg();
125     void showNotificationsDlg();
126     void showIgnoreList(QString newRule = QString());
127 #ifdef HAVE_KDE
128     void showShortcutsDlg();
129 #endif
130     void startInternalCore();
131     void userAuthenticationRequired(CoreAccount *, bool *valid, const QString &errorMessage);
132     void handleNoSslInClient(bool *accepted);
133     void handleNoSslInCore(bool *accepted);
134 #ifdef HAVE_SSL
135     void handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently);
136 #endif
137
138     void on_actionConfigureNetworks_triggered();
139     void on_actionConfigureViews_triggered();
140     void on_actionLockLayout_toggled(bool lock);
141     void on_jumpHotBuffer_triggered();
142     void on_actionDebugNetworkModel_triggered();
143     void on_actionDebugBufferViewOverlay_triggered();
144     void on_actionDebugMessageModel_triggered();
145     void on_actionDebugHotList_triggered();
146     void on_actionDebugLog_triggered();
147
148     void clientNetworkCreated(NetworkId);
149     void clientNetworkRemoved(NetworkId);
150     void clientNetworkUpdated();
151     void connectOrDisconnectFromNet();
152
153     void saveMenuBarStatus(bool enabled);
154     void saveStatusBarStatus(bool enabled);
155
156     void loadLayout();
157     void saveLayout();
158
159     void bufferViewToggled(bool enabled);
160
161   signals:
162     void connectToCore(const QVariantMap &connInfo);
163     void disconnectFromCore();
164
165   private:
166 #ifdef HAVE_KDE
167     KHelpMenu *_kHelpMenu;
168 #endif
169
170     MsgProcessorStatusWidget *_msgProcessorStatusWidget;
171     CoreConnectionStatusWidget *_coreConnectionStatusWidget;
172
173     TitleSetter _titleSetter;
174
175     void setupActions();
176     void setupBufferWidget();
177     void setupMenus();
178     void setupNickWidget();
179     void setupChatMonitor();
180     void setupInputWidget();
181     void setupTopicWidget();
182     void setupStatusBar();
183     void setupSystray();
184     void setupTitleSetter();
185     void setupToolBars();
186     void setupHotList();
187
188     void updateIcon();
189     void enableMenus();
190
191     void hideToTray();
192
193     SystemTray *_systemTray;
194
195     QList<BufferViewDock *> _bufferViews;
196     BufferWidget *_bufferWidget;
197     NickListWidget *_nickListWidget;
198     InputWidget *_inputWidget;
199
200     QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu;
201     QMenu *_toolbarMenu;
202     QToolBar *_mainToolBar, *_chatViewToolBar, *_nickToolBar;
203
204     QWidget *_awayLog;
205
206     bool _layoutLoaded;
207
208     QSize _normalSize; //!< Size of the non-maximized window
209     QPoint _normalPos; //!< Position of the non-maximized window
210
211 #ifdef Q_WS_WIN
212     DWORD dwTickCount;
213 #endif
214
215     BufferHotListFilter *_bufferHotList;
216
217     friend class QtUi;
218 };
219
220 SystemTray *MainWin::systemTray() const {
221   return _systemTray;
222 }
223
224 #endif