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