640f42e75967fa809a40df9d809da5387725d8ca
[quassel.git] / src / qtui / mainwin.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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 #include "mainwin.h"
22
23 #include <QIcon>
24 #include <QMenuBar>
25 #include <QMessageBox>
26 #include <QStatusBar>
27 #include <QTableView>
28 #include <QToolBar>
29 #include <QInputDialog>
30
31 #ifdef HAVE_KDE4
32 #  include <KHelpMenu>
33 #  include <KMenuBar>
34 #  include <KShortcutsDialog>
35 #  include <KStatusBar>
36 #  include <KToggleFullScreenAction>
37 #  include <KToolBar>
38 #endif
39
40 #ifdef HAVE_KF5
41 #  include <KConfigWidgets/KStandardAction>
42 #  include <KXmlGui/KHelpMenu>
43 #  include <KXmlGui/KShortcutsDialog>
44 #  include <KXmlGui/KToolBar>
45 #  include <KWidgetsAddons/KToggleFullScreenAction>
46 #endif
47
48 #ifdef Q_WS_X11
49 #  include <QX11Info>
50 #endif
51
52 #include "aboutdlg.h"
53 #include "awaylogfilter.h"
54 #include "awaylogview.h"
55 #include "action.h"
56 #include "actioncollection.h"
57 #include "bufferhotlistfilter.h"
58 #include "buffermodel.h"
59 #include "bufferview.h"
60 #include "bufferviewoverlay.h"
61 #include "bufferviewoverlayfilter.h"
62 #include "bufferwidget.h"
63 #include "channellistdlg.h"
64 #include "chatlinemodel.h"
65 #include "chatmonitorfilter.h"
66 #include "chatmonitorview.h"
67 #include "chatview.h"
68 #include "client.h"
69 #include "clientbacklogmanager.h"
70 #include "clientbufferviewconfig.h"
71 #include "clientbufferviewmanager.h"
72 #include "clientignorelistmanager.h"
73 #include "clienttransfer.h"
74 #include "clienttransfermanager.h"
75 #include "coreconfigwizard.h"
76 #include "coreconnectdlg.h"
77 #include "coreconnection.h"
78 #include "coreconnectionstatuswidget.h"
79 #include "coreinfodlg.h"
80 #include "contextmenuactionprovider.h"
81 #include "debugbufferviewoverlay.h"
82 #include "debuglogdlg.h"
83 #include "debugmessagemodelfilter.h"
84 #include "flatproxymodel.h"
85 #include "icon.h"
86 #include "inputwidget.h"
87 #include "irclistmodel.h"
88 #include "ircconnectionwizard.h"
89 #include "legacysystemtray.h"
90 #include "msgprocessorstatuswidget.h"
91 #include "nicklistwidget.h"
92 #include "passwordchangedlg.h"
93 #include "qtuiapplication.h"
94 #include "qtuimessageprocessor.h"
95 #include "qtuisettings.h"
96 #include "qtuistyle.h"
97 #include "receivefiledlg.h"
98 #include "settingsdlg.h"
99 #include "settingspagedlg.h"
100 #include "statusnotifieritem.h"
101 #include "toolbaractionprovider.h"
102 #include "topicwidget.h"
103 #include "transfermodel.h"
104 #include "verticaldock.h"
105
106 #ifndef HAVE_KDE
107 #  ifdef HAVE_QTMULTIMEDIA
108 #    include "qtmultimedianotificationbackend.h"
109 #  endif
110 #  ifdef HAVE_PHONON
111 #    include "phononnotificationbackend.h"
112 #  endif
113 #  include "systraynotificationbackend.h"
114 #  include "taskbarnotificationbackend.h"
115 #else /* HAVE_KDE */
116 #  include "knotificationbackend.h"
117 #endif /* HAVE_KDE */
118 #include "systrayanimationnotificationbackend.h"
119
120
121 #ifdef HAVE_LIBSNORE
122 #  include "snorenotificationbackend.h"
123 #endif
124
125 #ifdef HAVE_SSL
126 #  include "sslinfodlg.h"
127 #endif
128
129 #ifdef HAVE_INDICATEQT
130   #include "indicatornotificationbackend.h"
131 #endif
132
133 #ifdef HAVE_NOTIFICATION_CENTER
134   #include "osxnotificationbackend.h"
135 #endif
136
137 #ifdef HAVE_DBUS
138   #include "dockmanagernotificationbackend.h"
139 #endif
140
141 #include "settingspages/aliasessettingspage.h"
142 #include "settingspages/appearancesettingspage.h"
143 #include "settingspages/backlogsettingspage.h"
144 #include "settingspages/bufferviewsettingspage.h"
145 #include "settingspages/chatmonitorsettingspage.h"
146 #include "settingspages/chatviewsettingspage.h"
147 #include "settingspages/chatviewcolorsettingspage.h"
148 #include "settingspages/connectionsettingspage.h"
149 #include "settingspages/coreaccountsettingspage.h"
150 #include "settingspages/coreconnectionsettingspage.h"
151 #include <settingspages/corehighlightsettingspage.h>
152 #include "settingspages/dccsettingspage.h"
153 #include "settingspages/highlightsettingspage.h"
154 #include "settingspages/identitiessettingspage.h"
155 #include "settingspages/ignorelistsettingspage.h"
156 #include "settingspages/inputwidgetsettingspage.h"
157 #include "settingspages/itemviewsettingspage.h"
158 #include "settingspages/networkssettingspage.h"
159 #include "settingspages/notificationssettingspage.h"
160 #include "settingspages/topicwidgetsettingspage.h"
161
162 #ifndef HAVE_KDE
163 #  include "settingspages/shortcutssettingspage.h"
164 #endif
165
166 #ifdef HAVE_SONNET
167 #  include "settingspages/sonnetsettingspage.h"
168 #endif
169
170
171 MainWin::MainWin(QWidget *parent)
172 #ifdef HAVE_KDE
173     : KMainWindow(parent), _kHelpMenu(new KHelpMenu(this)),
174 #else
175     : QMainWindow(parent),
176 #endif
177     _msgProcessorStatusWidget(new MsgProcessorStatusWidget(this)),
178     _coreConnectionStatusWidget(new CoreConnectionStatusWidget(Client::coreConnection(), this)),
179     _titleSetter(this),
180     _awayLog(0),
181     _layoutLoaded(false),
182     _activeBufferViewIndex(-1),
183     _aboutToQuit(false)
184 {
185     setAttribute(Qt::WA_DeleteOnClose, false); // we delete the mainwin manually
186
187     QtUiSettings uiSettings;
188     QString style = uiSettings.value("Style", QString()).toString();
189     if (!style.isEmpty()) {
190         QApplication::setStyle(style);
191     }
192
193     QApplication::setQuitOnLastWindowClosed(false);
194
195     setWindowTitle("Quassel IRC");
196     setWindowIconText("Quassel IRC");
197     // Set the default icon for all windows
198     QApplication::setWindowIcon(icon::get("quassel"));
199     updateIcon();
200 }
201
202
203 void MainWin::init()
204 {
205     connect(Client::instance(), SIGNAL(networkCreated(NetworkId)), SLOT(clientNetworkCreated(NetworkId)));
206     connect(Client::instance(), SIGNAL(networkRemoved(NetworkId)), SLOT(clientNetworkRemoved(NetworkId)));
207     connect(Client::messageModel(), SIGNAL(rowsInserted(const QModelIndex &, int, int)),
208         SLOT(messagesInserted(const QModelIndex &, int, int)));
209     connect(GraphicalUi::contextMenuActionProvider(),
210             SIGNAL(showChannelList(NetworkId,QString,bool)),
211             SLOT(showChannelList(NetworkId,QString,bool)));
212     connect(Client::instance(),
213             SIGNAL(showChannelList(NetworkId,QString,bool)),
214             SLOT(showChannelList(NetworkId,QString,bool)));
215     connect(GraphicalUi::contextMenuActionProvider(), SIGNAL(showNetworkConfig(NetworkId)), SLOT(showNetworkConfig(NetworkId)));
216     connect(GraphicalUi::contextMenuActionProvider(), SIGNAL(showIgnoreList(QString)), SLOT(showIgnoreList(QString)));
217     connect(Client::instance(), SIGNAL(showIgnoreList(QString)), SLOT(showIgnoreList(QString)));
218     connect(Client::instance(), SIGNAL(dbUpgradeInProgress(bool)), SLOT(showMigrationWarning(bool)));
219     connect(Client::instance(), SIGNAL(exitRequested(QString)), SLOT(onExitRequested(QString)));
220
221     connect(Client::coreConnection(), SIGNAL(startCoreSetup(QVariantList, QVariantList)), SLOT(showCoreConfigWizard(QVariantList, QVariantList)));
222     connect(Client::coreConnection(), SIGNAL(connectionErrorPopup(QString)), SLOT(handleCoreConnectionError(QString)));
223     connect(Client::coreConnection(), SIGNAL(userAuthenticationRequired(CoreAccount *, bool *, QString)), SLOT(userAuthenticationRequired(CoreAccount *, bool *, QString)));
224     connect(Client::coreConnection(), SIGNAL(handleNoSslInClient(bool *)), SLOT(handleNoSslInClient(bool *)));
225     connect(Client::coreConnection(), SIGNAL(handleNoSslInCore(bool *)), SLOT(handleNoSslInCore(bool *)));
226 #ifdef HAVE_SSL
227     connect(Client::coreConnection(), SIGNAL(handleSslErrors(const QSslSocket *, bool *, bool *)), SLOT(handleSslErrors(const QSslSocket *, bool *, bool *)));
228 #endif
229
230     // Setup Dock Areas
231     setDockNestingEnabled(true);
232     setCorner(Qt::TopLeftCorner, Qt::LeftDockWidgetArea);
233     setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
234     setCorner(Qt::TopRightCorner, Qt::RightDockWidgetArea);
235     setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea);
236
237     // Order is sometimes important
238     setupActions();
239     setupBufferWidget();
240     setupMenus();
241     // setupTransferWidget(); not ready yet
242     setupChatMonitor();
243     setupTopicWidget();
244     setupInputWidget();
245     setupNickWidget();
246     setupViewMenuTail();
247     setupStatusBar();
248     setupToolBars();
249     setupSystray();
250     setupTitleSetter();
251     setupHotList();
252
253     _bufferWidget->setFocusProxy(_inputWidget);
254     _chatMonitorView->setFocusProxy(_inputWidget);
255
256 #ifndef HAVE_KDE
257 #  ifdef HAVE_QTMULTIMEDIA
258     QtUi::registerNotificationBackend(new QtMultimediaNotificationBackend(this));
259 #  endif
260 #  ifdef HAVE_PHONON
261     QtUi::registerNotificationBackend(new PhononNotificationBackend(this));
262 #  endif
263     QtUi::registerNotificationBackend(new TaskbarNotificationBackend(this));
264 #else /* HAVE_KDE */
265     QtUi::registerNotificationBackend(new KNotificationBackend(this));
266 #endif /* HAVE_KDE */
267
268
269 #ifndef QT_NO_SYSTEMTRAYICON
270     QtUi::registerNotificationBackend(new SystrayAnimationNotificationBackend(this));
271 #endif
272 #ifdef HAVE_LIBSNORE
273     QtUi::registerNotificationBackend(new SnoreNotificationBackend(this));
274 #elif !defined(QT_NO_SYSTEMTRAYICON) && !defined(HAVE_KDE)
275     QtUi::registerNotificationBackend(new SystrayNotificationBackend(this));
276 #endif
277
278 #ifdef HAVE_INDICATEQT
279     QtUi::registerNotificationBackend(new IndicatorNotificationBackend(this));
280 #endif
281
282 #ifdef HAVE_NOTIFICATION_CENTER
283     QtUi::registerNotificationBackend(new OSXNotificationBackend(this));
284 #endif
285
286 #ifdef HAVE_DBUS
287     QtUi::registerNotificationBackend(new DockManagerNotificationBackend(this));
288 #endif
289
290     // we assume that at this point, all configurable actions are defined!
291     QtUi::loadShortcuts();
292
293     connect(bufferWidget(), SIGNAL(currentChanged(BufferId)), SLOT(currentBufferChanged(BufferId)));
294
295     setDisconnectedState(); // Disable menus and stuff
296
297 #ifdef HAVE_KDE
298     setAutoSaveSettings();
299 #endif
300
301     // restore mainwin state
302     QtUiSettings s;
303     restoreStateFromSettings(s);
304
305     // restore locked state of docks
306     QtUi::actionCollection("General")->action("LockLayout")->setChecked(s.value("LockLayout", false).toBool());
307
308     Quassel::registerQuitHandler([this]() {
309         QtUiSettings s;
310         saveStateToSettings(s);
311         saveLayout();
312         // Close all open dialogs and the MainWin, so we can safely kill the Client instance afterwards
313         // Note: This does not quit the application, as quitOnLastWindowClosed is set to false.
314         //       We rely on another quit handler to be registered that actually quits the application.
315         qApp->closeAllWindows();
316     });
317
318     QTimer::singleShot(0, this, SLOT(doAutoConnect()));
319 }
320
321
322 void MainWin::saveStateToSettings(UiSettings &s)
323 {
324     s.setValue("MainWinSize", _normalSize);
325     s.setValue("MainWinPos", _normalPos);
326     s.setValue("MainWinState", saveState());
327     s.setValue("MainWinGeometry", saveGeometry());
328     s.setValue("MainWinMinimized", isMinimized());
329     s.setValue("MainWinMaximized", isMaximized());
330     s.setValue("MainWinHidden", !isVisible());
331     BufferId lastBufId = Client::bufferModel()->currentBuffer();
332     if (lastBufId.isValid())
333         s.setValue("LastUsedBufferId", lastBufId.toInt());
334
335 #ifdef HAVE_KDE
336     saveAutoSaveSettings();
337 #endif
338 }
339
340
341 void MainWin::restoreStateFromSettings(UiSettings &s)
342 {
343     _normalSize = s.value("MainWinSize", size()).toSize();
344     _normalPos = s.value("MainWinPos", pos()).toPoint();
345     bool maximized = s.value("MainWinMaximized", false).toBool();
346
347 #ifndef HAVE_KDE
348     restoreGeometry(s.value("MainWinGeometry").toByteArray());
349
350     if (maximized) {
351         // restoreGeometry() fails if the windows was maximized, so we resize and position explicitly
352         resize(_normalSize);
353         move(_normalPos);
354     }
355
356     restoreState(s.value("MainWinState").toByteArray());
357
358 #else
359     move(_normalPos);
360 #endif
361
362     if ((Quassel::isOptionSet("hidewindow")
363             || s.value("MainWinHidden").toBool())
364             && _systemTray->isSystemTrayAvailable())
365         QtUi::hideMainWidget();
366     else if (s.value("MainWinMinimized").toBool())
367         showMinimized();
368     else if (maximized)
369         showMaximized();
370     else
371         show();
372 }
373
374 QMenu *MainWin::createPopupMenu()
375 {
376     QMenu *popupMenu = QMainWindow::createPopupMenu();
377     popupMenu->addSeparator();
378     ActionCollection *coll = QtUi::actionCollection("General");
379     popupMenu->addAction(coll->action("ToggleMenuBar"));
380     return popupMenu;
381 }
382
383
384 void MainWin::updateIcon()
385 {
386     QIcon icon;
387     if (Client::isConnected())
388         icon = icon::get("quassel");
389     else
390         icon = icon::get("inactive-quassel");
391     setWindowIcon(icon);
392 }
393
394
395 void MainWin::setupActions()
396 {
397     ActionCollection *coll = QtUi::actionCollection("General", tr("General"));
398     // File
399     coll->addAction("ConnectCore", new Action(icon::get("connect-quassel"), tr("&Connect to Core..."), coll,
400             this, SLOT(showCoreConnectionDlg())));
401     coll->addAction("DisconnectCore", new Action(icon::get("disconnect-quassel"), tr("&Disconnect from Core"), coll,
402             Client::instance(), SLOT(disconnectFromCore())));
403     coll->addAction("ChangePassword", new Action(icon::get("dialog-password"), tr("Change &Password..."), coll,
404             this, SLOT(showPasswordChangeDlg())));
405     coll->addAction("CoreInfo", new Action(icon::get("help-about"), tr("Core &Info..."), coll,
406             this, SLOT(showCoreInfoDlg())));
407     coll->addAction("ConfigureNetworks", new Action(icon::get("configure"), tr("Configure &Networks..."), coll,
408             this, SLOT(on_actionConfigureNetworks_triggered())));
409     // QKeySequence::Quit was added in Qt 4.6, and could be used instead.  However, that key
410     // sequence is empty by default on Windows, which would remove Ctrl-Q to quit.  It may be best
411     // to just keep it this way.
412     //
413     // See https://doc.qt.io/qt-5/qkeysequence.html
414     coll->addAction("Quit", new Action(icon::get("application-exit"), tr("&Quit"), coll,
415             Quassel::instance(), SLOT(quit()), Qt::CTRL + Qt::Key_Q));
416
417     // View
418     coll->addAction("ConfigureBufferViews", new Action(tr("&Configure Chat Lists..."), coll,
419             this, SLOT(on_actionConfigureViews_triggered())));
420
421     QAction *lockAct = coll->addAction("LockLayout", new Action(tr("&Lock Layout"), coll));
422     lockAct->setCheckable(true);
423     connect(lockAct, SIGNAL(toggled(bool)), SLOT(on_actionLockLayout_toggled(bool)));
424
425     coll->addAction("ToggleSearchBar", new Action(icon::get("edit-find"), tr("Show &Search Bar"), coll,
426             0, 0, QKeySequence::Find))->setCheckable(true);
427     coll->addAction("ShowAwayLog", new Action(tr("Show Away Log"), coll,
428             this, SLOT(showAwayLog())));
429     coll->addAction("ToggleMenuBar", new Action(icon::get("show-menu"), tr("Show &Menubar"), coll,
430             0, 0))->setCheckable(true);
431
432     coll->addAction("ToggleStatusBar", new Action(tr("Show Status &Bar"), coll,
433             0, 0))->setCheckable(true);
434
435 #ifdef HAVE_KDE
436     _fullScreenAction = KStandardAction::fullScreen(this, SLOT(onFullScreenToggled()), this, coll);
437 #else
438     _fullScreenAction = new Action(icon::get("view-fullscreen"), tr("&Full Screen Mode"), coll,
439         this, SLOT(onFullScreenToggled()), QKeySequence(Qt::Key_F11));
440     _fullScreenAction->setCheckable(true);
441     coll->addAction("ToggleFullScreen", _fullScreenAction);
442 #endif
443
444     // Settings
445     QAction *configureShortcutsAct = new Action(icon::get("configure-shortcuts"), tr("Configure &Shortcuts..."), coll,
446         this, SLOT(showShortcutsDlg()));
447     configureShortcutsAct->setMenuRole(QAction::NoRole);
448     coll->addAction("ConfigureShortcuts", configureShortcutsAct);
449
450 #ifdef Q_OS_MAC
451     QAction *configureQuasselAct = new Action(icon::get("configure"), tr("&Configure Quassel..."), coll,
452         this, SLOT(showSettingsDlg()));
453     configureQuasselAct->setMenuRole(QAction::PreferencesRole);
454 #else
455     QAction *configureQuasselAct = new Action(icon::get("configure"), tr("&Configure Quassel..."), coll,
456         this, SLOT(showSettingsDlg()), QKeySequence(Qt::Key_F7));
457 #endif
458     coll->addAction("ConfigureQuassel", configureQuasselAct);
459
460     // Help
461     QAction *aboutQuasselAct = new Action(icon::get("quassel"), tr("&About Quassel"), coll,
462         this, SLOT(showAboutDlg()));
463     aboutQuasselAct->setMenuRole(QAction::AboutRole);
464     coll->addAction("AboutQuassel", aboutQuasselAct);
465
466     QAction *aboutQtAct = new Action(QIcon(":/pics/qt-logo.png"), tr("About &Qt"), coll,
467         qApp, SLOT(aboutQt()));
468     aboutQtAct->setMenuRole(QAction::AboutQtRole);
469     coll->addAction("AboutQt", aboutQtAct);
470     coll->addAction("DebugNetworkModel", new Action(icon::get("tools-report-bug"), tr("Debug &NetworkModel"), coll,
471             this, SLOT(on_actionDebugNetworkModel_triggered())));
472     coll->addAction("DebugBufferViewOverlay", new Action(icon::get("tools-report-bug"), tr("Debug &BufferViewOverlay"), coll,
473             this, SLOT(on_actionDebugBufferViewOverlay_triggered())));
474     coll->addAction("DebugMessageModel", new Action(icon::get("tools-report-bug"), tr("Debug &MessageModel"), coll,
475             this, SLOT(on_actionDebugMessageModel_triggered())));
476     coll->addAction("DebugHotList", new Action(icon::get("tools-report-bug"), tr("Debug &HotList"), coll,
477             this, SLOT(on_actionDebugHotList_triggered())));
478     coll->addAction("DebugLog", new Action(icon::get("tools-report-bug"), tr("Debug &Log"), coll,
479             this, SLOT(on_actionDebugLog_triggered())));
480     coll->addAction("ReloadStyle", new Action(icon::get("view-refresh"), tr("Reload Stylesheet"), coll,
481             QtUi::style(), SLOT(reload()), QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_R)));
482
483     coll->addAction("HideCurrentBuffer", new Action(tr("Hide Current Buffer"), coll,
484             this, SLOT(hideCurrentBuffer()), QKeySequence::Close));
485
486     // Text formatting
487     coll = QtUi::actionCollection("TextFormat", tr("Text formatting"));
488
489     coll->addAction("FormatApplyColor", new Action(
490                         icon::get("format-text-color"), tr("Apply foreground color"), coll,
491                         this, SLOT(on_inputFormatApplyColor_triggered()),
492                         QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_G)));
493
494     coll->addAction("FormatApplyColorFill", new Action(
495                         icon::get("format-fill-color"), tr("Apply background color"), coll,
496                         this, SLOT(on_inputFormatApplyColorFill_triggered()),
497                         QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_B)));
498
499     coll->addAction("FormatClear", new Action(
500                         icon::get("edit-clear"), tr("Clear formatting"), coll,
501                         this, SLOT(on_inputFormatClear_triggered()),
502                         QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_C)));
503
504     coll->addAction("FormatBold", new Action(
505                         icon::get("format-text-bold"), tr("Toggle bold"), coll,
506                         this, SLOT(on_inputFormatBold_triggered()),
507                         QKeySequence::Bold));
508
509     coll->addAction("FormatItalic", new Action(
510                         icon::get("format-text-italic"), tr("Toggle italics"), coll,
511                         this, SLOT(on_inputFormatItalic_triggered()),
512                         QKeySequence::Italic));
513
514     coll->addAction("FormatUnderline", new Action(
515                         icon::get("format-text-underline"), tr("Toggle underline"), coll,
516                         this, SLOT(on_inputFormatUnderline_triggered()), QKeySequence::Underline));
517
518     // Navigation
519     coll = QtUi::actionCollection("Navigation", tr("Navigation"));
520
521     coll->addAction("JumpHotBuffer", new Action(tr("Jump to hot chat"), coll,
522             this, SLOT(on_jumpHotBuffer_triggered()), QKeySequence(Qt::META + Qt::Key_A)));
523
524     coll->addAction("ActivateBufferFilter", new Action(tr("Activate the buffer search"), coll,
525             this, SLOT(on_bufferSearch_triggered()), QKeySequence(Qt::CTRL + Qt::Key_S)));
526
527     // Jump keys
528 #ifdef Q_OS_MAC
529     const int bindModifier = Qt::ControlModifier | Qt::AltModifier;
530     const int jumpModifier = Qt::ControlModifier;
531 #else
532     const int bindModifier = Qt::ControlModifier;
533     const int jumpModifier = Qt::AltModifier;
534 #endif
535
536     coll->addAction("BindJumpKey0", new Action(tr("Set Quick Access #0"), coll, this, SLOT(bindJumpKey()),
537             QKeySequence(bindModifier + Qt::Key_0)))->setProperty("Index", 0);
538     coll->addAction("BindJumpKey1", new Action(tr("Set Quick Access #1"), coll, this, SLOT(bindJumpKey()),
539             QKeySequence(bindModifier + Qt::Key_1)))->setProperty("Index", 1);
540     coll->addAction("BindJumpKey2", new Action(tr("Set Quick Access #2"), coll, this, SLOT(bindJumpKey()),
541             QKeySequence(bindModifier + Qt::Key_2)))->setProperty("Index", 2);
542     coll->addAction("BindJumpKey3", new Action(tr("Set Quick Access #3"), coll, this, SLOT(bindJumpKey()),
543             QKeySequence(bindModifier + Qt::Key_3)))->setProperty("Index", 3);
544     coll->addAction("BindJumpKey4", new Action(tr("Set Quick Access #4"), coll, this, SLOT(bindJumpKey()),
545             QKeySequence(bindModifier + Qt::Key_4)))->setProperty("Index", 4);
546     coll->addAction("BindJumpKey5", new Action(tr("Set Quick Access #5"), coll, this, SLOT(bindJumpKey()),
547             QKeySequence(bindModifier + Qt::Key_5)))->setProperty("Index", 5);
548     coll->addAction("BindJumpKey6", new Action(tr("Set Quick Access #6"), coll, this, SLOT(bindJumpKey()),
549             QKeySequence(bindModifier + Qt::Key_6)))->setProperty("Index", 6);
550     coll->addAction("BindJumpKey7", new Action(tr("Set Quick Access #7"), coll, this, SLOT(bindJumpKey()),
551             QKeySequence(bindModifier + Qt::Key_7)))->setProperty("Index", 7);
552     coll->addAction("BindJumpKey8", new Action(tr("Set Quick Access #8"), coll, this, SLOT(bindJumpKey()),
553             QKeySequence(bindModifier + Qt::Key_8)))->setProperty("Index", 8);
554     coll->addAction("BindJumpKey9", new Action(tr("Set Quick Access #9"), coll, this, SLOT(bindJumpKey()),
555             QKeySequence(bindModifier + Qt::Key_9)))->setProperty("Index", 9);
556
557     coll->addAction("JumpKey0", new Action(tr("Quick Access #0"), coll, this, SLOT(onJumpKey()),
558             QKeySequence(jumpModifier + Qt::Key_0)))->setProperty("Index", 0);
559     coll->addAction("JumpKey1", new Action(tr("Quick Access #1"), coll, this, SLOT(onJumpKey()),
560             QKeySequence(jumpModifier + Qt::Key_1)))->setProperty("Index", 1);
561     coll->addAction("JumpKey2", new Action(tr("Quick Access #2"), coll, this, SLOT(onJumpKey()),
562             QKeySequence(jumpModifier + Qt::Key_2)))->setProperty("Index", 2);
563     coll->addAction("JumpKey3", new Action(tr("Quick Access #3"), coll, this, SLOT(onJumpKey()),
564             QKeySequence(jumpModifier + Qt::Key_3)))->setProperty("Index", 3);
565     coll->addAction("JumpKey4", new Action(tr("Quick Access #4"), coll, this, SLOT(onJumpKey()),
566             QKeySequence(jumpModifier + Qt::Key_4)))->setProperty("Index", 4);
567     coll->addAction("JumpKey5", new Action(tr("Quick Access #5"), coll, this, SLOT(onJumpKey()),
568             QKeySequence(jumpModifier + Qt::Key_5)))->setProperty("Index", 5);
569     coll->addAction("JumpKey6", new Action(tr("Quick Access #6"), coll, this, SLOT(onJumpKey()),
570             QKeySequence(jumpModifier + Qt::Key_6)))->setProperty("Index", 6);
571     coll->addAction("JumpKey7", new Action(tr("Quick Access #7"), coll, this, SLOT(onJumpKey()),
572             QKeySequence(jumpModifier + Qt::Key_7)))->setProperty("Index", 7);
573     coll->addAction("JumpKey8", new Action(tr("Quick Access #8"), coll, this, SLOT(onJumpKey()),
574             QKeySequence(jumpModifier + Qt::Key_8)))->setProperty("Index", 8);
575     coll->addAction("JumpKey9", new Action(tr("Quick Access #9"), coll, this, SLOT(onJumpKey()),
576             QKeySequence(jumpModifier + Qt::Key_9)))->setProperty("Index", 9);
577
578     // Buffer navigation
579     coll->addAction("NextBufferView", new Action(icon::get("go-next-view"), tr("Activate Next Chat List"), coll,
580             this, SLOT(nextBufferView()), QKeySequence(QKeySequence::Forward)));
581     coll->addAction("PreviousBufferView", new Action(icon::get("go-previous-view"), tr("Activate Previous Chat List"), coll,
582             this, SLOT(previousBufferView()), QKeySequence::Back));
583     coll->addAction("NextBuffer", new Action(icon::get("go-down"), tr("Go to Next Chat"), coll,
584             this, SLOT(nextBuffer()), QKeySequence(Qt::ALT + Qt::Key_Down)));
585     coll->addAction("PreviousBuffer", new Action(icon::get("go-up"), tr("Go to Previous Chat"), coll,
586             this, SLOT(previousBuffer()), QKeySequence(Qt::ALT + Qt::Key_Up)));
587 }
588
589
590 void MainWin::setupMenus()
591 {
592     ActionCollection *coll = QtUi::actionCollection("General");
593
594     _fileMenu = menuBar()->addMenu(tr("&File"));
595
596     static const QStringList coreActions = QStringList()
597         << "ConnectCore" << "DisconnectCore" << "ChangePassword" << "CoreInfo";
598
599     QAction *coreAction;
600     foreach(QString actionName, coreActions) {
601         coreAction = coll->action(actionName);
602         _fileMenu->addAction(coreAction);
603         flagRemoteCoreOnly(coreAction);
604     }
605     flagRemoteCoreOnly(_fileMenu->addSeparator());
606
607     _networksMenu = _fileMenu->addMenu(tr("&Networks"));
608     _networksMenu->addAction(coll->action("ConfigureNetworks"));
609     _networksMenu->addSeparator();
610     _fileMenu->addSeparator();
611     _fileMenu->addAction(coll->action("Quit"));
612
613     _viewMenu = menuBar()->addMenu(tr("&View"));
614     _bufferViewsMenu = _viewMenu->addMenu(tr("&Chat Lists"));
615     _bufferViewsMenu->addAction(coll->action("ConfigureBufferViews"));
616     _toolbarMenu = _viewMenu->addMenu(tr("&Toolbars"));
617     _viewMenu->addSeparator();
618
619     _viewMenu->addAction(coll->action("ToggleMenuBar"));
620     _viewMenu->addAction(coll->action("ToggleStatusBar"));
621     _viewMenu->addAction(coll->action("ToggleSearchBar"));
622
623     coreAction = coll->action("ShowAwayLog");
624     flagRemoteCoreOnly(coreAction);
625     _viewMenu->addAction(coreAction);
626
627     _viewMenu->addSeparator();
628     _viewMenu->addAction(coll->action("LockLayout"));
629
630     _settingsMenu = menuBar()->addMenu(tr("&Settings"));
631 #ifdef HAVE_KDE
632     _settingsMenu->addAction(KStandardAction::configureNotifications(this, SLOT(showNotificationsDlg()), this));
633     _settingsMenu->addAction(KStandardAction::keyBindings(this, SLOT(showShortcutsDlg()), this));
634 #else
635     _settingsMenu->addAction(coll->action("ConfigureShortcuts"));
636 #endif
637     _settingsMenu->addAction(coll->action("ConfigureQuassel"));
638
639
640     _helpMenu = menuBar()->addMenu(tr("&Help"));
641
642     _helpMenu->addAction(coll->action("AboutQuassel"));
643 #ifndef HAVE_KDE
644     _helpMenu->addAction(coll->action("AboutQt"));
645 #else
646     _helpMenu->addAction(KStandardAction::aboutKDE(_kHelpMenu, SLOT(aboutKDE()), this));
647 #endif
648     _helpMenu->addSeparator();
649     _helpDebugMenu = _helpMenu->addMenu(icon::get("tools-report-bug"), tr("Debug"));
650     _helpDebugMenu->addAction(coll->action("DebugNetworkModel"));
651     _helpDebugMenu->addAction(coll->action("DebugBufferViewOverlay"));
652     _helpDebugMenu->addAction(coll->action("DebugMessageModel"));
653     _helpDebugMenu->addAction(coll->action("DebugHotList"));
654     _helpDebugMenu->addAction(coll->action("DebugLog"));
655     _helpDebugMenu->addSeparator();
656     _helpDebugMenu->addAction(coll->action("ReloadStyle"));
657
658     // Toggle visibility
659     QAction *showMenuBar = QtUi::actionCollection("General")->action("ToggleMenuBar");
660
661     QtUiSettings uiSettings;
662     bool enabled = uiSettings.value("ShowMenuBar", QVariant(true)).toBool();
663     showMenuBar->setChecked(enabled);
664     enabled ? menuBar()->show() : menuBar()->hide();
665
666     connect(showMenuBar, SIGNAL(toggled(bool)), menuBar(), SLOT(setVisible(bool)));
667     connect(showMenuBar, SIGNAL(toggled(bool)), this, SLOT(saveMenuBarStatus(bool)));
668 }
669
670
671 void MainWin::setupBufferWidget()
672 {
673     _bufferWidget = new BufferWidget(this);
674     _bufferWidget->setModel(Client::bufferModel());
675     _bufferWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
676     setCentralWidget(_bufferWidget);
677 }
678
679
680 void MainWin::addBufferView(int bufferViewConfigId)
681 {
682     addBufferView(Client::bufferViewManager()->clientBufferViewConfig(bufferViewConfigId));
683 }
684
685
686 void MainWin::addBufferView(ClientBufferViewConfig *config)
687 {
688     if (!config)
689         return;
690
691     config->setLocked(QtUiSettings().value("LockLayout", false).toBool());
692     BufferViewDock *dock = new BufferViewDock(config, this);
693
694     //create the view and initialize it's filter
695     BufferView *view = new BufferView(dock);
696     view->setFilteredModel(Client::bufferModel(), config);
697     view->installEventFilter(_inputWidget); // for key presses
698
699     Client::bufferModel()->synchronizeView(view);
700
701     dock->setLocked(QtUiSettings().value("LockLayout", false).toBool());
702
703     dock->setWidget(view);
704     dock->setVisible(_layoutLoaded); // don't show before state has been restored
705
706     addDockWidget(Qt::LeftDockWidgetArea, dock);
707     _bufferViewsMenu->addAction(dock->toggleViewAction());
708
709     connect(dock->toggleViewAction(), SIGNAL(toggled(bool)), this, SLOT(bufferViewToggled(bool)));
710     connect(dock, SIGNAL(visibilityChanged(bool)), SLOT(bufferViewVisibilityChanged(bool)));
711     _bufferViews.append(dock);
712
713     if (!activeBufferView())
714         nextBufferView();
715 }
716
717
718 void MainWin::removeBufferView(int bufferViewConfigId)
719 {
720     QVariant actionData;
721     BufferViewDock *dock;
722     foreach(QAction *action, _bufferViewsMenu->actions()) {
723         actionData = action->data();
724         if (!actionData.isValid())
725             continue;
726
727         dock = qobject_cast<BufferViewDock *>(action->parent());
728         if (dock && actionData.toInt() == bufferViewConfigId) {
729             removeAction(action);
730             Client::bufferViewOverlay()->removeView(dock->bufferViewId());
731             _bufferViews.removeAll(dock);
732
733             if (dock->isActive()) {
734                 dock->setActive(false);
735                 _activeBufferViewIndex = -1;
736                 nextBufferView();
737             }
738
739             dock->deleteLater();
740         }
741     }
742 }
743
744
745 void MainWin::bufferViewToggled(bool enabled)
746 {
747     if (!enabled && !isMinimized()) {
748         // hiding the mainwindow triggers a toggle of the bufferview (which pretty much sucks big time)
749         // since this isn't our fault and we can't do anything about it, we suppress the resulting calls
750         return;
751     }
752     QAction *action = qobject_cast<QAction *>(sender());
753     Q_ASSERT(action);
754     BufferViewDock *dock = qobject_cast<BufferViewDock *>(action->parent());
755     Q_ASSERT(dock);
756
757     // Make sure we don't toggle backlog fetch for a view we've already removed
758     if (!_bufferViews.contains(dock))
759         return;
760
761     if (enabled)
762         Client::bufferViewOverlay()->addView(dock->bufferViewId());
763     else
764         Client::bufferViewOverlay()->removeView(dock->bufferViewId());
765 }
766
767
768 void MainWin::bufferViewVisibilityChanged(bool visible)
769 {
770     Q_UNUSED(visible);
771     BufferViewDock *dock = qobject_cast<BufferViewDock *>(sender());
772     Q_ASSERT(dock);
773     if ((!dock->isHidden() && !activeBufferView()) || (dock->isHidden() && dock->isActive()))
774         nextBufferView();
775 }
776
777
778 BufferView *MainWin::allBuffersView() const
779 {
780     // "All Buffers" is always the first dock created
781     if (_bufferViews.count() > 0)
782         return _bufferViews[0]->bufferView();
783     return 0;
784 }
785
786
787 BufferView *MainWin::activeBufferView() const
788 {
789     if (_activeBufferViewIndex < 0 || _activeBufferViewIndex >= _bufferViews.count())
790         return 0;
791     BufferViewDock *dock = _bufferViews.at(_activeBufferViewIndex);
792     return dock->isActive() ? dock->bufferView() : 0;
793 }
794
795
796 void MainWin::changeActiveBufferView(int bufferViewId)
797 {
798     if (bufferViewId < 0)
799         return;
800
801     if (_activeBufferViewIndex >= 0 && _activeBufferViewIndex < _bufferViews.count()) {
802         _bufferViews[_activeBufferViewIndex]->setActive(false);
803         _activeBufferViewIndex = -1;
804     }
805
806     for (int i = 0; i < _bufferViews.count(); i++) {
807         BufferViewDock *dock = _bufferViews.at(i);
808         if (dock->bufferViewId() == bufferViewId && !dock->isHidden()) {
809             _activeBufferViewIndex = i;
810             dock->setActive(true);
811             return;
812         }
813     }
814
815     nextBufferView(); // fallback
816 }
817
818
819 void MainWin::showPasswordChangeDlg()
820 {
821     if(Client::isCoreFeatureEnabled(Quassel::Feature::PasswordChange)) {
822         PasswordChangeDlg{}.exec();
823     }
824     else {
825         QMessageBox box(QMessageBox::Warning, tr("Feature Not Supported"),
826                         tr("<b>Your Quassel Core does not support this feature</b>"),
827                         QMessageBox::Ok);
828         box.setInformativeText(tr("You need a Quassel Core v0.12.0 or newer in order to be able to remotely change your password."));
829         box.exec();
830     }
831 }
832
833
834 void MainWin::showMigrationWarning(bool show)
835 {
836     if (show && !_migrationWarning) {
837         _migrationWarning = new QMessageBox(QMessageBox::Information,
838                                             tr("Upgrading..."),
839                                             "<b>" + tr("Your database is being upgraded") + "</b>",
840                                             QMessageBox::NoButton, this);
841         _migrationWarning->setInformativeText("<p>"
842                                               + tr("In order to support new features, we need to make changes to your backlog database. This may take a long while.")
843                                               + "</p><p>"
844                                               + tr("Do not exit Quassel until the upgrade is complete!")
845                                               + "</p>");
846         _migrationWarning->setStandardButtons(QMessageBox::NoButton);
847         _migrationWarning->show();
848     }
849     else if (!show && _migrationWarning) {
850         _migrationWarning->close();
851         _migrationWarning->deleteLater();
852         _migrationWarning = nullptr;
853     }
854 }
855
856
857 void MainWin::onExitRequested(const QString &reason)
858 {
859     if (!reason.isEmpty()) {
860         QMessageBox box(QMessageBox::Critical,
861                         tr("Fatal error"),
862                         "<b>" + tr("Quassel encountered a fatal error and is terminated.") + "</b>",
863                         QMessageBox::Ok);
864         box.setInformativeText("<p>" + tr("Reason:<em>") + " " + reason + "</em>");
865         box.exec();
866     }
867 }
868
869
870 void MainWin::changeActiveBufferView(bool backwards)
871 {
872     if (_activeBufferViewIndex >= 0 && _activeBufferViewIndex < _bufferViews.count()) {
873         _bufferViews[_activeBufferViewIndex]->setActive(false);
874     }
875
876     if (!_bufferViews.count())
877         return;
878
879     int c = _bufferViews.count();
880     while (c--) { // yes, this will reactivate the current active one if all others fail
881         if (backwards) {
882             if (--_activeBufferViewIndex < 0)
883                 _activeBufferViewIndex = _bufferViews.count()-1;
884         }
885         else {
886             if (++_activeBufferViewIndex >= _bufferViews.count())
887                 _activeBufferViewIndex = 0;
888         }
889
890         BufferViewDock *dock = _bufferViews.at(_activeBufferViewIndex);
891         if (dock->isHidden())
892             continue;
893
894         dock->setActive(true);
895         return;
896     }
897
898     _activeBufferViewIndex = -1;
899 }
900
901
902 void MainWin::nextBufferView()
903 {
904     changeActiveBufferView(false);
905 }
906
907
908 void MainWin::previousBufferView()
909 {
910     changeActiveBufferView(true);
911 }
912
913
914 void MainWin::nextBuffer()
915 {
916     BufferView *view = activeBufferView();
917     if (view)
918         view->nextBuffer();
919 }
920
921
922 void MainWin::previousBuffer()
923 {
924     BufferView *view = activeBufferView();
925     if (view)
926         view->previousBuffer();
927 }
928
929
930 void MainWin::hideCurrentBuffer()
931 {
932     BufferView *view = activeBufferView();
933     if (view)
934         view->hideCurrentBuffer();
935 }
936
937
938 void MainWin::showNotificationsDlg()
939 {
940     SettingsPageDlg{new NotificationsSettingsPage{}}.exec();
941 }
942
943
944 void MainWin::on_actionConfigureNetworks_triggered()
945 {
946     SettingsPageDlg{new NetworksSettingsPage{}}.exec();
947 }
948
949
950 void MainWin::on_actionConfigureViews_triggered()
951 {
952     SettingsPageDlg{new BufferViewSettingsPage{}}.exec();
953 }
954
955
956 void MainWin::on_actionLockLayout_toggled(bool lock)
957 {
958     QList<VerticalDock *> docks = findChildren<VerticalDock *>();
959     foreach(VerticalDock *dock, docks) {
960         dock->showTitle(!lock);
961     }
962
963     QList<NickListDock *> nickdocks = findChildren<NickListDock *>();
964     foreach(NickListDock *nickdock, nickdocks) {
965         nickdock->setLocked(lock);
966     }
967
968     QList<BufferViewDock *> bufferdocks = findChildren<BufferViewDock *>();
969     foreach(BufferViewDock *bufferdock, bufferdocks) {
970         bufferdock->setLocked(lock);
971     }
972
973     if (Client::bufferViewManager()) {
974         foreach(ClientBufferViewConfig *config, Client::bufferViewManager()->clientBufferViewConfigs()) {
975             config->setLocked(lock);
976         }
977     }
978
979     _mainToolBar->setMovable(!lock);
980     _nickToolBar->setMovable(!lock);
981
982     QtUiSettings().setValue("LockLayout", lock);
983 }
984
985
986 void MainWin::setupNickWidget()
987 {
988     // create nick dock
989     NickListDock *nickDock = new NickListDock(tr("Nicks"), this);
990     nickDock->setObjectName("NickDock");
991     nickDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
992     nickDock->setLocked(QtUiSettings().value("LockLayout", false).toBool());
993
994     _nickListWidget = new NickListWidget(nickDock);
995     nickDock->setWidget(_nickListWidget);
996
997     addDockWidget(Qt::RightDockWidgetArea, nickDock);
998     _viewMenu->addAction(nickDock->toggleViewAction());
999     nickDock->toggleViewAction()->setText(tr("Show Nick List"));
1000
1001     // See NickListDock::NickListDock();
1002     // connect(nickDock->toggleViewAction(), SIGNAL(triggered(bool)), nickListWidget, SLOT(showWidget(bool)));
1003
1004     // attach the NickListWidget to the BufferModel and the default selection
1005     _nickListWidget->setModel(Client::bufferModel());
1006     _nickListWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
1007
1008     _nickListWidget->setVisible(false);
1009 }
1010
1011
1012 void MainWin::setupChatMonitor()
1013 {
1014     VerticalDock *dock = new VerticalDock(tr("Chat Monitor"), this);
1015     dock->setObjectName("ChatMonitorDock");
1016
1017     ChatMonitorFilter *filter = new ChatMonitorFilter(Client::messageModel(), this);
1018     _chatMonitorView = new ChatMonitorView(filter, this);
1019     _chatMonitorView->show();
1020     dock->setWidget(_chatMonitorView);
1021     dock->hide();
1022
1023     addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
1024     _viewMenu->addAction(dock->toggleViewAction());
1025     dock->toggleViewAction()->setText(tr("Show Chat Monitor"));
1026 }
1027
1028
1029 void MainWin::setupInputWidget()
1030 {
1031     VerticalDock *dock = new VerticalDock(tr("Inputline"), this);
1032     dock->setObjectName("InputDock");
1033
1034     _inputWidget = new InputWidget(dock);
1035     dock->setWidget(_inputWidget);
1036
1037     addDockWidget(Qt::BottomDockWidgetArea, dock);
1038
1039     _viewMenu->addAction(dock->toggleViewAction());
1040     dock->toggleViewAction()->setText(tr("Show Input Line"));
1041
1042     _inputWidget->setModel(Client::bufferModel());
1043     _inputWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
1044
1045     _inputWidget->inputLine()->installEventFilter(_bufferWidget);
1046
1047     connect(_topicWidget, SIGNAL(switchedPlain()), _bufferWidget, SLOT(setFocus()));
1048 }
1049
1050
1051 void MainWin::setupTopicWidget()
1052 {
1053     VerticalDock *dock = new VerticalDock(tr("Topic"), this);
1054     dock->setObjectName("TopicDock");
1055     _topicWidget = new TopicWidget(dock);
1056
1057     dock->setWidget(_topicWidget);
1058
1059     _topicWidget->setModel(Client::bufferModel());
1060     _topicWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
1061
1062     addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
1063
1064     _viewMenu->addAction(dock->toggleViewAction());
1065     dock->toggleViewAction()->setText(tr("Show Topic Line"));
1066 }
1067
1068
1069 void MainWin::setupTransferWidget()
1070 {
1071     auto dock = new QDockWidget(tr("Transfers"), this);
1072     dock->setObjectName("TransferDock");
1073     dock->setAllowedAreas(Qt::TopDockWidgetArea|Qt::BottomDockWidgetArea);
1074
1075     auto view = new QTableView(dock); // to be replaced by the real thing
1076     view->setModel(Client::transferModel());
1077     dock->setWidget(view);
1078     dock->hide(); // hidden by default
1079     addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
1080
1081     auto action = dock->toggleViewAction();
1082     action->setText(tr("Show File Transfers"));
1083     action->setIcon(icon::get("download"));
1084     action->setShortcut(QKeySequence(Qt::Key_F6));
1085     QtUi::actionCollection("General")->addAction("ShowTransferWidget", action);
1086     _viewMenu->addAction(action);
1087 }
1088
1089
1090 void MainWin::setupViewMenuTail()
1091 {
1092     _viewMenu->addSeparator();
1093     _viewMenu->addAction(_fullScreenAction);
1094 }
1095
1096
1097 void MainWin::setupTitleSetter()
1098 {
1099     _titleSetter.setModel(Client::bufferModel());
1100     _titleSetter.setSelectionModel(Client::bufferModel()->standardSelectionModel());
1101 }
1102
1103
1104 void MainWin::setupStatusBar()
1105 {
1106     // MessageProcessor progress
1107     statusBar()->addPermanentWidget(_msgProcessorStatusWidget);
1108
1109     // Connection state
1110     _coreConnectionStatusWidget->update();
1111     statusBar()->addPermanentWidget(_coreConnectionStatusWidget);
1112
1113     QAction *showStatusbar = QtUi::actionCollection("General")->action("ToggleStatusBar");
1114
1115     QtUiSettings uiSettings;
1116
1117     bool enabled = uiSettings.value("ShowStatusBar", QVariant(true)).toBool();
1118     showStatusbar->setChecked(enabled);
1119     enabled ? statusBar()->show() : statusBar()->hide();
1120
1121     connect(showStatusbar, SIGNAL(toggled(bool)), statusBar(), SLOT(setVisible(bool)));
1122     connect(showStatusbar, SIGNAL(toggled(bool)), this, SLOT(saveStatusBarStatus(bool)));
1123
1124     connect(Client::coreConnection(), SIGNAL(connectionMsg(QString)), statusBar(), SLOT(showMessage(QString)));
1125 }
1126
1127
1128 void MainWin::setupHotList()
1129 {
1130     FlatProxyModel *flatProxy = new FlatProxyModel(this);
1131     flatProxy->setSourceModel(Client::bufferModel());
1132     _bufferHotList = new BufferHotListFilter(flatProxy);
1133 }
1134
1135
1136 void MainWin::saveMenuBarStatus(bool enabled)
1137 {
1138     QtUiSettings uiSettings;
1139     uiSettings.setValue("ShowMenuBar", enabled);
1140 }
1141
1142
1143 void MainWin::saveStatusBarStatus(bool enabled)
1144 {
1145     QtUiSettings uiSettings;
1146     uiSettings.setValue("ShowStatusBar", enabled);
1147 }
1148
1149
1150 void MainWin::setupSystray()
1151 {
1152 #ifdef HAVE_DBUS
1153     _systemTray = new StatusNotifierItem(this);
1154 #elif !defined QT_NO_SYSTEMTRAYICON
1155     _systemTray = new LegacySystemTray(this);
1156 #else
1157     _systemTray = new SystemTray(this); // dummy
1158 #endif
1159 }
1160
1161
1162 void MainWin::setupToolBars()
1163 {
1164     connect(_bufferWidget, SIGNAL(currentChanged(QModelIndex)),
1165         QtUi::toolBarActionProvider(), SLOT(currentBufferChanged(QModelIndex)));
1166     connect(_nickListWidget, SIGNAL(nickSelectionChanged(QModelIndexList)),
1167         QtUi::toolBarActionProvider(), SLOT(nickSelectionChanged(QModelIndexList)));
1168
1169 #ifdef Q_OS_MAC
1170     setUnifiedTitleAndToolBarOnMac(true);
1171 #endif
1172
1173 #ifdef HAVE_KDE
1174     _mainToolBar = new KToolBar("MainToolBar", this, Qt::TopToolBarArea, false, true, true);
1175 #else
1176     _mainToolBar = new QToolBar(this);
1177     _mainToolBar->setObjectName("MainToolBar");
1178 #endif
1179     _mainToolBar->setWindowTitle(tr("Main Toolbar"));
1180     addToolBar(_mainToolBar);
1181
1182     if (Quassel::runMode() != Quassel::Monolithic) {
1183         ActionCollection *coll = QtUi::actionCollection("General");
1184         _mainToolBar->addAction(coll->action("ConnectCore"));
1185         _mainToolBar->addAction(coll->action("DisconnectCore"));
1186     }
1187
1188     _mainToolBar->setMovable(!QtUiSettings().value("LockLayout", false).toBool());
1189
1190     QtUi::toolBarActionProvider()->addActions(_mainToolBar, ToolBarActionProvider::MainToolBar);
1191     _toolbarMenu->addAction(_mainToolBar->toggleViewAction());
1192
1193 #ifdef HAVE_KDE
1194     _nickToolBar = new KToolBar("NickToolBar", this, Qt::TopToolBarArea, false, true, true);
1195 #else
1196     _nickToolBar = new QToolBar(this);
1197     _nickToolBar->setObjectName("NickToolBar");
1198 #endif
1199     _nickToolBar->setWindowTitle(tr("Nick Toolbar"));
1200     _nickToolBar->setVisible(false); //default: not visible
1201     addToolBar(_nickToolBar);
1202     _nickToolBar->setMovable(!QtUiSettings().value("LockLayout", false).toBool());
1203
1204     QtUi::toolBarActionProvider()->addActions(_nickToolBar, ToolBarActionProvider::NickToolBar);
1205     _toolbarMenu->addAction(_nickToolBar->toggleViewAction());
1206
1207 #ifdef Q_OS_MAC
1208     QtUiSettings uiSettings;
1209
1210     bool visible = uiSettings.value("ShowMainToolBar", QVariant(true)).toBool();
1211     _mainToolBar->setVisible(visible);
1212     connect(_mainToolBar, SIGNAL(visibilityChanged(bool)), this, SLOT(saveMainToolBarStatus(bool)));
1213 #endif
1214 }
1215
1216 void MainWin::saveMainToolBarStatus(bool enabled)
1217 {
1218 #ifdef Q_OS_MAC
1219     QtUiSettings uiSettings;
1220     uiSettings.setValue("ShowMainToolBar", enabled);
1221 #else
1222     Q_UNUSED(enabled);
1223 #endif
1224 }
1225
1226
1227 void MainWin::doAutoConnect()
1228 {
1229     if (!Client::coreConnection()->connectToCore()) {
1230         // No autoconnect selected (or no accounts)
1231         showCoreConnectionDlg();
1232     }
1233 }
1234
1235
1236 void MainWin::connectedToCore()
1237 {
1238     Q_CHECK_PTR(Client::bufferViewManager());
1239     connect(Client::bufferViewManager(), SIGNAL(bufferViewConfigAdded(int)), this, SLOT(addBufferView(int)));
1240     connect(Client::bufferViewManager(), SIGNAL(bufferViewConfigDeleted(int)), this, SLOT(removeBufferView(int)));
1241     connect(Client::bufferViewManager(), SIGNAL(initDone()), this, SLOT(loadLayout()));
1242
1243     if (Client::transferManager()) {
1244         connect(Client::transferManager(), SIGNAL(transferAdded(QUuid)), SLOT(showNewTransferDlg(QUuid)));
1245     }
1246
1247     setConnectedState();
1248 }
1249
1250
1251 void MainWin::setConnectedState()
1252 {
1253     ActionCollection *coll = QtUi::actionCollection("General");
1254
1255     coll->action("ConnectCore")->setEnabled(false);
1256     coll->action("DisconnectCore")->setEnabled(true);
1257     coll->action("ChangePassword")->setEnabled(true);
1258     coll->action("CoreInfo")->setEnabled(true);
1259
1260     foreach(QAction *action, _fileMenu->actions()) {
1261         if (isRemoteCoreOnly(action))
1262             action->setVisible(!Client::internalCore());
1263     }
1264
1265     disconnect(Client::backlogManager(), SIGNAL(updateProgress(int, int)), _msgProcessorStatusWidget, SLOT(setProgress(int, int)));
1266     disconnect(Client::backlogManager(), SIGNAL(messagesRequested(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
1267     disconnect(Client::backlogManager(), SIGNAL(messagesProcessed(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
1268     if (!Client::internalCore()) {
1269         connect(Client::backlogManager(), SIGNAL(updateProgress(int, int)), _msgProcessorStatusWidget, SLOT(setProgress(int, int)));
1270         connect(Client::backlogManager(), SIGNAL(messagesRequested(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
1271         connect(Client::backlogManager(), SIGNAL(messagesProcessed(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
1272     }
1273
1274     // _viewMenu->setEnabled(true);
1275     if (!Client::internalCore())
1276         statusBar()->showMessage(tr("Connected to core."));
1277     else
1278         statusBar()->clearMessage();
1279
1280     _coreConnectionStatusWidget->setVisible(!Client::internalCore());
1281     updateIcon();
1282     systemTray()->setState(SystemTray::Active);
1283
1284     if (Client::networkIds().isEmpty()) {
1285         IrcConnectionWizard *wizard = new IrcConnectionWizard(this, Qt::Sheet);
1286         wizard->show();
1287     }
1288     else {
1289         // Monolithic always preselects last used buffer - Client only if the connection died
1290         if (Client::coreConnection()->wasReconnect() || Quassel::runMode() == Quassel::Monolithic) {
1291             QtUiSettings s;
1292             BufferId lastUsedBufferId(s.value("LastUsedBufferId").toInt());
1293             if (lastUsedBufferId.isValid())
1294                 Client::bufferModel()->switchToBuffer(lastUsedBufferId);
1295         }
1296     }
1297 }
1298
1299
1300 void MainWin::loadLayout()
1301 {
1302     QtUiSettings s;
1303     int accountId = Client::currentCoreAccount().accountId().toInt();
1304     QByteArray state = s.value(QString("MainWinState-%1").arg(accountId)).toByteArray();
1305     if (state.isEmpty()) {
1306         foreach(BufferViewDock *view, _bufferViews)
1307         view->show();
1308         _layoutLoaded = true;
1309         return;
1310     }
1311     _nickListWidget->setVisible(true);
1312     restoreState(state, accountId);
1313     int bufferViewId = s.value(QString("ActiveBufferView-%1").arg(accountId), -1).toInt();
1314     if (bufferViewId >= 0)
1315         changeActiveBufferView(bufferViewId);
1316
1317     _layoutLoaded = true;
1318 }
1319
1320
1321 void MainWin::saveLayout()
1322 {
1323     QtUiSettings s;
1324     int accountId = _bufferViews.count() ? Client::currentCoreAccount().accountId().toInt() : 0; // only save if we still have a layout!
1325     if (accountId > 0) {
1326         s.setValue(QString("MainWinState-%1").arg(accountId), saveState(accountId));
1327         BufferView *view = activeBufferView();
1328         s.setValue(QString("ActiveBufferView-%1").arg(accountId), view ? view->config()->bufferViewId() : -1);
1329     }
1330 }
1331
1332
1333 void MainWin::disconnectedFromCore()
1334 {
1335     // save core specific layout and remove bufferviews;
1336     saveLayout();
1337     _layoutLoaded = false;
1338
1339     QVariant actionData;
1340     BufferViewDock *dock;
1341     foreach(QAction *action, _bufferViewsMenu->actions()) {
1342         actionData = action->data();
1343         if (!actionData.isValid())
1344             continue;
1345
1346         dock = qobject_cast<BufferViewDock *>(action->parent());
1347         if (dock && actionData.toInt() != -1) {
1348             removeAction(action);
1349             _bufferViews.removeAll(dock);
1350             dock->deleteLater();
1351         }
1352     }
1353
1354     // store last active buffer
1355     QtUiSettings s;
1356     BufferId lastBufId = _bufferWidget->currentBuffer();
1357     if (lastBufId.isValid()) {
1358         s.setValue("LastUsedBufferId", lastBufId.toInt());
1359         // clear the current selection
1360         Client::bufferModel()->standardSelectionModel()->clearSelection();
1361     }
1362     restoreState(s.value("MainWinState").toByteArray());
1363     setDisconnectedState();
1364 }
1365
1366
1367 void MainWin::setDisconnectedState()
1368 {
1369     ActionCollection *coll = QtUi::actionCollection("General");
1370     //ui.menuCore->setEnabled(false);
1371     coll->action("ConnectCore")->setEnabled(true);
1372     coll->action("DisconnectCore")->setEnabled(false);
1373     coll->action("CoreInfo")->setEnabled(false);
1374     coll->action("ChangePassword")->setEnabled(false);
1375     //_viewMenu->setEnabled(false);
1376     statusBar()->showMessage(tr("Not connected to core."));
1377     if (_msgProcessorStatusWidget)
1378         _msgProcessorStatusWidget->setProgress(0, 0);
1379     updateIcon();
1380     systemTray()->setState(SystemTray::Passive);
1381     _nickListWidget->setVisible(false);
1382 }
1383
1384
1385 void MainWin::userAuthenticationRequired(CoreAccount *account, bool *valid, const QString &errorMessage)
1386 {
1387     Q_UNUSED(errorMessage)
1388     CoreConnectAuthDlg dlg(account);
1389     *valid = (dlg.exec() == QDialog::Accepted);
1390 }
1391
1392
1393 void MainWin::handleNoSslInClient(bool *accepted)
1394 {
1395     QMessageBox box(QMessageBox::Warning, tr("Unencrypted Connection"), tr("<b>Your client does not support SSL encryption</b>"),
1396         QMessageBox::Ignore|QMessageBox::Cancel);
1397     box.setInformativeText(tr("Sensitive data, like passwords, will be transmitted unencrypted to your Quassel core."));
1398     box.setDefaultButton(QMessageBox::Ignore);
1399     *accepted = box.exec() == QMessageBox::Ignore;
1400 }
1401
1402
1403 void MainWin::handleNoSslInCore(bool *accepted)
1404 {
1405     QMessageBox box(QMessageBox::Warning, tr("Unencrypted Connection"), tr("<b>Your core does not support SSL encryption</b>"),
1406         QMessageBox::Ignore|QMessageBox::Cancel);
1407     box.setInformativeText(tr("Sensitive data, like passwords, will be transmitted unencrypted to your Quassel core."));
1408     box.setDefaultButton(QMessageBox::Ignore);
1409     *accepted = box.exec() == QMessageBox::Ignore;
1410 }
1411
1412
1413 #ifdef HAVE_SSL
1414
1415 void MainWin::handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently)
1416 {
1417     QString errorString = "<ul>";
1418     foreach(const QSslError error, socket->sslErrors())
1419     errorString += QString("<li>%1</li>").arg(error.errorString());
1420     errorString += "</ul>";
1421
1422     QMessageBox box(QMessageBox::Warning,
1423         tr("Untrusted Security Certificate"),
1424         tr("<b>The SSL certificate provided by the core at %1 is untrusted for the following reasons:</b>").arg(socket->peerName()),
1425         QMessageBox::Cancel);
1426     box.setInformativeText(errorString);
1427     box.addButton(tr("Continue"), QMessageBox::AcceptRole);
1428     box.setDefaultButton(box.addButton(tr("Show Certificate"), QMessageBox::HelpRole));
1429
1430     QMessageBox::ButtonRole role;
1431     do {
1432         box.exec();
1433         role = box.buttonRole(box.clickedButton());
1434         if (role == QMessageBox::HelpRole) {
1435             SslInfoDlg dlg(socket);
1436             dlg.exec();
1437         }
1438     }
1439     while (role == QMessageBox::HelpRole);
1440
1441     *accepted = role == QMessageBox::AcceptRole;
1442     if (*accepted) {
1443         QMessageBox box2(QMessageBox::Warning,
1444             tr("Untrusted Security Certificate"),
1445             tr("Would you like to accept this certificate forever without being prompted?"),
1446             0);
1447         box2.setDefaultButton(box2.addButton(tr("Current Session Only"), QMessageBox::NoRole));
1448         box2.addButton(tr("Forever"), QMessageBox::YesRole);
1449         box2.exec();
1450         *permanently =  box2.buttonRole(box2.clickedButton()) == QMessageBox::YesRole;
1451     }
1452 }
1453
1454
1455 #endif /* HAVE_SSL */
1456
1457 void MainWin::handleCoreConnectionError(const QString &error)
1458 {
1459     QMessageBox::critical(this, tr("Core Connection Error"), error, QMessageBox::Ok);
1460 }
1461
1462
1463 void MainWin::showCoreConnectionDlg()
1464 {
1465     CoreConnectDlg dlg;
1466     if (dlg.exec() == QDialog::Accepted) {
1467         AccountId accId = dlg.selectedAccount();
1468         if (accId.isValid())
1469             Client::coreConnection()->connectToCore(accId);
1470     }
1471 }
1472
1473
1474 void MainWin::showCoreConfigWizard(const QVariantList &backends, const QVariantList &authenticators)
1475 {
1476     CoreConfigWizard *wizard = new CoreConfigWizard(Client::coreConnection(), backends, authenticators, this);
1477
1478     wizard->show();
1479 }
1480
1481
1482 void MainWin::showChannelList(NetworkId netId, const QString &channelFilters, bool listImmediately)
1483 {
1484     if (!netId.isValid()) {
1485         QAction *action = qobject_cast<QAction *>(sender());
1486         if (action)
1487             netId = action->data().value<NetworkId>();
1488         if (!netId.isValid()) {
1489             // We still haven't found a valid network, probably no network selected, e.g. "/list"
1490             // on the client homescreen when no networks are connected.
1491             QMessageBox box(QMessageBox::Information, tr("No network selected"),
1492                             QString("<b>%1</b>").arg(tr("No network selected")),
1493                             QMessageBox::Ok);
1494             box.setInformativeText(tr("Select a network before trying to view the channel list."));
1495             box.exec();
1496             return;
1497         }
1498     }
1499
1500     ChannelListDlg *channelListDlg = new ChannelListDlg(this);
1501     channelListDlg->setAttribute(Qt::WA_DeleteOnClose);
1502     channelListDlg->setNetwork(netId);
1503     if (!channelFilters.isEmpty()) {
1504         channelListDlg->setChannelFilters(channelFilters);
1505     }
1506     if (listImmediately) {
1507         channelListDlg->requestSearch();
1508     }
1509     channelListDlg->show();
1510 }
1511
1512
1513 void MainWin::showNetworkConfig(NetworkId netId)
1514 {
1515     SettingsPageDlg dlg{new NetworksSettingsPage{}};
1516     if (netId.isValid())
1517         qobject_cast<NetworksSettingsPage *>(dlg.currentPage())->bufferList_Open(netId);
1518     dlg.exec();
1519 }
1520
1521
1522 void MainWin::showIgnoreList(QString newRule)
1523 {
1524     SettingsPageDlg dlg{new IgnoreListSettingsPage{}};
1525     // prepare config dialog for new rule
1526     if (!newRule.isEmpty())
1527         qobject_cast<IgnoreListSettingsPage *>(dlg.currentPage())->editIgnoreRule(newRule);
1528     dlg.exec();
1529 }
1530
1531
1532 void MainWin::showCoreInfoDlg()
1533 {
1534     CoreInfoDlg{}.exec();
1535 }
1536
1537
1538 void MainWin::showAwayLog()
1539 {
1540     if (_awayLog)
1541         return;
1542     AwayLogFilter *filter = new AwayLogFilter(Client::messageModel());
1543     _awayLog = new AwayLogView(filter, 0);
1544     filter->setParent(_awayLog);
1545     connect(_awayLog, SIGNAL(destroyed()), this, SLOT(awayLogDestroyed()));
1546     _awayLog->setAttribute(Qt::WA_DeleteOnClose);
1547     _awayLog->show();
1548 }
1549
1550
1551 void MainWin::awayLogDestroyed()
1552 {
1553     _awayLog = 0;
1554 }
1555
1556
1557 void MainWin::showSettingsDlg()
1558 {
1559     SettingsDlg *dlg = new SettingsDlg(this);
1560
1561     //Category: Interface
1562     dlg->registerSettingsPage(new AppearanceSettingsPage(dlg));
1563     dlg->registerSettingsPage(new ChatViewSettingsPage(dlg));
1564     dlg->registerSettingsPage(new ChatViewColorSettingsPage(dlg));
1565     dlg->registerSettingsPage(new ChatMonitorSettingsPage(dlg));
1566     dlg->registerSettingsPage(new ItemViewSettingsPage(dlg));
1567     dlg->registerSettingsPage(new BufferViewSettingsPage(dlg));
1568     dlg->registerSettingsPage(new InputWidgetSettingsPage(dlg));
1569     dlg->registerSettingsPage(new TopicWidgetSettingsPage(dlg));
1570 #ifdef HAVE_SONNET
1571     dlg->registerSettingsPage(new SonnetSettingsPage(dlg));
1572 #endif
1573     dlg->registerSettingsPage(new HighlightSettingsPage(dlg));
1574     dlg->registerSettingsPage(new CoreHighlightSettingsPage(dlg));
1575     dlg->registerSettingsPage(new NotificationsSettingsPage(dlg));
1576     dlg->registerSettingsPage(new BacklogSettingsPage(dlg));
1577
1578     //Category: IRC
1579     dlg->registerSettingsPage(new ConnectionSettingsPage(dlg));
1580     dlg->registerSettingsPage(new IdentitiesSettingsPage(dlg));
1581     dlg->registerSettingsPage(new NetworksSettingsPage(dlg));
1582     dlg->registerSettingsPage(new AliasesSettingsPage(dlg));
1583     dlg->registerSettingsPage(new IgnoreListSettingsPage(dlg));
1584     // dlg->registerSettingsPage(new DccSettingsPage(dlg)); not ready yet
1585
1586     // Category: Remote Cores
1587     if (Quassel::runMode() != Quassel::Monolithic) {
1588         dlg->registerSettingsPage(new CoreAccountSettingsPage(dlg));
1589         dlg->registerSettingsPage(new CoreConnectionSettingsPage(dlg));
1590     }
1591
1592     dlg->show();
1593 }
1594
1595
1596 void MainWin::showAboutDlg()
1597 {
1598     AboutDlg{}.exec();
1599 }
1600
1601
1602 void MainWin::showShortcutsDlg()
1603 {
1604 #ifdef HAVE_KDE
1605     KShortcutsDialog dlg(KShortcutsEditor::AllActions, KShortcutsEditor::LetterShortcutsDisallowed);
1606     foreach(KActionCollection *coll, QtUi::actionCollections())
1607     dlg.addCollection(coll, coll->property("Category").toString());
1608     dlg.configure(true);
1609 #else
1610     SettingsPageDlg{new ShortcutsSettingsPage{QtUi::actionCollections()}}.exec();
1611 #endif
1612 }
1613
1614
1615 void MainWin::showNewTransferDlg(const QUuid &transferId)
1616 {
1617     auto transfer = Client::transferManager()->transfer(transferId);
1618     if (transfer) {
1619         if (transfer->status() == Transfer::Status::New) {
1620             ReceiveFileDlg *dlg = new ReceiveFileDlg(transfer, this);
1621             dlg->show();
1622         }
1623     }
1624     else {
1625         qWarning() << "Unknown transfer ID" << transferId;
1626     }
1627 }
1628
1629
1630 void MainWin::onFullScreenToggled()
1631 {
1632     // Relying on QWidget::isFullScreen is discouraged, see the KToggleFullScreenAction docs
1633     // Also, one should not use showFullScreen() or showNormal(), as those reset all other window flags
1634
1635 #ifdef HAVE_KDE
1636     static_cast<KToggleFullScreenAction*>(_fullScreenAction)->setFullScreen(this, _fullScreenAction->isChecked());
1637 #else
1638     if (_fullScreenAction->isChecked())
1639         setWindowState(windowState() | Qt::WindowFullScreen);
1640     else
1641         setWindowState(windowState() & ~Qt::WindowFullScreen);
1642 #endif
1643 }
1644
1645
1646 /********************************************************************************************************/
1647
1648 bool MainWin::event(QEvent *event)
1649 {
1650     switch(event->type()) {
1651     case QEvent::WindowActivate: {
1652         BufferId bufferId = Client::bufferModel()->currentBuffer();
1653         if (bufferId.isValid())
1654             Client::instance()->markBufferAsRead(bufferId);
1655         break;
1656     }
1657     case QEvent::WindowDeactivate:
1658         if (bufferWidget()->autoMarkerLineOnLostFocus())
1659             bufferWidget()->setMarkerLine();
1660         break;
1661     default:
1662         break;
1663     }
1664     return QMainWindow::event(event);
1665 }
1666
1667
1668 void MainWin::moveEvent(QMoveEvent *event)
1669 {
1670     if (!(windowState() & Qt::WindowMaximized))
1671         _normalPos = event->pos();
1672
1673     QMainWindow::moveEvent(event);
1674 }
1675
1676
1677 void MainWin::resizeEvent(QResizeEvent *event)
1678 {
1679     if (!(windowState() & Qt::WindowMaximized))
1680         _normalSize = event->size();
1681
1682     QMainWindow::resizeEvent(event);
1683 }
1684
1685
1686 void MainWin::closeEvent(QCloseEvent *event)
1687 {
1688     QtUiSettings s;
1689     QtUiApplication *app = qobject_cast<QtUiApplication *> qApp;
1690     Q_ASSERT(app);
1691     // On OSX it can happen that the closeEvent occurs twice. (Especially if packaged with Frameworks)
1692     // This messes up MainWinState/MainWinHidden save/restore.
1693     // It's a bug in Qt: https://bugreports.qt.io/browse/QTBUG-43344
1694     if (!_aboutToQuit && !app->isAboutToQuit() && QtUi::haveSystemTray() && s.value("MinimizeOnClose").toBool()) {
1695         QtUi::hideMainWidget();
1696         event->ignore();
1697     }
1698     else if(!_aboutToQuit) {
1699         _aboutToQuit = true;
1700         event->accept();
1701         Quassel::instance()->quit();
1702     }
1703     else {
1704         event->ignore();
1705     }
1706 }
1707
1708
1709 void MainWin::messagesInserted(const QModelIndex &parent, int start, int end)
1710 {
1711     Q_UNUSED(parent);
1712
1713     bool hasFocus = QApplication::activeWindow() != 0;
1714
1715     for (int i = start; i <= end; i++) {
1716         QModelIndex idx = Client::messageModel()->index(i, ChatLineModel::ContentsColumn);
1717         if (!idx.isValid()) {
1718             qDebug() << "MainWin::messagesInserted(): Invalid model index!";
1719             continue;
1720         }
1721         Message::Flags flags = (Message::Flags)idx.data(ChatLineModel::FlagsRole).toInt();
1722         if (flags.testFlag(Message::Backlog) || flags.testFlag(Message::Self))
1723             continue;
1724
1725         BufferId bufId = idx.data(ChatLineModel::BufferIdRole).value<BufferId>();
1726         BufferInfo::Type bufType = Client::networkModel()->bufferType(bufId);
1727
1728         // check if bufferId belongs to the shown chatlists
1729         if (!(Client::bufferViewOverlay()->bufferIds().contains(bufId) ||
1730               Client::bufferViewOverlay()->tempRemovedBufferIds().contains(bufId)))
1731             continue;
1732
1733         // check if it's the buffer currently displayed
1734         if (hasFocus && bufId == Client::bufferModel()->currentBuffer())
1735             continue;
1736
1737         // only show notifications for higlights or queries
1738         if (bufType != BufferInfo::QueryBuffer && !(flags & Message::Highlight))
1739             continue;
1740
1741         // and of course: don't notify for ignored messages
1742         if (Client::ignoreListManager() && Client::ignoreListManager()->match(idx.data(MessageModel::MessageRole).value<Message>(), Client::networkModel()->networkName(bufId)))
1743             continue;
1744
1745         // seems like we have a legit notification candidate!
1746         QModelIndex senderIdx = Client::messageModel()->index(i, ChatLineModel::SenderColumn);
1747         QString sender = senderIdx.data(ChatLineModel::EditRole).toString();
1748         QString contents = idx.data(ChatLineModel::DisplayRole).toString();
1749         AbstractNotificationBackend::NotificationType type;
1750
1751         if (bufType == BufferInfo::QueryBuffer && !hasFocus)
1752             type = AbstractNotificationBackend::PrivMsg;
1753         else if (bufType == BufferInfo::QueryBuffer && hasFocus)
1754             type = AbstractNotificationBackend::PrivMsgFocused;
1755         else if (flags & Message::Highlight && !hasFocus)
1756             type = AbstractNotificationBackend::Highlight;
1757         else
1758             type = AbstractNotificationBackend::HighlightFocused;
1759
1760         QtUi::instance()->invokeNotification(bufId, type, sender, contents);
1761     }
1762 }
1763
1764
1765 void MainWin::currentBufferChanged(BufferId buffer)
1766 {
1767     if (buffer.isValid())
1768         Client::instance()->markBufferAsRead(buffer);
1769 }
1770
1771
1772 void MainWin::clientNetworkCreated(NetworkId id)
1773 {
1774     const Network *net = Client::network(id);
1775     QAction *act = new QAction(net->networkName(), this);
1776     act->setObjectName(QString("NetworkAction-%1").arg(id.toInt()));
1777     act->setData(QVariant::fromValue<NetworkId>(id));
1778     connect(net, SIGNAL(updatedRemotely()), this, SLOT(clientNetworkUpdated()));
1779     connect(act, SIGNAL(triggered()), this, SLOT(connectOrDisconnectFromNet()));
1780
1781     QAction *beforeAction = 0;
1782     foreach(QAction *action, _networksMenu->actions()) {
1783         if (!action->data().isValid()) // ignore stock actions
1784             continue;
1785         if (net->networkName().localeAwareCompare(action->text()) < 0) {
1786             beforeAction = action;
1787             break;
1788         }
1789     }
1790     _networksMenu->insertAction(beforeAction, act);
1791 }
1792
1793
1794 void MainWin::clientNetworkUpdated()
1795 {
1796     const Network *net = qobject_cast<const Network *>(sender());
1797     if (!net)
1798         return;
1799
1800     QAction *action = findChild<QAction *>(QString("NetworkAction-%1").arg(net->networkId().toInt()));
1801     if (!action)
1802         return;
1803
1804     action->setText(net->networkName());
1805
1806     switch (net->connectionState()) {
1807     case Network::Initialized:
1808         action->setIcon(icon::get("network-connect"));
1809         // if we have no currently selected buffer, jump to the first connecting statusbuffer
1810         if (!bufferWidget()->currentBuffer().isValid()) {
1811             QModelIndex idx = Client::networkModel()->networkIndex(net->networkId());
1812             if (idx.isValid()) {
1813                 BufferId statusBufferId = idx.data(NetworkModel::BufferIdRole).value<BufferId>();
1814                 Client::bufferModel()->switchToBuffer(statusBufferId);
1815             }
1816         }
1817         break;
1818     case Network::Disconnected:
1819         action->setIcon(icon::get("network-disconnect"));
1820         break;
1821     default:
1822         action->setIcon(icon::get("network-wired"));
1823     }
1824 }
1825
1826
1827 void MainWin::clientNetworkRemoved(NetworkId id)
1828 {
1829     QAction *action = findChild<QAction *>(QString("NetworkAction-%1").arg(id.toInt()));
1830     if (!action)
1831         return;
1832
1833     action->deleteLater();
1834 }
1835
1836
1837 void MainWin::connectOrDisconnectFromNet()
1838 {
1839     QAction *act = qobject_cast<QAction *>(sender());
1840     if (!act) return;
1841     const Network *net = Client::network(act->data().value<NetworkId>());
1842     if (!net) return;
1843     if (net->connectionState() == Network::Disconnected) net->requestConnect();
1844     else net->requestDisconnect();
1845 }
1846
1847
1848 void MainWin::on_inputFormatApplyColor_triggered()
1849 {
1850     if (!_inputWidget)
1851         return;
1852
1853     _inputWidget->applyFormatActiveColor();
1854 }
1855
1856
1857 void MainWin::on_inputFormatApplyColorFill_triggered()
1858 {
1859     if (!_inputWidget)
1860         return;
1861
1862     _inputWidget->applyFormatActiveColorFill();
1863 }
1864
1865
1866 void MainWin::on_inputFormatClear_triggered()
1867 {
1868     if (!_inputWidget)
1869         return;
1870
1871     _inputWidget->clearFormat();
1872 }
1873
1874
1875 void MainWin::on_inputFormatBold_triggered()
1876 {
1877     if (!_inputWidget)
1878         return;
1879
1880     _inputWidget->toggleFormatBold();
1881 }
1882
1883
1884 void MainWin::on_inputFormatItalic_triggered()
1885 {
1886     if (!_inputWidget)
1887         return;
1888
1889     _inputWidget->toggleFormatItalic();
1890 }
1891
1892
1893 void MainWin::on_inputFormatUnderline_triggered()
1894 {
1895     if (!_inputWidget)
1896         return;
1897
1898     _inputWidget->toggleFormatUnderline();
1899 }
1900
1901
1902 void MainWin::on_jumpHotBuffer_triggered()
1903 {
1904     if (!_bufferHotList->rowCount())
1905         return;
1906
1907     Client::bufferModel()->switchToBuffer(_bufferHotList->hottestBuffer());
1908 }
1909
1910 void MainWin::on_bufferSearch_triggered()
1911 {
1912     if (_activeBufferViewIndex < 0 || _activeBufferViewIndex >= _bufferViews.count()) {
1913         qWarning() << "Tried to activate filter on invalid bufferview:" << _activeBufferViewIndex;
1914         return;
1915     }
1916
1917     _bufferViews[_activeBufferViewIndex]->activateFilter();
1918 }
1919
1920
1921 void MainWin::onJumpKey()
1922 {
1923     QAction *action = qobject_cast<QAction *>(sender());
1924     if (!action || !Client::bufferModel())
1925         return;
1926     int idx = action->property("Index").toInt();
1927
1928     if (_jumpKeyMap.isEmpty())
1929         _jumpKeyMap = CoreAccountSettings().jumpKeyMap();
1930
1931     if (!_jumpKeyMap.contains(idx))
1932         return;
1933
1934     BufferId buffer = _jumpKeyMap.value(idx);
1935     if (buffer.isValid())
1936         Client::bufferModel()->switchToBuffer(buffer);
1937 }
1938
1939
1940 void MainWin::bindJumpKey()
1941 {
1942     QAction *action = qobject_cast<QAction *>(sender());
1943     if (!action || !Client::bufferModel())
1944         return;
1945     int idx = action->property("Index").toInt();
1946
1947     _jumpKeyMap[idx] = Client::bufferModel()->currentBuffer();
1948     CoreAccountSettings().setJumpKeyMap(_jumpKeyMap);
1949 }
1950
1951
1952 void MainWin::on_actionDebugNetworkModel_triggered()
1953 {
1954     QTreeView *view = new QTreeView;
1955     view->setAttribute(Qt::WA_DeleteOnClose);
1956     view->setWindowTitle("Debug NetworkModel View");
1957     view->setModel(Client::networkModel());
1958     view->setColumnWidth(0, 250);
1959     view->setColumnWidth(1, 250);
1960     view->setColumnWidth(2, 80);
1961     view->resize(610, 300);
1962     view->show();
1963 }
1964
1965
1966 void MainWin::on_actionDebugHotList_triggered()
1967 {
1968     _bufferHotList->invalidate();
1969     _bufferHotList->sort(0, Qt::DescendingOrder);
1970
1971     QTreeView *view = new QTreeView;
1972     view->setAttribute(Qt::WA_DeleteOnClose);
1973     view->setModel(_bufferHotList);
1974     view->show();
1975 }
1976
1977
1978 void MainWin::on_actionDebugBufferViewOverlay_triggered()
1979 {
1980     DebugBufferViewOverlay *overlay = new DebugBufferViewOverlay(0);
1981     overlay->setAttribute(Qt::WA_DeleteOnClose);
1982     overlay->show();
1983 }
1984
1985
1986 void MainWin::on_actionDebugMessageModel_triggered()
1987 {
1988     QTableView *view = new QTableView(0);
1989     DebugMessageModelFilter *filter = new DebugMessageModelFilter(view);
1990     filter->setSourceModel(Client::messageModel());
1991     view->setModel(filter);
1992     view->setAttribute(Qt::WA_DeleteOnClose, true);
1993     view->verticalHeader()->hide();
1994     view->horizontalHeader()->setStretchLastSection(true);
1995     view->show();
1996 }
1997
1998
1999 void MainWin::on_actionDebugLog_triggered()
2000 {
2001     auto dlg = new DebugLogDlg(this);
2002     dlg->show();
2003 }
2004
2005
2006 void MainWin::showStatusBarMessage(const QString &message)
2007 {
2008     statusBar()->showMessage(message, 10000);
2009 }