fixed focus when closing ChatViewSearchbar
[quassel.git] / src / qtui / mainwin.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #include "mainwin.h"
21
22 #ifdef HAVE_KDE
23 #  include <KAction>
24 #  include <KActionCollection>
25 #  include <KHelpMenu>
26 #  include <KMenuBar>
27 #  include <KShortcutsDialog>
28 #  include <KStatusBar>
29 #  include <KToolBar>
30 #  include <KWindowSystem>
31 #endif
32
33 #ifdef Q_WS_X11
34 #  include <QX11Info>
35 #endif
36
37 #include "aboutdlg.h"
38 #include "awaylogfilter.h"
39 #include "awaylogview.h"
40 #include "action.h"
41 #include "actioncollection.h"
42 #include "bufferhotlistfilter.h"
43 #include "buffermodel.h"
44 #include "bufferview.h"
45 #include "bufferviewoverlay.h"
46 #include "bufferviewoverlayfilter.h"
47 #include "bufferwidget.h"
48 #include "channellistdlg.h"
49 #include "chatlinemodel.h"
50 #include "chatmonitorfilter.h"
51 #include "chatmonitorview.h"
52 #include "chatview.h"
53 #include "client.h"
54 #include "clientbacklogmanager.h"
55 #include "clientbufferviewconfig.h"
56 #include "clientbufferviewmanager.h"
57 #include "clientignorelistmanager.h"
58 #include "coreconfigwizard.h"
59 #include "coreconnectdlg.h"
60 #include "coreconnection.h"
61 #include "coreconnectionstatuswidget.h"
62 #include "coreinfodlg.h"
63 #include "contextmenuactionprovider.h"
64 #include "debugbufferviewoverlay.h"
65 #include "debuglogwidget.h"
66 #include "debugmessagemodelfilter.h"
67 #include "flatproxymodel.h"
68 #include "iconloader.h"
69 #include "inputwidget.h"
70 #include "irclistmodel.h"
71 #include "ircconnectionwizard.h"
72 #include "jumpkeyhandler.h"
73 #include "msgprocessorstatuswidget.h"
74 #include "nicklistwidget.h"
75 #include "qtuiapplication.h"
76 #include "qtuimessageprocessor.h"
77 #include "qtuisettings.h"
78 #include "qtuistyle.h"
79 #include "settingsdlg.h"
80 #include "settingspagedlg.h"
81 #include "systemtray.h"
82 #include "toolbaractionprovider.h"
83 #include "topicwidget.h"
84 #include "verticaldock.h"
85
86 #ifndef HAVE_KDE
87 #  ifdef HAVE_DBUS
88 #    include "desktopnotificationbackend.h"
89 #  endif
90 #  ifdef HAVE_PHONON
91 #    include "phononnotificationbackend.h"
92 #  endif
93 #  include "systraynotificationbackend.h"
94 #  include "taskbarnotificationbackend.h"
95 #else /* HAVE_KDE */
96 #  include "knotificationbackend.h"
97 #endif /* HAVE_KDE */
98
99 #ifdef HAVE_SSL
100 #  include "sslinfodlg.h"
101 #endif
102
103 #ifdef HAVE_INDICATEQT
104   #include "indicatornotificationbackend.h"
105 #endif
106
107 #include "settingspages/aliasessettingspage.h"
108 #include "settingspages/appearancesettingspage.h"
109 #include "settingspages/backlogsettingspage.h"
110 #include "settingspages/bufferviewsettingspage.h"
111 #include "settingspages/chatmonitorsettingspage.h"
112 #include "settingspages/chatviewsettingspage.h"
113 #include "settingspages/connectionsettingspage.h"
114 #include "settingspages/coreaccountsettingspage.h"
115 #include "settingspages/coreconnectionsettingspage.h"
116 #include "settingspages/highlightsettingspage.h"
117 #include "settingspages/identitiessettingspage.h"
118 #include "settingspages/ignorelistsettingspage.h"
119 #include "settingspages/inputwidgetsettingspage.h"
120 #include "settingspages/itemviewsettingspage.h"
121 #include "settingspages/networkssettingspage.h"
122 #include "settingspages/notificationssettingspage.h"
123 #include "settingspages/topicwidgetsettingspage.h"
124
125 MainWin::MainWin(QWidget *parent)
126 #ifdef HAVE_KDE
127   : KMainWindow(parent),
128   _kHelpMenu(new KHelpMenu(this, KGlobal::mainComponent().aboutData())),
129 #else
130   : QMainWindow(parent),
131 #endif
132     _msgProcessorStatusWidget(new MsgProcessorStatusWidget(this)),
133     _coreConnectionStatusWidget(new CoreConnectionStatusWidget(Client::coreConnection(), this)),
134     _titleSetter(this),
135     _awayLog(0),
136     _layoutLoaded(false)
137 {
138 #ifdef Q_WS_WIN
139   dwTickCount = 0;
140 #endif
141
142   QtUiSettings uiSettings;
143   QString style = uiSettings.value("Style", QString()).toString();
144   if(!style.isEmpty()) {
145     QApplication::setStyle(style);
146   }
147
148   QApplication::setQuitOnLastWindowClosed(false);
149
150   setWindowTitle("Quassel IRC");
151   setWindowIconText("Quassel IRC");
152   updateIcon();
153
154   installEventFilter(new JumpKeyHandler(this));
155 }
156
157 void MainWin::init() {
158   connect(Client::instance(), SIGNAL(networkCreated(NetworkId)), SLOT(clientNetworkCreated(NetworkId)));
159   connect(Client::instance(), SIGNAL(networkRemoved(NetworkId)), SLOT(clientNetworkRemoved(NetworkId)));
160   connect(Client::messageModel(), SIGNAL(rowsInserted(const QModelIndex &, int, int)),
161            SLOT(messagesInserted(const QModelIndex &, int, int)));
162   connect(GraphicalUi::contextMenuActionProvider(), SIGNAL(showChannelList(NetworkId)), SLOT(showChannelList(NetworkId)));
163   connect(GraphicalUi::contextMenuActionProvider(), SIGNAL(showIgnoreList(QString)), SLOT(showIgnoreList(QString)));
164
165   connect(Client::coreConnection(), SIGNAL(startCoreSetup(QVariantList)), SLOT(showCoreConfigWizard(QVariantList)));
166   connect(Client::coreConnection(), SIGNAL(connectionErrorPopup(QString)), SLOT(handleCoreConnectionError(QString)));
167   connect(Client::coreConnection(), SIGNAL(userAuthenticationRequired(CoreAccount *, bool *, QString)), SLOT(userAuthenticationRequired(CoreAccount *, bool *, QString)));
168   connect(Client::coreConnection(), SIGNAL(handleNoSslInClient(bool*)), SLOT(handleNoSslInClient(bool *)));
169   connect(Client::coreConnection(), SIGNAL(handleNoSslInCore(bool*)), SLOT(handleNoSslInCore(bool *)));
170 #ifdef HAVE_SSL
171   connect(Client::coreConnection(), SIGNAL(handleSslErrors(const QSslSocket *, bool *, bool *)), SLOT(handleSslErrors(const QSslSocket *, bool *, bool *)));
172 #endif
173
174   // Setup Dock Areas
175   setDockNestingEnabled(true);
176   setCorner(Qt::TopLeftCorner, Qt::LeftDockWidgetArea);
177   setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
178   setCorner(Qt::TopRightCorner, Qt::RightDockWidgetArea);
179   setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea);
180
181   // Order is sometimes important
182   setupActions();
183   setupBufferWidget();
184   setupMenus();
185   setupTopicWidget();
186   setupNickWidget();
187   setupInputWidget();
188   setupChatMonitor();
189   setupStatusBar();
190   setupToolBars();
191   setupSystray();
192   setupTitleSetter();
193   setupHotList();
194
195 #ifndef HAVE_KDE
196   QtUi::registerNotificationBackend(new TaskbarNotificationBackend(this));
197 #  ifndef QT_NO_SYSTEMTRAYICON
198   QtUi::registerNotificationBackend(new SystrayNotificationBackend(this));
199 #  endif
200 #  ifdef HAVE_PHONON
201   QtUi::registerNotificationBackend(new PhononNotificationBackend(this));
202 #  endif
203 #  ifdef HAVE_DBUS
204   QtUi::registerNotificationBackend(new DesktopNotificationBackend(this));
205 #  endif
206
207 #else /* HAVE_KDE */
208   QtUi::registerNotificationBackend(new KNotificationBackend(this));
209 #endif /* HAVE_KDE */
210
211 #ifdef HAVE_INDICATEQT
212   QtUi::registerNotificationBackend(new IndicatorNotificationBackend(this));
213 #endif
214
215   connect(bufferWidget(), SIGNAL(currentChanged(BufferId)), SLOT(currentBufferChanged(BufferId)));
216
217   setDisconnectedState();  // Disable menus and stuff
218
219 #ifdef HAVE_KDE
220   setAutoSaveSettings();
221 #endif
222
223   // restore mainwin state
224   QtUiSettings s;
225   restoreStateFromSettings(s);
226
227   // restore locked state of docks
228   QtUi::actionCollection("General")->action("LockLayout")->setChecked(s.value("LockLayout", false).toBool());
229
230   CoreConnection *conn = Client::coreConnection();
231   if(!conn->connectToCore()) {
232     // No autoconnect selected (or no accounts)
233     showCoreConnectionDlg();
234   }
235 }
236
237 MainWin::~MainWin() {
238
239 }
240
241 void MainWin::quit() {
242   QtUiSettings s;
243   saveStateToSettings(s);
244   saveLayout();
245   QApplication::quit();
246 }
247
248 void MainWin::saveStateToSettings(UiSettings &s) {
249   s.setValue("MainWinSize", _normalSize);
250   s.setValue("MainWinPos", _normalPos);
251   s.setValue("MainWinState", saveState());
252   s.setValue("MainWinGeometry", saveGeometry());
253   s.setValue("MainWinMinimized", isMinimized());
254   s.setValue("MainWinMaximized", isMaximized());
255   s.setValue("MainWinHidden", !isVisible());
256
257 #ifdef HAVE_KDE
258   saveAutoSaveSettings();
259 #endif
260 }
261
262 void MainWin::restoreStateFromSettings(UiSettings &s) {
263   _normalSize = s.value("MainWinSize", size()).toSize();
264   _normalPos = s.value("MainWinPos", pos()).toPoint();
265   bool maximized = s.value("MainWinMaximized", false).toBool();
266
267 #ifndef HAVE_KDE
268   restoreGeometry(s.value("MainWinGeometry").toByteArray());
269
270   if(maximized) {
271     // restoreGeometry() fails if the windows was maximized, so we resize and position explicitly
272     resize(_normalSize);
273     move(_normalPos);
274   }
275
276   restoreState(s.value("MainWinState").toByteArray());
277
278 #else
279   move(_normalPos);
280 #endif
281
282 #ifndef QT_NO_SYSTEMTRAYICON
283   if(s.value("MainWinHidden").toBool()) {
284     hideToTray();
285     return;
286   }
287 #endif
288   if(s.value("MainWinMinimized").toBool())
289     showMinimized();
290   else if(maximized)
291     showMaximized();
292   else
293     show();
294 }
295
296 void MainWin::updateIcon() {
297 #ifdef Q_WS_MAC
298   const int size = 128;
299 #else
300   const int size = 48;
301 #endif
302
303   QPixmap icon;
304   if(Client::isConnected())
305     icon = DesktopIcon("quassel", size);
306   else
307     icon = DesktopIcon("quassel_inactive", size);
308   setWindowIcon(icon);
309   qApp->setWindowIcon(icon);
310 }
311
312 void MainWin::setupActions() {
313   ActionCollection *coll = QtUi::actionCollection("General");
314   // File
315   coll->addAction("ConnectCore", new Action(SmallIcon("network-connect"), tr("&Connect to Core..."), coll,
316                                              this, SLOT(showCoreConnectionDlg())));
317   coll->addAction("DisconnectCore", new Action(SmallIcon("network-disconnect"), tr("&Disconnect from Core"), coll,
318                                                 Client::instance(), SLOT(disconnectFromCore())));
319   coll->addAction("CoreInfo", new Action(SmallIcon("help-about"), tr("Core &Info..."), coll,
320                                           this, SLOT(showCoreInfoDlg())));
321   coll->addAction("ConfigureNetworks", new Action(SmallIcon("configure"), tr("Configure &Networks..."), coll,
322                                               this, SLOT(on_actionConfigureNetworks_triggered())));
323   coll->addAction("Quit", new Action(SmallIcon("application-exit"), tr("&Quit"), coll,
324                                       this, SLOT(quit()), tr("Ctrl+Q")));
325
326   // View
327   coll->addAction("ConfigureBufferViews", new Action(tr("&Configure Chat Lists..."), coll,
328                                              this, SLOT(on_actionConfigureViews_triggered())));
329
330   QAction *lockAct = coll->addAction("LockLayout", new Action(tr("&Lock Layout"), coll));
331   lockAct->setCheckable(true);
332   connect(lockAct, SIGNAL(toggled(bool)), SLOT(on_actionLockLayout_toggled(bool)));
333
334   coll->addAction("ToggleSearchBar", new Action(SmallIcon("edit-find"), tr("Show &Search Bar"), coll,
335                                                 0, 0, QKeySequence::Find))->setCheckable(true);
336   coll->addAction("ShowAwayLog", new Action(tr("Show Away Log"), coll,
337                                             this, SLOT(showAwayLog())));
338   coll->addAction("ToggleMenuBar", new Action(SmallIcon("show-menu"), tr("Show &Menubar"), coll,
339                                                 0, 0, tr("Ctrl+M")))->setCheckable(true);
340
341   coll->addAction("ToggleStatusBar", new Action(tr("Show Status &Bar"), coll,
342                                                 0, 0))->setCheckable(true);
343
344   // Settings
345   coll->addAction("ConfigureQuassel", new Action(SmallIcon("configure"), tr("&Configure Quassel..."), coll,
346                                                   this, SLOT(showSettingsDlg()), tr("F7")));
347
348   // Help
349   coll->addAction("AboutQuassel", new Action(SmallIcon("quassel"), tr("&About Quassel"), coll,
350                                               this, SLOT(showAboutDlg())));
351   coll->addAction("AboutQt", new Action(QIcon(":/pics/qt-logo.png"), tr("About &Qt"), coll,
352                                          qApp, SLOT(aboutQt())));
353   coll->addAction("DebugNetworkModel", new Action(SmallIcon("tools-report-bug"), tr("Debug &NetworkModel"), coll,
354                                        this, SLOT(on_actionDebugNetworkModel_triggered())));
355   coll->addAction("DebugBufferViewOverlay", new Action(SmallIcon("tools-report-bug"), tr("Debug &BufferViewOverlay"), coll,
356                                        this, SLOT(on_actionDebugBufferViewOverlay_triggered())));
357   coll->addAction("DebugMessageModel", new Action(SmallIcon("tools-report-bug"), tr("Debug &MessageModel"), coll,
358                                        this, SLOT(on_actionDebugMessageModel_triggered())));
359   coll->addAction("DebugHotList", new Action(SmallIcon("tools-report-bug"), tr("Debug &HotList"), coll,
360                                        this, SLOT(on_actionDebugHotList_triggered())));
361   coll->addAction("DebugLog", new Action(SmallIcon("tools-report-bug"), tr("Debug &Log"), coll,
362                                        this, SLOT(on_actionDebugLog_triggered())));
363   coll->addAction("ReloadStyle", new Action(SmallIcon("view-refresh"), tr("Reload Stylesheet"), coll,
364                                        QtUi::style(), SLOT(reload()), QKeySequence::Refresh));
365
366   // Navigation
367   coll->addAction("JumpHotBuffer", new Action(tr("Jump to hot chat"), coll,
368                                               this, SLOT(on_jumpHotBuffer_triggered()), QKeySequence(Qt::META + Qt::Key_A)));
369 }
370
371 void MainWin::setupMenus() {
372   ActionCollection *coll = QtUi::actionCollection("General");
373
374   _fileMenu = menuBar()->addMenu(tr("&File"));
375
376   static const QStringList coreActions = QStringList()
377     << "ConnectCore" << "DisconnectCore" << "CoreInfo";
378
379   QAction *coreAction;
380   foreach(QString actionName, coreActions) {
381     coreAction = coll->action(actionName);
382     _fileMenu->addAction(coreAction);
383     flagRemoteCoreOnly(coreAction);
384   }
385   flagRemoteCoreOnly(_fileMenu->addSeparator());
386
387   _networksMenu = _fileMenu->addMenu(tr("&Networks"));
388   _networksMenu->addAction(coll->action("ConfigureNetworks"));
389   _networksMenu->addSeparator();
390   _fileMenu->addSeparator();
391   _fileMenu->addAction(coll->action("Quit"));
392
393   _viewMenu = menuBar()->addMenu(tr("&View"));
394   _bufferViewsMenu = _viewMenu->addMenu(tr("&Chat Lists"));
395   _bufferViewsMenu->addAction(coll->action("ConfigureBufferViews"));
396   _toolbarMenu = _viewMenu->addMenu(tr("&Toolbars"));
397   _viewMenu->addSeparator();
398
399   _viewMenu->addAction(coll->action("ToggleMenuBar"));
400   _viewMenu->addAction(coll->action("ToggleStatusBar"));
401   _viewMenu->addAction(coll->action("ToggleSearchBar"));
402
403   coreAction = coll->action("ShowAwayLog");
404   flagRemoteCoreOnly(coreAction);
405   _viewMenu->addAction(coreAction);
406
407   _viewMenu->addSeparator();
408   _viewMenu->addAction(coll->action("LockLayout"));
409
410   _settingsMenu = menuBar()->addMenu(tr("&Settings"));
411 #ifdef HAVE_KDE
412   _settingsMenu->addAction(KStandardAction::configureNotifications(this, SLOT(showNotificationsDlg()), this));
413   _settingsMenu->addAction(KStandardAction::keyBindings(this, SLOT(showShortcutsDlg()), this));
414 #endif
415   _settingsMenu->addAction(coll->action("ConfigureQuassel"));
416
417   _helpMenu = menuBar()->addMenu(tr("&Help"));
418   _helpMenu->addAction(coll->action("AboutQuassel"));
419 #ifndef HAVE_KDE
420   _helpMenu->addAction(coll->action("AboutQt"));
421 #else
422   _helpMenu->addAction(KStandardAction::aboutKDE(_kHelpMenu, SLOT(aboutKDE()), this));
423 #endif
424   _helpMenu->addSeparator();
425   _helpDebugMenu = _helpMenu->addMenu(SmallIcon("tools-report-bug"), tr("Debug"));
426   _helpDebugMenu->addAction(coll->action("DebugNetworkModel"));
427   _helpDebugMenu->addAction(coll->action("DebugBufferViewOverlay"));
428   _helpDebugMenu->addAction(coll->action("DebugMessageModel"));
429   _helpDebugMenu->addAction(coll->action("DebugHotList"));
430   _helpDebugMenu->addAction(coll->action("DebugLog"));
431   _helpDebugMenu->addSeparator();
432   _helpDebugMenu->addAction(coll->action("ReloadStyle"));
433
434   // Toggle visibility
435   QAction *showMenuBar = QtUi::actionCollection("General")->action("ToggleMenuBar");
436
437   QtUiSettings uiSettings;
438   bool enabled = uiSettings.value("ShowMenuBar", QVariant(true)).toBool();
439   showMenuBar->setChecked(enabled);
440   enabled ? menuBar()->show() : menuBar()->hide();
441
442   connect(showMenuBar, SIGNAL(toggled(bool)), menuBar(), SLOT(setVisible(bool)));
443   connect(showMenuBar, SIGNAL(toggled(bool)), this, SLOT(saveMenuBarStatus(bool)));
444 }
445
446 void MainWin::setupBufferWidget() {
447   _bufferWidget = new BufferWidget(this);
448   _bufferWidget->setModel(Client::bufferModel());
449   _bufferWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
450   setCentralWidget(_bufferWidget);
451 }
452
453 void MainWin::addBufferView(int bufferViewConfigId) {
454   addBufferView(Client::bufferViewManager()->clientBufferViewConfig(bufferViewConfigId));
455 }
456
457 void MainWin::addBufferView(ClientBufferViewConfig *config) {
458   if(!config)
459     return;
460
461   config->setLocked(QtUiSettings().value("LockLayout", false).toBool());
462   BufferViewDock *dock = new BufferViewDock(config, this);
463
464   //create the view and initialize it's filter
465   BufferView *view = new BufferView(dock);
466   view->setFilteredModel(Client::bufferModel(), config);
467   view->installEventFilter(_inputWidget); // for key presses
468
469   Client::bufferModel()->synchronizeView(view);
470
471   dock->setWidget(view);
472   dock->setVisible(_layoutLoaded); // don't show before state has been restored
473
474   addDockWidget(Qt::LeftDockWidgetArea, dock);
475   _bufferViewsMenu->addAction(dock->toggleViewAction());
476
477   connect(dock->toggleViewAction(), SIGNAL(toggled(bool)), this, SLOT(bufferViewToggled(bool)));
478   _bufferViews.append(dock);
479 }
480
481 void MainWin::removeBufferView(int bufferViewConfigId) {
482   QVariant actionData;
483   BufferViewDock *dock;
484   foreach(QAction *action, _bufferViewsMenu->actions()) {
485     actionData = action->data();
486     if(!actionData.isValid())
487       continue;
488
489     dock = qobject_cast<BufferViewDock *>(action->parent());
490     if(dock && actionData.toInt() == bufferViewConfigId) {
491       removeAction(action);
492       _bufferViews.removeAll(dock);
493       Client::bufferViewOverlay()->removeView(dock->bufferViewId());
494       dock->deleteLater();
495     }
496   }
497 }
498
499 void MainWin::bufferViewToggled(bool enabled) {
500   QAction *action = qobject_cast<QAction *>(sender());
501   Q_ASSERT(action);
502   BufferViewDock *dock = qobject_cast<BufferViewDock *>(action->parent());
503   Q_ASSERT(dock);
504
505   // Make sure we don't toggle backlog fetch for a view we've already removed
506   if(!_bufferViews.contains(dock))
507     return;
508
509   if(enabled) {
510     Client::bufferViewOverlay()->addView(dock->bufferViewId());
511     BufferViewConfig *config = dock->config();
512     if(config && config->isInitialized()) {
513       BufferIdList buffers;
514       if(config->networkId().isValid()) {
515         foreach(BufferId bufferId, config->bufferList()) {
516           if(Client::networkModel()->networkId(bufferId) == config->networkId())
517             buffers << bufferId;
518         }
519         foreach(BufferId bufferId, config->temporarilyRemovedBuffers().toList()) {
520           if(Client::networkModel()->networkId(bufferId) == config->networkId())
521             buffers << bufferId;
522         }
523       } else {
524         buffers = BufferIdList::fromSet(config->bufferList().toSet() + config->temporarilyRemovedBuffers());
525       }
526       Client::backlogManager()->checkForBacklog(buffers);
527     }
528   } else {
529     Client::bufferViewOverlay()->removeView(dock->bufferViewId());
530   }
531 }
532
533 BufferView *MainWin::allBuffersView() const {
534   // "All Buffers" is always the first dock created
535   if(_bufferViews.count() > 0)
536     return _bufferViews[0]->bufferView();
537   return 0;
538 }
539
540 void MainWin::showNotificationsDlg() {
541   SettingsPageDlg dlg(new NotificationsSettingsPage(this), this);
542   dlg.exec();
543 }
544
545 void MainWin::on_actionConfigureNetworks_triggered() {
546   SettingsPageDlg dlg(new NetworksSettingsPage(this), this);
547   dlg.exec();
548 }
549
550 void MainWin::on_actionConfigureViews_triggered() {
551   SettingsPageDlg dlg(new BufferViewSettingsPage(this), this);
552   dlg.exec();
553 }
554
555 void MainWin::on_actionLockLayout_toggled(bool lock) {
556   QList<VerticalDock *> docks = findChildren<VerticalDock *>();
557   foreach(VerticalDock *dock, docks) {
558     dock->showTitle(!lock);
559   }
560   if(Client::bufferViewManager()) {
561     foreach(ClientBufferViewConfig *config, Client::bufferViewManager()->clientBufferViewConfigs()) {
562       config->setLocked(lock);
563     }
564   }
565   QtUiSettings().setValue("LockLayout", lock);
566 }
567
568 void MainWin::setupNickWidget() {
569   // create nick dock
570   NickListDock *nickDock = new NickListDock(tr("Nicks"), this);
571   nickDock->setObjectName("NickDock");
572   nickDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
573
574   _nickListWidget = new NickListWidget(nickDock);
575   nickDock->setWidget(_nickListWidget);
576
577   addDockWidget(Qt::RightDockWidgetArea, nickDock);
578   _viewMenu->addAction(nickDock->toggleViewAction());
579   nickDock->toggleViewAction()->setText(tr("Show Nick List"));
580
581   // See NickListDock::NickListDock();
582   // connect(nickDock->toggleViewAction(), SIGNAL(triggered(bool)), nickListWidget, SLOT(showWidget(bool)));
583
584   // attach the NickListWidget to the BufferModel and the default selection
585   _nickListWidget->setModel(Client::bufferModel());
586   _nickListWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
587 }
588
589 void MainWin::setupChatMonitor() {
590   VerticalDock *dock = new VerticalDock(tr("Chat Monitor"), this);
591   dock->setObjectName("ChatMonitorDock");
592
593   ChatMonitorFilter *filter = new ChatMonitorFilter(Client::messageModel(), this);
594   _chatMonitorView = new ChatMonitorView(filter, this);
595   _chatMonitorView->setFocusProxy(_inputWidget);
596   _chatMonitorView->show();
597   dock->setWidget(_chatMonitorView);
598   dock->hide();
599
600   addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
601   _viewMenu->addAction(dock->toggleViewAction());
602   dock->toggleViewAction()->setText(tr("Show Chat Monitor"));
603 }
604
605 void MainWin::setupInputWidget() {
606   VerticalDock *dock = new VerticalDock(tr("Inputline"), this);
607   dock->setObjectName("InputDock");
608
609   _inputWidget = new InputWidget(dock);
610   dock->setWidget(_inputWidget);
611
612   addDockWidget(Qt::BottomDockWidgetArea, dock);
613
614   _viewMenu->addAction(dock->toggleViewAction());
615   dock->toggleViewAction()->setText(tr("Show Input Line"));
616
617   _inputWidget->setModel(Client::bufferModel());
618   _inputWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
619
620   _bufferWidget->setFocusProxy(_inputWidget);
621
622   _inputWidget->inputLine()->installEventFilter(_bufferWidget);
623 }
624
625 void MainWin::setupTopicWidget() {
626   VerticalDock *dock = new VerticalDock(tr("Topic"), this);
627   dock->setObjectName("TopicDock");
628   TopicWidget *topicwidget = new TopicWidget(dock);
629
630   dock->setWidget(topicwidget);
631
632   topicwidget->setModel(Client::bufferModel());
633   topicwidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
634
635   addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
636
637   _viewMenu->addAction(dock->toggleViewAction());
638   dock->toggleViewAction()->setText(tr("Show Topic Line"));
639 }
640
641 void MainWin::setupTitleSetter() {
642   _titleSetter.setModel(Client::bufferModel());
643   _titleSetter.setSelectionModel(Client::bufferModel()->standardSelectionModel());
644 }
645
646 void MainWin::setupStatusBar() {
647   // MessageProcessor progress
648   statusBar()->addPermanentWidget(_msgProcessorStatusWidget);
649
650   // Connection state
651   _coreConnectionStatusWidget->update();
652   statusBar()->addPermanentWidget(_coreConnectionStatusWidget);
653
654   QAction *showStatusbar = QtUi::actionCollection("General")->action("ToggleStatusBar");
655
656   QtUiSettings uiSettings;
657
658   bool enabled = uiSettings.value("ShowStatusBar", QVariant(true)).toBool();
659   showStatusbar->setChecked(enabled);
660   enabled ? statusBar()->show() : statusBar()->hide();
661
662   connect(showStatusbar, SIGNAL(toggled(bool)), statusBar(), SLOT(setVisible(bool)));
663   connect(showStatusbar, SIGNAL(toggled(bool)), this, SLOT(saveStatusBarStatus(bool)));
664
665   connect(Client::coreConnection(), SIGNAL(connectionMsg(QString)), statusBar(), SLOT(showMessage(QString)));
666 }
667
668 void MainWin::setupHotList() {
669   FlatProxyModel *flatProxy = new FlatProxyModel(this);
670   flatProxy->setSourceModel(Client::bufferModel());
671   _bufferHotList = new BufferHotListFilter(flatProxy);
672 }
673
674 void MainWin::saveMenuBarStatus(bool enabled) {
675   QtUiSettings uiSettings;
676   uiSettings.setValue("ShowMenuBar", enabled);
677 }
678
679 void MainWin::saveStatusBarStatus(bool enabled) {
680   QtUiSettings uiSettings;
681   uiSettings.setValue("ShowStatusBar", enabled);
682 }
683
684 void MainWin::setupSystray() {
685 #ifndef QT_NO_SYSTEMTRAYICON
686   _systemTray = new SystemTray(this);
687 #endif
688 }
689
690 void MainWin::setupToolBars() {
691   connect(_bufferWidget, SIGNAL(currentChanged(QModelIndex)),
692           QtUi::toolBarActionProvider(), SLOT(currentBufferChanged(QModelIndex)));
693   connect(_nickListWidget, SIGNAL(nickSelectionChanged(QModelIndexList)),
694           QtUi::toolBarActionProvider(), SLOT(nickSelectionChanged(QModelIndexList)));
695
696 #ifdef Q_WS_MAC
697   setUnifiedTitleAndToolBarOnMac(true);
698 #endif
699
700 #ifdef HAVE_KDE
701   _mainToolBar = new KToolBar("MainToolBar", this, Qt::TopToolBarArea, false, true, true);
702 #else
703   _mainToolBar = new QToolBar(this);
704   _mainToolBar->setObjectName("MainToolBar");
705 #endif
706   _mainToolBar->setWindowTitle(tr("Main Toolbar"));
707   addToolBar(_mainToolBar);
708
709   QtUi::toolBarActionProvider()->addActions(_mainToolBar, ToolBarActionProvider::MainToolBar);
710   _toolbarMenu->addAction(_mainToolBar->toggleViewAction());
711 }
712
713 void MainWin::connectedToCore() {
714   Q_CHECK_PTR(Client::bufferViewManager());
715   connect(Client::bufferViewManager(), SIGNAL(bufferViewConfigAdded(int)), this, SLOT(addBufferView(int)));
716   connect(Client::bufferViewManager(), SIGNAL(bufferViewConfigDeleted(int)), this, SLOT(removeBufferView(int)));
717   connect(Client::bufferViewManager(), SIGNAL(initDone()), this, SLOT(loadLayout()));
718
719   setConnectedState();
720 }
721
722 void MainWin::setConnectedState() {
723   ActionCollection *coll = QtUi::actionCollection("General");
724
725   coll->action("ConnectCore")->setEnabled(false);
726   coll->action("DisconnectCore")->setEnabled(true);
727   coll->action("CoreInfo")->setEnabled(true);
728
729   foreach(QAction *action, _fileMenu->actions()) {
730     if(isRemoteCoreOnly(action))
731       action->setVisible(!Client::internalCore());
732   }
733
734   disconnect(Client::backlogManager(), SIGNAL(updateProgress(int, int)), _msgProcessorStatusWidget, SLOT(setProgress(int, int)));
735   disconnect(Client::backlogManager(), SIGNAL(messagesRequested(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
736   disconnect(Client::backlogManager(), SIGNAL(messagesProcessed(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
737   if(!Client::internalCore()) {
738     connect(Client::backlogManager(), SIGNAL(updateProgress(int, int)), _msgProcessorStatusWidget, SLOT(setProgress(int, int)));
739     connect(Client::backlogManager(), SIGNAL(messagesRequested(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
740     connect(Client::backlogManager(), SIGNAL(messagesProcessed(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
741   }
742
743   // _viewMenu->setEnabled(true);
744   if(!Client::internalCore())
745     statusBar()->showMessage(tr("Connected to core."));
746   else
747     statusBar()->clearMessage();
748
749   _coreConnectionStatusWidget->setVisible(!Client::internalCore());
750   updateIcon();
751 #ifndef QT_NO_SYSTEMTRAYICON
752   systemTray()->setState(SystemTray::Active);
753 #endif
754
755   if(Client::networkIds().isEmpty()) {
756     IrcConnectionWizard *wizard = new IrcConnectionWizard(this, Qt::Sheet);
757     wizard->show();
758   }
759 }
760
761 void MainWin::loadLayout() {
762   QtUiSettings s;
763   int accountId = Client::currentCoreAccount().accountId().toInt();
764   QByteArray state = s.value(QString("MainWinState-%1").arg(accountId)).toByteArray();
765   if(state.isEmpty()) {
766     // Make sure that the default bufferview is shown
767     if(_bufferViews.count())
768       _bufferViews.at(0)->show();
769     return;
770   }
771
772   restoreState(state, accountId);
773   _layoutLoaded = true;
774 }
775
776 void MainWin::saveLayout() {
777   QtUiSettings s;
778   int accountId = Client::currentCoreAccount().accountId().toInt();
779   if(accountId > 0) s.setValue(QString("MainWinState-%1").arg(accountId) , saveState(accountId));
780 }
781
782 void MainWin::disconnectedFromCore() {
783   // save core specific layout and remove bufferviews;
784   saveLayout();
785   _layoutLoaded = false;
786
787   QVariant actionData;
788   BufferViewDock *dock;
789   foreach(QAction *action, _bufferViewsMenu->actions()) {
790     actionData = action->data();
791     if(!actionData.isValid())
792       continue;
793
794     dock = qobject_cast<BufferViewDock *>(action->parent());
795     if(dock && actionData.toInt() != -1) {
796       removeAction(action);
797       _bufferViews.removeAll(dock);
798       Client::bufferViewOverlay()->removeView(dock->bufferViewId());
799       dock->deleteLater();
800     }
801   }
802
803   QtUiSettings s;
804   restoreState(s.value("MainWinState").toByteArray());
805   setDisconnectedState();
806 }
807
808 void MainWin::setDisconnectedState() {
809   ActionCollection *coll = QtUi::actionCollection("General");
810   //ui.menuCore->setEnabled(false);
811   coll->action("ConnectCore")->setEnabled(true);
812   coll->action("DisconnectCore")->setEnabled(false);
813   coll->action("CoreInfo")->setEnabled(false);
814   //_viewMenu->setEnabled(false);
815   statusBar()->showMessage(tr("Not connected to core."));
816   if(_msgProcessorStatusWidget)
817     _msgProcessorStatusWidget->setProgress(0, 0);
818   updateIcon();
819 #ifndef QT_NO_SYSTEMTRAYICON
820   systemTray()->setState(SystemTray::Inactive);
821 #endif
822 }
823
824 void MainWin::userAuthenticationRequired(CoreAccount *account, bool *valid, const QString &errorMessage) {
825   Q_UNUSED(errorMessage)
826   CoreConnectAuthDlg dlg(account, this);
827   *valid = (dlg.exec() == QDialog::Accepted);
828 }
829
830 void MainWin::handleNoSslInClient(bool *accepted) {
831   QMessageBox box(QMessageBox::Warning, tr("Unencrypted Connection"), tr("<b>Your client does not support SSL encryption</b>"),
832                   QMessageBox::Ignore|QMessageBox::Cancel, this);
833   box.setInformativeText(tr("Sensitive data, like passwords, will be transmitted unencrypted to your Quassel core."));
834   box.setDefaultButton(QMessageBox::Ignore);
835   *accepted = box.exec() == QMessageBox::Ignore;
836 }
837
838 void MainWin::handleNoSslInCore(bool *accepted) {
839   QMessageBox box(QMessageBox::Warning, tr("Unencrypted Connection"), tr("<b>Your core does not support SSL encryption</b>"),
840                   QMessageBox::Ignore|QMessageBox::Cancel, this);
841   box.setInformativeText(tr("Sensitive data, like passwords, will be transmitted unencrypted to your Quassel core."));
842   box.setDefaultButton(QMessageBox::Ignore);
843   *accepted = box.exec() == QMessageBox::Ignore;
844
845 }
846
847 #ifdef HAVE_SSL
848
849 void MainWin::handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently) {
850   QString errorString = "<ul>";
851   foreach(const QSslError error, socket->sslErrors())
852     errorString += QString("<li>%1</li>").arg(error.errorString());
853   errorString += "</ul>";
854
855   QMessageBox box(QMessageBox::Warning,
856                   tr("Untrusted Security Certificate"),
857                   tr("<b>The SSL certificate provided by the core at %1 is untrusted for the following reasons:</b>").arg(socket->peerName()),
858                   QMessageBox::Cancel, this);
859   box.setInformativeText(errorString);
860   box.addButton(tr("Continue"), QMessageBox::AcceptRole);
861   box.setDefaultButton(box.addButton(tr("Show Certificate"), QMessageBox::HelpRole));
862
863   QMessageBox::ButtonRole role;
864   do {
865     box.exec();
866     role = box.buttonRole(box.clickedButton());
867     if(role == QMessageBox::HelpRole) {
868       SslInfoDlg dlg(socket, this);
869       dlg.exec();
870     }
871   } while(role == QMessageBox::HelpRole);
872
873   *accepted = role == QMessageBox::AcceptRole;
874   if(*accepted) {
875     QMessageBox box2(QMessageBox::Warning,
876                      tr("Untrusted Security Certificate"),
877                      tr("Would you like to accept this certificate forever without being prompted?"),
878                      0, this);
879     box2.setDefaultButton(box2.addButton(tr("Current Session Only"), QMessageBox::NoRole));
880     box2.addButton(tr("Forever"), QMessageBox::YesRole);
881     box2.exec();
882     *permanently =  box2.buttonRole(box2.clickedButton()) == QMessageBox::YesRole;
883   }
884 }
885
886 #endif /* HAVE_SSL */
887
888 void MainWin::handleCoreConnectionError(const QString &error) {
889   QMessageBox::critical(this, tr("Core Connection Error"), error, QMessageBox::Ok);
890 }
891
892 void MainWin::showCoreConnectionDlg() {
893   CoreConnectDlg dlg(this);
894   if(dlg.exec() == QDialog::Accepted) {
895     AccountId accId = dlg.selectedAccount();
896     if(accId.isValid())
897       Client::coreConnection()->connectToCore(accId);
898   }
899 }
900
901 void MainWin::showCoreConfigWizard(const QVariantList &backends) {
902   CoreConfigWizard *wizard = new CoreConfigWizard(Client::coreConnection(), backends, this);
903
904   wizard->show();
905 }
906
907 void MainWin::showChannelList(NetworkId netId) {
908   ChannelListDlg *channelListDlg = new ChannelListDlg();
909
910   if(!netId.isValid()) {
911     QAction *action = qobject_cast<QAction *>(sender());
912     if(action)
913       netId = action->data().value<NetworkId>();
914   }
915
916   channelListDlg->setAttribute(Qt::WA_DeleteOnClose);
917   channelListDlg->setNetwork(netId);
918   channelListDlg->show();
919 }
920
921 void MainWin::showIgnoreList(QString newRule) {
922   SettingsPageDlg dlg(new IgnoreListSettingsPage(this), this);
923   // prepare config dialog for new rule
924   if(!newRule.isEmpty())
925     qobject_cast<IgnoreListSettingsPage *>(dlg.currentPage())->editIgnoreRule(newRule);
926   dlg.exec();
927 }
928
929 void MainWin::showCoreInfoDlg() {
930   CoreInfoDlg(this).exec();
931 }
932
933 void MainWin::showAwayLog() {
934   if(_awayLog)
935     return;
936   AwayLogFilter *filter = new AwayLogFilter(Client::messageModel());
937   _awayLog = new AwayLogView(filter, 0);
938   filter->setParent(_awayLog);
939   connect(_awayLog, SIGNAL(destroyed()), this, SLOT(awayLogDestroyed()));
940   _awayLog->setAttribute(Qt::WA_DeleteOnClose);
941   _awayLog->show();
942 }
943
944 void MainWin::awayLogDestroyed() {
945   _awayLog = 0;
946 }
947
948 void MainWin::showSettingsDlg() {
949   SettingsDlg *dlg = new SettingsDlg();
950
951   //Category: Interface
952   dlg->registerSettingsPage(new AppearanceSettingsPage(dlg));
953   dlg->registerSettingsPage(new ChatViewSettingsPage(dlg));
954   dlg->registerSettingsPage(new ChatMonitorSettingsPage(dlg));
955   dlg->registerSettingsPage(new ItemViewSettingsPage(dlg));
956   dlg->registerSettingsPage(new BufferViewSettingsPage(dlg));
957   dlg->registerSettingsPage(new InputWidgetSettingsPage(dlg));
958   dlg->registerSettingsPage(new TopicWidgetSettingsPage(dlg));
959   dlg->registerSettingsPage(new HighlightSettingsPage(dlg));
960   dlg->registerSettingsPage(new NotificationsSettingsPage(dlg));
961   dlg->registerSettingsPage(new BacklogSettingsPage(dlg));
962
963   //Category: IRC
964   dlg->registerSettingsPage(new ConnectionSettingsPage(dlg));
965   dlg->registerSettingsPage(new IdentitiesSettingsPage(dlg));
966   dlg->registerSettingsPage(new NetworksSettingsPage(dlg));
967   dlg->registerSettingsPage(new AliasesSettingsPage(dlg));
968   dlg->registerSettingsPage(new IgnoreListSettingsPage(dlg));
969
970   // Category: Remote Cores
971   if(Quassel::runMode() != Quassel::Monolithic) {
972     dlg->registerSettingsPage(new CoreAccountSettingsPage(dlg));
973     dlg->registerSettingsPage(new CoreConnectionSettingsPage(dlg));
974   }
975
976   dlg->show();
977 }
978
979 void MainWin::showAboutDlg() {
980   AboutDlg(this).exec();
981 }
982
983 #ifdef HAVE_KDE
984 void MainWin::showShortcutsDlg() {
985   KShortcutsDialog::configure(QtUi::actionCollection("General"), KShortcutsEditor::LetterShortcutsDisallowed);
986 }
987 #endif
988
989 /********************************************************************************************************/
990
991 bool MainWin::event(QEvent *event) {
992   if(event->type() == QEvent::WindowActivate) {
993     BufferId buffer = Client::bufferModel()->currentBuffer();
994     if(buffer.isValid())
995       QtUi::closeNotifications(buffer);
996   }
997   return QMainWindow::event(event);
998 }
999
1000 void MainWin::moveEvent(QMoveEvent *event) {
1001   if(!(windowState() & Qt::WindowMaximized))
1002     _normalPos = event->pos();
1003
1004   QMainWindow::moveEvent(event);
1005 }
1006
1007 void MainWin::resizeEvent(QResizeEvent *event) {
1008   if(!(windowState() & Qt::WindowMaximized))
1009     _normalSize = event->size();
1010
1011   QMainWindow::resizeEvent(event);
1012 }
1013
1014 void MainWin::closeEvent(QCloseEvent *event) {
1015 #ifndef QT_NO_SYSTEMTRAYICON
1016   QtUiSettings s;
1017   QtUiApplication* app = qobject_cast<QtUiApplication*> qApp;
1018   Q_ASSERT(app);
1019   if(!app->isAboutToQuit() && s.value("UseSystemTrayIcon").toBool() && s.value("MinimizeOnClose").toBool()) {
1020     hideToTray();
1021     event->ignore();
1022   } else {
1023     event->accept();
1024     quit();
1025   }
1026 #else
1027   event->accept();
1028   quit();
1029 #endif
1030 }
1031
1032 void MainWin::changeEvent(QEvent *event) {
1033 #ifdef Q_WS_WIN
1034   if(event->type() == QEvent::ActivationChange)
1035     dwTickCount = GetTickCount();  // needed for toggleMinimizedToTray()
1036 #endif
1037
1038   QMainWindow::changeEvent(event);
1039 }
1040
1041 #ifndef QT_NO_SYSTEMTRAYICON
1042
1043 void MainWin::hideToTray() {
1044   if(!systemTray()->isSystemTrayAvailable()) {
1045     qWarning() << Q_FUNC_INFO << "was called with no SystemTray available!";
1046     return;
1047   }
1048   hide();
1049   systemTray()->setIconVisible();
1050 }
1051
1052 void MainWin::toggleMinimizedToTray() {
1053 #ifdef Q_WS_WIN
1054   // the problem is that we lose focus when the systray icon is activated
1055   // and we don't know the former active window
1056   // therefore we watch for activation event and use our stopwatch :)
1057   // courtesy: KSystemTrayIcon
1058   if(GetTickCount() - dwTickCount >= 300)
1059     // we weren't active in the last 300ms -> activate
1060     forceActivated();
1061   else
1062     hideToTray();
1063
1064 #else
1065
1066   if(!isVisible() || isMinimized())
1067     // restore
1068     forceActivated();
1069   else
1070     hideToTray();
1071
1072 #endif
1073 }
1074
1075 #endif /* QT_NO_SYSTEMTRAYICON */
1076
1077 void MainWin::forceActivated() {
1078 #ifdef HAVE_KDE
1079   show();
1080   KWindowSystem::forceActiveWindow(winId());
1081 #else
1082
1083 #ifdef Q_WS_X11
1084   // Bypass focus stealing prevention
1085   QX11Info::setAppUserTime(QX11Info::appTime());
1086 #endif
1087
1088   if(windowState() & Qt::WindowMinimized) {
1089     // restore
1090     setWindowState((windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
1091   }
1092
1093   // this does not actually work on all platforms... and causes more evil than good
1094   // move(frameGeometry().topLeft()); // avoid placement policies
1095   show();
1096   raise();
1097   activateWindow();
1098 #endif /* HAVE_KDE */
1099 }
1100
1101 void MainWin::messagesInserted(const QModelIndex &parent, int start, int end) {
1102   Q_UNUSED(parent);
1103
1104   bool hasFocus = QApplication::activeWindow() != 0;
1105
1106   for(int i = start; i <= end; i++) {
1107     QModelIndex idx = Client::messageModel()->index(i, ChatLineModel::ContentsColumn);
1108     if(!idx.isValid()) {
1109       qDebug() << "MainWin::messagesInserted(): Invalid model index!";
1110       continue;
1111     }
1112     Message::Flags flags = (Message::Flags)idx.data(ChatLineModel::FlagsRole).toInt();
1113     if(flags.testFlag(Message::Backlog) || flags.testFlag(Message::Self))
1114       continue;
1115
1116     BufferId bufId = idx.data(ChatLineModel::BufferIdRole).value<BufferId>();
1117     BufferInfo::Type bufType = Client::networkModel()->bufferType(bufId);
1118
1119     if(hasFocus && bufId == Client::bufferModel()->currentBuffer())
1120       continue;
1121
1122     if((flags & Message::Highlight || bufType == BufferInfo::QueryBuffer)
1123       && !(Client::ignoreListManager() && Client::ignoreListManager()->match(idx.data(MessageModel::MessageRole).value<Message>(),
1124                                                                              Client::networkModel()->networkName(bufId))))
1125     {
1126       QModelIndex senderIdx = Client::messageModel()->index(i, ChatLineModel::SenderColumn);
1127       QString sender = senderIdx.data(ChatLineModel::EditRole).toString();
1128       QString contents = idx.data(ChatLineModel::DisplayRole).toString();
1129       AbstractNotificationBackend::NotificationType type;
1130
1131       if(bufType == BufferInfo::QueryBuffer && !hasFocus)
1132         type = AbstractNotificationBackend::PrivMsg;
1133       else if(bufType == BufferInfo::QueryBuffer && hasFocus)
1134         type = AbstractNotificationBackend::PrivMsgFocused;
1135       else if(flags & Message::Highlight && !hasFocus)
1136         type = AbstractNotificationBackend::Highlight;
1137       else
1138         type = AbstractNotificationBackend::HighlightFocused;
1139
1140       QtUi::invokeNotification(bufId, type, sender, contents);
1141     }
1142   }
1143 }
1144
1145 void MainWin::currentBufferChanged(BufferId buffer) {
1146   if(buffer.isValid())
1147     QtUi::closeNotifications(buffer);
1148 }
1149
1150 void MainWin::clientNetworkCreated(NetworkId id) {
1151   const Network *net = Client::network(id);
1152   QAction *act = new QAction(net->networkName(), this);
1153   act->setObjectName(QString("NetworkAction-%1").arg(id.toInt()));
1154   act->setData(QVariant::fromValue<NetworkId>(id));
1155   connect(net, SIGNAL(updatedRemotely()), this, SLOT(clientNetworkUpdated()));
1156   connect(act, SIGNAL(triggered()), this, SLOT(connectOrDisconnectFromNet()));
1157
1158   QAction *beforeAction = 0;
1159   foreach(QAction *action, _networksMenu->actions()) {
1160     if(!action->data().isValid())  // ignore stock actions
1161       continue;
1162     if(net->networkName().localeAwareCompare(action->text()) < 0) {
1163       beforeAction = action;
1164       break;
1165     }
1166   }
1167   _networksMenu->insertAction(beforeAction, act);
1168 }
1169
1170 void MainWin::clientNetworkUpdated() {
1171   const Network *net = qobject_cast<const Network *>(sender());
1172   if(!net)
1173     return;
1174
1175   QAction *action = findChild<QAction *>(QString("NetworkAction-%1").arg(net->networkId().toInt()));
1176   if(!action)
1177     return;
1178
1179   action->setText(net->networkName());
1180
1181   switch(net->connectionState()) {
1182   case Network::Initialized:
1183     action->setIcon(SmallIcon("network-connect"));
1184     break;
1185   case Network::Disconnected:
1186     action->setIcon(SmallIcon("network-disconnect"));
1187     break;
1188   default:
1189     action->setIcon(SmallIcon("network-wired"));
1190   }
1191 }
1192
1193 void MainWin::clientNetworkRemoved(NetworkId id) {
1194   QAction *action = findChild<QAction *>(QString("NetworkAction-%1").arg(id.toInt()));
1195   if(!action)
1196     return;
1197
1198   action->deleteLater();
1199 }
1200
1201 void MainWin::connectOrDisconnectFromNet() {
1202   QAction *act = qobject_cast<QAction *>(sender());
1203   if(!act) return;
1204   const Network *net = Client::network(act->data().value<NetworkId>());
1205   if(!net) return;
1206   if(net->connectionState() == Network::Disconnected) net->requestConnect();
1207   else net->requestDisconnect();
1208 }
1209
1210 void MainWin::on_jumpHotBuffer_triggered() {
1211   if(!_bufferHotList->rowCount())
1212     return;
1213
1214   QModelIndex topIndex = _bufferHotList->index(0, 0);
1215   BufferId bufferId = _bufferHotList->data(topIndex, NetworkModel::BufferIdRole).value<BufferId>();
1216   Client::bufferModel()->switchToBuffer(bufferId);
1217 }
1218
1219 void MainWin::on_actionDebugNetworkModel_triggered() {
1220   QTreeView *view = new QTreeView;
1221   view->setAttribute(Qt::WA_DeleteOnClose);
1222   view->setWindowTitle("Debug NetworkModel View");
1223   view->setModel(Client::networkModel());
1224   view->setColumnWidth(0, 250);
1225   view->setColumnWidth(1, 250);
1226   view->setColumnWidth(2, 80);
1227   view->resize(610, 300);
1228   view->show();
1229 }
1230
1231 void MainWin::on_actionDebugHotList_triggered() {
1232   QTreeView *view = new QTreeView;
1233   view->setAttribute(Qt::WA_DeleteOnClose);
1234   view->setModel(_bufferHotList);
1235   view->show();
1236 }
1237
1238 void MainWin::on_actionDebugBufferViewOverlay_triggered() {
1239   DebugBufferViewOverlay *overlay = new DebugBufferViewOverlay(0);
1240   overlay->setAttribute(Qt::WA_DeleteOnClose);
1241   overlay->show();
1242 }
1243
1244 void MainWin::on_actionDebugMessageModel_triggered() {
1245   QTableView *view = new QTableView(0);
1246   DebugMessageModelFilter *filter = new DebugMessageModelFilter(view);
1247   filter->setSourceModel(Client::messageModel());
1248   view->setModel(filter);
1249   view->setAttribute(Qt::WA_DeleteOnClose, true);
1250   view->verticalHeader()->hide();
1251   view->horizontalHeader()->setStretchLastSection(true);
1252   view->show();
1253 }
1254
1255 void MainWin::on_actionDebugLog_triggered() {
1256   DebugLogWidget *logWidget = new DebugLogWidget(0);
1257   logWidget->show();
1258 }
1259
1260 void MainWin::showStatusBarMessage(const QString &message) {
1261   statusBar()->showMessage(message, 10000);
1262 }
1263