client: Convert /list #chan to UI advanced search
[quassel.git] / src / qtui / mainwin.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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 QLabel;
54 class QMenu;
55 class QMessageBox;
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     BufferView *activeBufferView() const;
78
79     inline BufferWidget *bufferWidget() const { return _bufferWidget; }
80     inline SystemTray *systemTray() const { return _systemTray; }
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     // We need to override this to add the show/hide menu bar option
91     virtual QMenu *createPopupMenu();
92
93 public slots:
94     void showStatusBarMessage(const QString &message);
95     void hideCurrentBuffer();
96     void nextBufferView();     //!< Activate the next bufferview
97     void previousBufferView(); //!< Activate the previous bufferview
98     void nextBuffer();
99     void previousBuffer();
100
101     void showMigrationWarning(bool show);
102
103     //! Quit application
104     void quit();
105
106 protected:
107     void closeEvent(QCloseEvent *event);
108     void moveEvent(QMoveEvent *event);
109     void resizeEvent(QResizeEvent *event);
110
111 protected slots:
112     void connectedToCore();
113     void setConnectedState();
114     void disconnectedFromCore();
115     void setDisconnectedState();
116
117 private slots:
118     void addBufferView(int bufferViewConfigId);
119     void awayLogDestroyed();
120     void removeBufferView(int bufferViewConfigId);
121     void currentBufferChanged(BufferId);
122     void messagesInserted(const QModelIndex &parent, int start, int end);
123     void showAboutDlg();
124
125     /**
126      * Show the channel list dialog for the network, optionally searching by channel name
127      *
128      * @param networkId       Network ID for associated network
129      * @param channelFilters  Partial channel name to search for, or empty to show all
130      */
131     void showChannelList(NetworkId netId = {}, const QString &channelFilters = {});
132     void showNetworkConfig(NetworkId netId = NetworkId());
133     void showCoreConnectionDlg();
134     void showCoreConfigWizard(const QVariantList &, const QVariantList &);
135     void showCoreInfoDlg();
136     void showAwayLog();
137     void showSettingsDlg();
138     void showNotificationsDlg();
139     void showIgnoreList(QString newRule = QString());
140     void showShortcutsDlg();
141     void showPasswordChangeDlg();
142     void showNewTransferDlg(const QUuid &transferId);
143     void onFullScreenToggled();
144
145     void doAutoConnect();
146
147     void handleCoreConnectionError(const QString &errorMsg);
148     void userAuthenticationRequired(CoreAccount *, bool *valid, const QString &errorMessage);
149     void handleNoSslInClient(bool *accepted);
150     void handleNoSslInCore(bool *accepted);
151 #ifdef HAVE_SSL
152     void handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently);
153 #endif
154
155     void on_actionConfigureNetworks_triggered();
156     void on_actionConfigureViews_triggered();
157     void on_actionLockLayout_toggled(bool lock);
158
159     /**
160      * Apply the active color to the input widget selected or typed text
161      *
162      * @seealso InputWidget::applyFormatActiveColor()
163      */
164     void on_inputFormatApplyColor_triggered();
165
166     /**
167      * Apply the active fill color to the input widget selected or typed text background
168      *
169      * @seealso InputWidget::applyFormatActiveColorFill()
170      */
171     void on_inputFormatApplyColorFill_triggered();
172
173     /**
174      * Toggle the boldness of the input widget selected or typed text
175      *
176      * @seealso InputWidget::toggleFormatBold()
177      */
178     void on_inputFormatBold_triggered();
179
180     /**
181      * Toggle the italicness of the input widget selected or typed text
182      *
183      * @seealso InputWidget::toggleFormatItalic()
184      */
185     void on_inputFormatItalic_triggered();
186
187     /**
188      * Toggle the underlining of the input widget selected or typed text
189      *
190      * @seealso InputWidget::toggleFormatUnderline()
191      */
192     void on_inputFormatUnderline_triggered();
193
194     /**
195      * Clear the formatting of the input widget selected or typed text
196      *
197      * @seealso InputWidget::clearFormat()
198      */
199     void on_inputFormatClear_triggered();
200
201     void on_jumpHotBuffer_triggered();
202     void on_bufferSearch_triggered();
203     void on_actionDebugNetworkModel_triggered();
204     void on_actionDebugBufferViewOverlay_triggered();
205     void on_actionDebugMessageModel_triggered();
206     void on_actionDebugHotList_triggered();
207     void on_actionDebugLog_triggered();
208
209     void bindJumpKey();
210     void onJumpKey();
211
212     void clientNetworkCreated(NetworkId);
213     void clientNetworkRemoved(NetworkId);
214     void clientNetworkUpdated();
215     void connectOrDisconnectFromNet();
216
217     void saveMenuBarStatus(bool enabled);
218     void saveStatusBarStatus(bool enabled);
219     void saveMainToolBarStatus(bool enabled);
220
221     void loadLayout();
222     void saveLayout();
223
224     void bufferViewToggled(bool enabled);
225     void bufferViewVisibilityChanged(bool visible);
226     void changeActiveBufferView(bool backwards);
227     void changeActiveBufferView(int bufferViewId);
228
229 signals:
230     void connectToCore(const QVariantMap &connInfo);
231     void disconnectFromCore();
232
233 private:
234 #ifdef HAVE_KDE
235     KHelpMenu *_kHelpMenu;
236 #endif
237
238     MsgProcessorStatusWidget *_msgProcessorStatusWidget;
239     CoreConnectionStatusWidget *_coreConnectionStatusWidget;
240     SystemTray *_systemTray;
241
242     TitleSetter _titleSetter;
243
244     void setupActions();
245     void setupBufferWidget();
246     void setupMenus();
247     void setupNickWidget();
248     void setupChatMonitor();
249     void setupInputWidget();
250     void setupTopicWidget();
251     void setupTransferWidget();
252     void setupViewMenuTail();
253     void setupStatusBar();
254     void setupSystray();
255     void setupTitleSetter();
256     void setupToolBars();
257     void setupHotList();
258
259     void updateIcon();
260     void enableMenus();
261
262     QList<BufferViewDock *> _bufferViews;
263     BufferWidget *_bufferWidget;
264     NickListWidget *_nickListWidget;
265     InputWidget *_inputWidget;
266     ChatMonitorView *_chatMonitorView;
267     TopicWidget *_topicWidget;
268
269     QAction *_fullScreenAction;
270     QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu;
271     QMenu *_toolbarMenu;
272     QToolBar *_mainToolBar, *_chatViewToolBar, *_nickToolBar;
273
274     QWidget *_awayLog;
275
276     QMessageBox* _migrationWarning{nullptr};
277
278     bool _layoutLoaded;
279
280     QSize _normalSize; //!< Size of the non-maximized window
281     QPoint _normalPos; //!< Position of the non-maximized window
282
283     BufferHotListFilter *_bufferHotList;
284     QHash<int, BufferId> _jumpKeyMap;
285     int _activeBufferViewIndex;
286
287     bool _aboutToQuit; //closeEvent can occur multiple times on OSX
288
289     friend class QtUi;
290 };