Implement authenticator class used for logging in users
[quassel.git] / src / qtui / mainwin.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include <QUuid>
24
25 #ifdef HAVE_KDE4
26 #  include <KMainWindow>
27 #elif defined HAVE_KF5
28 #  include <KXmlGui/KMainWindow>
29 #else
30 #  include <QMainWindow>
31 #endif
32
33 #include "qtui.h"
34 #include "titlesetter.h"
35 #include "uisettings.h"
36
37 class ActionCollection;
38 class BufferHotListFilter;
39 class BufferView;
40 class BufferViewConfig;
41 class ChatMonitorView;
42 class ClientBufferViewConfig;
43 class CoreAccount;
44 class CoreConnectionStatusWidget;
45 class BufferViewDock;
46 class BufferWidget;
47 class InputWidget;
48 class MsgProcessorStatusWidget;
49 class NickListWidget;
50 class SystemTray;
51 class TopicWidget;
52
53 class QMenu;
54 class QLabel;
55 class QToolBar;
56
57 class KHelpMenu;
58
59 //!\brief The main window of Quassel's QtUi.
60 class MainWin
61 #ifdef HAVE_KDE
62     : public KMainWindow {
63 #else
64     : public QMainWindow {
65 #endif
66     Q_OBJECT
67
68 public:
69     MainWin(QWidget *parent = 0);
70     virtual ~MainWin();
71
72     void init();
73
74     void addBufferView(ClientBufferViewConfig *config);
75     BufferView *allBuffersView() const;
76     BufferView *activeBufferView() const;
77
78     inline BufferWidget *bufferWidget() const { return _bufferWidget; }
79     inline SystemTray *systemTray() const { return _systemTray; }
80
81     bool event(QEvent *event);
82
83     static void flagRemoteCoreOnly(QObject *object) { object->setProperty("REMOTE_CORE_ONLY", true); }
84     static bool isRemoteCoreOnly(QObject *object) { return object->property("REMOTE_CORE_ONLY").toBool(); }
85
86     void saveStateToSettings(UiSettings &);
87     void restoreStateFromSettings(UiSettings &);
88
89     // We need to override this to add the show/hide menu bar option
90     virtual QMenu *createPopupMenu();
91
92 public slots:
93     void showStatusBarMessage(const QString &message);
94     void hideCurrentBuffer();
95     void nextBufferView();     //!< Activate the next bufferview
96     void previousBufferView(); //!< Activate the previous bufferview
97     void nextBuffer();
98     void previousBuffer();
99
100     //! Quit application
101     void quit();
102
103 protected:
104     void closeEvent(QCloseEvent *event);
105     void moveEvent(QMoveEvent *event);
106     void resizeEvent(QResizeEvent *event);
107
108 protected slots:
109     void connectedToCore();
110     void setConnectedState();
111     void disconnectedFromCore();
112     void setDisconnectedState();
113
114 private slots:
115     void addBufferView(int bufferViewConfigId);
116     void awayLogDestroyed();
117     void removeBufferView(int bufferViewConfigId);
118     void currentBufferChanged(BufferId);
119     void messagesInserted(const QModelIndex &parent, int start, int end);
120     void showAboutDlg();
121     void showChannelList(NetworkId netId = NetworkId());
122     void showCoreConnectionDlg();
123     void showCoreConfigWizard(const QVariantList &, const QVariantList &);
124     void showCoreInfoDlg();
125     void showAwayLog();
126     void showSettingsDlg();
127     void showNotificationsDlg();
128     void showIgnoreList(QString newRule = QString());
129     void showShortcutsDlg();
130     void showPasswordChangeDlg();
131     void showNewTransferDlg(const QUuid &transferId);
132     void onFullScreenToggled();
133
134     void handleCoreConnectionError(const QString &errorMsg);
135     void userAuthenticationRequired(CoreAccount *, bool *valid, const QString &errorMessage);
136     void handleNoSslInClient(bool *accepted);
137     void handleNoSslInCore(bool *accepted);
138 #ifdef HAVE_SSL
139     void handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently);
140 #endif
141
142     void on_actionConfigureNetworks_triggered();
143     void on_actionConfigureViews_triggered();
144     void on_actionLockLayout_toggled(bool lock);
145     void on_jumpHotBuffer_triggered();
146     void on_bufferSearch_triggered();
147     void on_actionDebugNetworkModel_triggered();
148     void on_actionDebugBufferViewOverlay_triggered();
149     void on_actionDebugMessageModel_triggered();
150     void on_actionDebugHotList_triggered();
151     void on_actionDebugLog_triggered();
152
153     void bindJumpKey();
154     void onJumpKey();
155
156     void clientNetworkCreated(NetworkId);
157     void clientNetworkRemoved(NetworkId);
158     void clientNetworkUpdated();
159     void connectOrDisconnectFromNet();
160
161     void saveMenuBarStatus(bool enabled);
162     void saveStatusBarStatus(bool enabled);
163     void saveMainToolBarStatus(bool enabled);
164
165     void loadLayout();
166     void saveLayout();
167
168     void bufferViewToggled(bool enabled);
169     void bufferViewVisibilityChanged(bool visible);
170     void changeActiveBufferView(bool backwards);
171     void changeActiveBufferView(int bufferViewId);
172
173 signals:
174     void connectToCore(const QVariantMap &connInfo);
175     void disconnectFromCore();
176
177 private:
178 #ifdef HAVE_KDE
179     KHelpMenu *_kHelpMenu;
180 #endif
181
182     MsgProcessorStatusWidget *_msgProcessorStatusWidget;
183     CoreConnectionStatusWidget *_coreConnectionStatusWidget;
184     SystemTray *_systemTray;
185
186     TitleSetter _titleSetter;
187
188     void setupActions();
189     void setupBufferWidget();
190     void setupMenus();
191     void setupNickWidget();
192     void setupChatMonitor();
193     void setupInputWidget();
194     void setupTopicWidget();
195     void setupTransferWidget();
196     void setupViewMenuTail();
197     void setupStatusBar();
198     void setupSystray();
199     void setupTitleSetter();
200     void setupToolBars();
201     void setupHotList();
202
203     void updateIcon();
204     void enableMenus();
205
206     QList<BufferViewDock *> _bufferViews;
207     BufferWidget *_bufferWidget;
208     NickListWidget *_nickListWidget;
209     InputWidget *_inputWidget;
210     ChatMonitorView *_chatMonitorView;
211     TopicWidget *_topicWidget;
212
213     QAction *_fullScreenAction;
214     QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu;
215     QMenu *_toolbarMenu;
216     QToolBar *_mainToolBar, *_chatViewToolBar, *_nickToolBar;
217
218     QWidget *_awayLog;
219
220     bool _layoutLoaded;
221
222     QSize _normalSize; //!< Size of the non-maximized window
223     QPoint _normalPos; //!< Position of the non-maximized window
224
225     BufferHotListFilter *_bufferHotList;
226     QHash<int, BufferId> _jumpKeyMap;
227     int _activeBufferViewIndex;
228
229     bool _aboutToQuit; //closeEvent can occur multiple times on OSX
230
231     friend class QtUi;
232 };