Allow compilation without QSystemTrayIcon
[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   setupChatMonitor();
187   setupNickWidget();
188   setupInputWidget();
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 *chatView = new ChatMonitorView(filter, this);
595   chatView->show();
596   dock->setWidget(chatView);
597   dock->hide();
598
599   addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
600   _viewMenu->addAction(dock->toggleViewAction());
601   dock->toggleViewAction()->setText(tr("Show Chat Monitor"));
602 }
603
604 void MainWin::setupInputWidget() {
605   VerticalDock *dock = new VerticalDock(tr("Inputline"), this);
606   dock->setObjectName("InputDock");
607
608   _inputWidget = new InputWidget(dock);
609   dock->setWidget(_inputWidget);
610
611   addDockWidget(Qt::BottomDockWidgetArea, dock);
612
613   _viewMenu->addAction(dock->toggleViewAction());
614   dock->toggleViewAction()->setText(tr("Show Input Line"));
615
616   _inputWidget->setModel(Client::bufferModel());
617   _inputWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
618
619   _bufferWidget->setFocusProxy(_inputWidget);
620
621   _inputWidget->inputLine()->installEventFilter(_bufferWidget);
622 }
623
624 void MainWin::setupTopicWidget() {
625   VerticalDock *dock = new VerticalDock(tr("Topic"), this);
626   dock->setObjectName("TopicDock");
627   TopicWidget *topicwidget = new TopicWidget(dock);
628
629   dock->setWidget(topicwidget);
630
631   topicwidget->setModel(Client::bufferModel());
632   topicwidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
633
634   addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
635
636   _viewMenu->addAction(dock->toggleViewAction());
637   dock->toggleViewAction()->setText(tr("Show Topic Line"));
638 }
639
640 void MainWin::setupTitleSetter() {
641   _titleSetter.setModel(Client::bufferModel());
642   _titleSetter.setSelectionModel(Client::bufferModel()->standardSelectionModel());
643 }
644
645 void MainWin::setupStatusBar() {
646   // MessageProcessor progress
647   statusBar()->addPermanentWidget(_msgProcessorStatusWidget);
648
649   // Connection state
650   _coreConnectionStatusWidget->update();
651   statusBar()->addPermanentWidget(_coreConnectionStatusWidget);
652
653   QAction *showStatusbar = QtUi::actionCollection("General")->action("ToggleStatusBar");
654
655   QtUiSettings uiSettings;
656
657   bool enabled = uiSettings.value("ShowStatusBar", QVariant(true)).toBool();
658   showStatusbar->setChecked(enabled);
659   enabled ? statusBar()->show() : statusBar()->hide();
660
661   connect(showStatusbar, SIGNAL(toggled(bool)), statusBar(), SLOT(setVisible(bool)));
662   connect(showStatusbar, SIGNAL(toggled(bool)), this, SLOT(saveStatusBarStatus(bool)));
663
664   connect(Client::coreConnection(), SIGNAL(connectionMsg(QString)), statusBar(), SLOT(showMessage(QString)));
665 }
666
667 void MainWin::setupHotList() {
668   FlatProxyModel *flatProxy = new FlatProxyModel(this);
669   flatProxy->setSourceModel(Client::bufferModel());
670   _bufferHotList = new BufferHotListFilter(flatProxy);
671 }
672
673 void MainWin::saveMenuBarStatus(bool enabled) {
674   QtUiSettings uiSettings;
675   uiSettings.setValue("ShowMenuBar", enabled);
676 }
677
678 void MainWin::saveStatusBarStatus(bool enabled) {
679   QtUiSettings uiSettings;
680   uiSettings.setValue("ShowStatusBar", enabled);
681 }
682
683 void MainWin::setupSystray() {
684 #ifndef QT_NO_SYSTEMTRAYICON
685   _systemTray = new SystemTray(this);
686 #endif
687 }
688
689 void MainWin::setupToolBars() {
690   connect(_bufferWidget, SIGNAL(currentChanged(QModelIndex)),
691           QtUi::toolBarActionProvider(), SLOT(currentBufferChanged(QModelIndex)));
692   connect(_nickListWidget, SIGNAL(nickSelectionChanged(QModelIndexList)),
693           QtUi::toolBarActionProvider(), SLOT(nickSelectionChanged(QModelIndexList)));
694
695 #ifdef Q_WS_MAC
696   setUnifiedTitleAndToolBarOnMac(true);
697 #endif
698
699 #ifdef HAVE_KDE
700   _mainToolBar = new KToolBar("MainToolBar", this, Qt::TopToolBarArea, false, true, true);
701 #else
702   _mainToolBar = new QToolBar(this);
703   _mainToolBar->setObjectName("MainToolBar");
704 #endif
705   _mainToolBar->setWindowTitle(tr("Main Toolbar"));
706   addToolBar(_mainToolBar);
707
708   QtUi::toolBarActionProvider()->addActions(_mainToolBar, ToolBarActionProvider::MainToolBar);
709   _toolbarMenu->addAction(_mainToolBar->toggleViewAction());
710 }
711
712 void MainWin::connectedToCore() {
713   Q_CHECK_PTR(Client::bufferViewManager());
714   connect(Client::bufferViewManager(), SIGNAL(bufferViewConfigAdded(int)), this, SLOT(addBufferView(int)));
715   connect(Client::bufferViewManager(), SIGNAL(bufferViewConfigDeleted(int)), this, SLOT(removeBufferView(int)));
716   connect(Client::bufferViewManager(), SIGNAL(initDone()), this, SLOT(loadLayout()));
717
718   setConnectedState();
719 }
720
721 void MainWin::setConnectedState() {
722   ActionCollection *coll = QtUi::actionCollection("General");
723
724   coll->action("ConnectCore")->setEnabled(false);
725   coll->action("DisconnectCore")->setEnabled(true);
726   coll->action("CoreInfo")->setEnabled(true);
727
728   foreach(QAction *action, _fileMenu->actions()) {
729     if(isRemoteCoreOnly(action))
730       action->setVisible(!Client::internalCore());
731   }
732
733   disconnect(Client::backlogManager(), SIGNAL(updateProgress(int, int)), _msgProcessorStatusWidget, SLOT(setProgress(int, int)));
734   disconnect(Client::backlogManager(), SIGNAL(messagesRequested(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
735   disconnect(Client::backlogManager(), SIGNAL(messagesProcessed(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
736   if(!Client::internalCore()) {
737     connect(Client::backlogManager(), SIGNAL(updateProgress(int, int)), _msgProcessorStatusWidget, SLOT(setProgress(int, int)));
738     connect(Client::backlogManager(), SIGNAL(messagesRequested(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
739     connect(Client::backlogManager(), SIGNAL(messagesProcessed(const QString &)), this, SLOT(showStatusBarMessage(const QString &)));
740   }
741
742   // _viewMenu->setEnabled(true);
743   if(!Client::internalCore())
744     statusBar()->showMessage(tr("Connected to core."));
745   else
746     statusBar()->clearMessage();
747
748   _coreConnectionStatusWidget->setVisible(!Client::internalCore());
749   updateIcon();
750 #ifndef QT_NO_SYSTEMTRAYICON
751   systemTray()->setState(SystemTray::Active);
752 #endif
753
754   if(Client::networkIds().isEmpty()) {
755     IrcConnectionWizard *wizard = new IrcConnectionWizard(this, Qt::Sheet);
756     wizard->show();
757   }
758 }
759
760 void MainWin::loadLayout() {
761   QtUiSettings s;
762   int accountId = Client::currentCoreAccount().accountId().toInt();
763   QByteArray state = s.value(QString("MainWinState-%1").arg(accountId)).toByteArray();
764   if(state.isEmpty()) {
765     // Make sure that the default bufferview is shown
766     if(_bufferViews.count())
767       _bufferViews.at(0)->show();
768     return;
769   }
770
771   restoreState(state, accountId);
772   _layoutLoaded = true;
773 }
774
775 void MainWin::saveLayout() {
776   QtUiSettings s;
777   int accountId = Client::currentCoreAccount().accountId().toInt();
778   if(accountId > 0) s.setValue(QString("MainWinState-%1").arg(accountId) , saveState(accountId));
779 }
780
781 void MainWin::disconnectedFromCore() {
782   // save core specific layout and remove bufferviews;
783   saveLayout();
784   _layoutLoaded = false;
785
786   QVariant actionData;
787   BufferViewDock *dock;
788   foreach(QAction *action, _bufferViewsMenu->actions()) {
789     actionData = action->data();
790     if(!actionData.isValid())
791       continue;
792
793     dock = qobject_cast<BufferViewDock *>(action->parent());
794     if(dock && actionData.toInt() != -1) {
795       removeAction(action);
796       _bufferViews.removeAll(dock);
797       Client::bufferViewOverlay()->removeView(dock->bufferViewId());
798       dock->deleteLater();
799     }
800   }
801
802   QtUiSettings s;
803   restoreState(s.value("MainWinState").toByteArray());
804   setDisconnectedState();
805 }
806
807 void MainWin::setDisconnectedState() {
808   ActionCollection *coll = QtUi::actionCollection("General");
809   //ui.menuCore->setEnabled(false);
810   coll->action("ConnectCore")->setEnabled(true);
811   coll->action("DisconnectCore")->setEnabled(false);
812   coll->action("CoreInfo")->setEnabled(false);
813   //_viewMenu->setEnabled(false);
814   statusBar()->showMessage(tr("Not connected to core."));
815   if(_msgProcessorStatusWidget)
816     _msgProcessorStatusWidget->setProgress(0, 0);
817   updateIcon();
818 #ifndef QT_NO_SYSTEMTRAYICON
819   systemTray()->setState(SystemTray::Inactive);
820 #endif
821 }
822
823 void MainWin::userAuthenticationRequired(CoreAccount *account, bool *valid, const QString &errorMessage) {
824   Q_UNUSED(errorMessage)
825   CoreConnectAuthDlg dlg(account, this);
826   *valid = (dlg.exec() == QDialog::Accepted);
827 }
828
829 void MainWin::handleNoSslInClient(bool *accepted) {
830   QMessageBox box(QMessageBox::Warning, tr("Unencrypted Connection"), tr("<b>Your client does not support SSL encryption</b>"),
831                   QMessageBox::Ignore|QMessageBox::Cancel, this);
832   box.setInformativeText(tr("Sensitive data, like passwords, will be transmitted unencrypted to your Quassel core."));
833   box.setDefaultButton(QMessageBox::Ignore);
834   *accepted = box.exec() == QMessageBox::Ignore;
835 }
836
837 void MainWin::handleNoSslInCore(bool *accepted) {
838   QMessageBox box(QMessageBox::Warning, tr("Unencrypted Connection"), tr("<b>Your core does not support SSL encryption</b>"),
839                   QMessageBox::Ignore|QMessageBox::Cancel, this);
840   box.setInformativeText(tr("Sensitive data, like passwords, will be transmitted unencrypted to your Quassel core."));
841   box.setDefaultButton(QMessageBox::Ignore);
842   *accepted = box.exec() == QMessageBox::Ignore;
843
844 }
845
846 #ifdef HAVE_SSL
847
848 void MainWin::handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently) {
849   QString errorString = "<ul>";
850   foreach(const QSslError error, socket->sslErrors())
851     errorString += QString("<li>%1</li>").arg(error.errorString());
852   errorString += "</ul>";
853
854   QMessageBox box(QMessageBox::Warning,
855                   tr("Untrusted Security Certificate"),
856                   tr("<b>The SSL certificate provided by the core at %1 is untrusted for the following reasons:</b>").arg(socket->peerName()),
857                   QMessageBox::Cancel, this);
858   box.setInformativeText(errorString);
859   box.addButton(tr("Continue"), QMessageBox::AcceptRole);
860   box.setDefaultButton(box.addButton(tr("Show Certificate"), QMessageBox::HelpRole));
861
862   QMessageBox::ButtonRole role;
863   do {
864     box.exec();
865     role = box.buttonRole(box.clickedButton());
866     if(role == QMessageBox::HelpRole) {
867       SslInfoDlg dlg(socket, this);
868       dlg.exec();
869     }
870   } while(role == QMessageBox::HelpRole);
871
872   *accepted = role == QMessageBox::AcceptRole;
873   if(*accepted) {
874     QMessageBox box2(QMessageBox::Warning,
875                      tr("Untrusted Security Certificate"),
876                      tr("Would you like to accept this certificate forever without being prompted?"),
877                      0, this);
878     box2.setDefaultButton(box2.addButton(tr("Current Session Only"), QMessageBox::NoRole));
879     box2.addButton(tr("Forever"), QMessageBox::YesRole);
880     box2.exec();
881     *permanently =  box2.buttonRole(box2.clickedButton()) == QMessageBox::YesRole;
882   }
883 }
884
885 #endif /* HAVE_SSL */
886
887 void MainWin::handleCoreConnectionError(const QString &error) {
888   QMessageBox::critical(this, tr("Core Connection Error"), error, QMessageBox::Ok);
889 }
890
891 void MainWin::showCoreConnectionDlg() {
892   CoreConnectDlg dlg(this);
893   if(dlg.exec() == QDialog::Accepted) {
894     AccountId accId = dlg.selectedAccount();
895     if(accId.isValid())
896       Client::coreConnection()->connectToCore(accId);
897   }
898 }
899
900 void MainWin::showCoreConfigWizard(const QVariantList &backends) {
901   CoreConfigWizard *wizard = new CoreConfigWizard(Client::coreConnection(), backends, this);
902
903   wizard->show();
904 }
905
906 void MainWin::showChannelList(NetworkId netId) {
907   ChannelListDlg *channelListDlg = new ChannelListDlg();
908
909   if(!netId.isValid()) {
910     QAction *action = qobject_cast<QAction *>(sender());
911     if(action)
912       netId = action->data().value<NetworkId>();
913   }
914
915   channelListDlg->setAttribute(Qt::WA_DeleteOnClose);
916   channelListDlg->setNetwork(netId);
917   channelListDlg->show();
918 }
919
920 void MainWin::showIgnoreList(QString newRule) {
921   SettingsPageDlg dlg(new IgnoreListSettingsPage(this), this);
922   // prepare config dialog for new rule
923   if(!newRule.isEmpty())
924     qobject_cast<IgnoreListSettingsPage *>(dlg.currentPage())->editIgnoreRule(newRule);
925   dlg.exec();
926 }
927
928 void MainWin::showCoreInfoDlg() {
929   CoreInfoDlg(this).exec();
930 }
931
932 void MainWin::showAwayLog() {
933   if(_awayLog)
934     return;
935   AwayLogFilter *filter = new AwayLogFilter(Client::messageModel());
936   _awayLog = new AwayLogView(filter, 0);
937   filter->setParent(_awayLog);
938   connect(_awayLog, SIGNAL(destroyed()), this, SLOT(awayLogDestroyed()));
939   _awayLog->setAttribute(Qt::WA_DeleteOnClose);
940   _awayLog->show();
941 }
942
943 void MainWin::awayLogDestroyed() {
944   _awayLog = 0;
945 }
946
947 void MainWin::showSettingsDlg() {
948   SettingsDlg *dlg = new SettingsDlg();
949
950   //Category: Interface
951   dlg->registerSettingsPage(new AppearanceSettingsPage(dlg));
952   dlg->registerSettingsPage(new ChatViewSettingsPage(dlg));
953   dlg->registerSettingsPage(new ChatMonitorSettingsPage(dlg));
954   dlg->registerSettingsPage(new ItemViewSettingsPage(dlg));
955   dlg->registerSettingsPage(new BufferViewSettingsPage(dlg));
956   dlg->registerSettingsPage(new InputWidgetSettingsPage(dlg));
957   dlg->registerSettingsPage(new TopicWidgetSettingsPage(dlg));
958   dlg->registerSettingsPage(new HighlightSettingsPage(dlg));
959   dlg->registerSettingsPage(new NotificationsSettingsPage(dlg));
960   dlg->registerSettingsPage(new BacklogSettingsPage(dlg));
961
962   //Category: IRC
963   dlg->registerSettingsPage(new ConnectionSettingsPage(dlg));
964   dlg->registerSettingsPage(new IdentitiesSettingsPage(dlg));
965   dlg->registerSettingsPage(new NetworksSettingsPage(dlg));
966   dlg->registerSettingsPage(new AliasesSettingsPage(dlg));
967   dlg->registerSettingsPage(new IgnoreListSettingsPage(dlg));
968
969   // Category: Remote Cores
970   if(Quassel::runMode() != Quassel::Monolithic) {
971     dlg->registerSettingsPage(new CoreAccountSettingsPage(dlg));
972     dlg->registerSettingsPage(new CoreConnectionSettingsPage(dlg));
973   }
974
975   dlg->show();
976 }
977
978 void MainWin::showAboutDlg() {
979   AboutDlg(this).exec();
980 }
981
982 #ifdef HAVE_KDE
983 void MainWin::showShortcutsDlg() {
984   KShortcutsDialog::configure(QtUi::actionCollection("General"), KShortcutsEditor::LetterShortcutsDisallowed);
985 }
986 #endif
987
988 /********************************************************************************************************/
989
990 bool MainWin::event(QEvent *event) {
991   if(event->type() == QEvent::WindowActivate) {
992     BufferId buffer = Client::bufferModel()->currentBuffer();
993     if(buffer.isValid())
994       QtUi::closeNotifications(buffer);
995   }
996   return QMainWindow::event(event);
997 }
998
999 void MainWin::moveEvent(QMoveEvent *event) {
1000   if(!(windowState() & Qt::WindowMaximized))
1001     _normalPos = event->pos();
1002
1003   QMainWindow::moveEvent(event);
1004 }
1005
1006 void MainWin::resizeEvent(QResizeEvent *event) {
1007   if(!(windowState() & Qt::WindowMaximized))
1008     _normalSize = event->size();
1009
1010   QMainWindow::resizeEvent(event);
1011 }
1012
1013 void MainWin::closeEvent(QCloseEvent *event) {
1014 #ifndef QT_NO_SYSTEMTRAYICON
1015   QtUiSettings s;
1016   QtUiApplication* app = qobject_cast<QtUiApplication*> qApp;
1017   Q_ASSERT(app);
1018   if(!app->isAboutToQuit() && s.value("UseSystemTrayIcon").toBool() && s.value("MinimizeOnClose").toBool()) {
1019     hideToTray();
1020     event->ignore();
1021   } else {
1022     event->accept();
1023     quit();
1024   }
1025 #else
1026   event->accept();
1027   quit();
1028 #endif
1029 }
1030
1031 void MainWin::changeEvent(QEvent *event) {
1032 #ifdef Q_WS_WIN
1033   if(event->type() == QEvent::ActivationChange)
1034     dwTickCount = GetTickCount();  // needed for toggleMinimizedToTray()
1035 #endif
1036
1037   QMainWindow::changeEvent(event);
1038 }
1039
1040 #ifndef QT_NO_SYSTEMTRAYICON
1041
1042 void MainWin::hideToTray() {
1043   if(!systemTray()->isSystemTrayAvailable()) {
1044     qWarning() << Q_FUNC_INFO << "was called with no SystemTray available!";
1045     return;
1046   }
1047   hide();
1048   systemTray()->setIconVisible();
1049 }
1050
1051 void MainWin::toggleMinimizedToTray() {
1052 #ifdef Q_WS_WIN
1053   // the problem is that we lose focus when the systray icon is activated
1054   // and we don't know the former active window
1055   // therefore we watch for activation event and use our stopwatch :)
1056   // courtesy: KSystemTrayIcon
1057   if(GetTickCount() - dwTickCount >= 300)
1058     // we weren't active in the last 300ms -> activate
1059     forceActivated();
1060   else
1061     hideToTray();
1062
1063 #else
1064
1065   if(!isVisible() || isMinimized())
1066     // restore
1067     forceActivated();
1068   else
1069     hideToTray();
1070
1071 #endif
1072 }
1073
1074 #endif /* QT_NO_SYSTEMTRAYICON */
1075
1076 void MainWin::forceActivated() {
1077 #ifdef HAVE_KDE
1078   show();
1079   KWindowSystem::forceActiveWindow(winId());
1080 #else
1081
1082 #ifdef Q_WS_X11
1083   // Bypass focus stealing prevention
1084   QX11Info::setAppUserTime(QX11Info::appTime());
1085 #endif
1086
1087   if(windowState() & Qt::WindowMinimized) {
1088     // restore
1089     setWindowState((windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
1090   }
1091
1092   // this does not actually work on all platforms... and causes more evil than good
1093   // move(frameGeometry().topLeft()); // avoid placement policies
1094   show();
1095   raise();
1096   activateWindow();
1097 #endif /* HAVE_KDE */
1098 }
1099
1100 void MainWin::messagesInserted(const QModelIndex &parent, int start, int end) {
1101   Q_UNUSED(parent);
1102
1103   bool hasFocus = QApplication::activeWindow() != 0;
1104
1105   for(int i = start; i <= end; i++) {
1106     QModelIndex idx = Client::messageModel()->index(i, ChatLineModel::ContentsColumn);
1107     if(!idx.isValid()) {
1108       qDebug() << "MainWin::messagesInserted(): Invalid model index!";
1109       continue;
1110     }
1111     Message::Flags flags = (Message::Flags)idx.data(ChatLineModel::FlagsRole).toInt();
1112     if(flags.testFlag(Message::Backlog) || flags.testFlag(Message::Self))
1113       continue;
1114
1115     BufferId bufId = idx.data(ChatLineModel::BufferIdRole).value<BufferId>();
1116     BufferInfo::Type bufType = Client::networkModel()->bufferType(bufId);
1117
1118     if(hasFocus && bufId == Client::bufferModel()->currentBuffer())
1119       continue;
1120
1121     if((flags & Message::Highlight || bufType == BufferInfo::QueryBuffer)
1122       && !(Client::ignoreListManager() && Client::ignoreListManager()->match(idx.data(MessageModel::MessageRole).value<Message>(),
1123                                                                              Client::networkModel()->networkName(bufId))))
1124     {
1125       QModelIndex senderIdx = Client::messageModel()->index(i, ChatLineModel::SenderColumn);
1126       QString sender = senderIdx.data(ChatLineModel::EditRole).toString();
1127       QString contents = idx.data(ChatLineModel::DisplayRole).toString();
1128       AbstractNotificationBackend::NotificationType type;
1129
1130       if(bufType == BufferInfo::QueryBuffer && !hasFocus)
1131         type = AbstractNotificationBackend::PrivMsg;
1132       else if(bufType == BufferInfo::QueryBuffer && hasFocus)
1133         type = AbstractNotificationBackend::PrivMsgFocused;
1134       else if(flags & Message::Highlight && !hasFocus)
1135         type = AbstractNotificationBackend::Highlight;
1136       else
1137         type = AbstractNotificationBackend::HighlightFocused;
1138
1139       QtUi::invokeNotification(bufId, type, sender, contents);
1140     }
1141   }
1142 }
1143
1144 void MainWin::currentBufferChanged(BufferId buffer) {
1145   if(buffer.isValid())
1146     QtUi::closeNotifications(buffer);
1147 }
1148
1149 void MainWin::clientNetworkCreated(NetworkId id) {
1150   const Network *net = Client::network(id);
1151   QAction *act = new QAction(net->networkName(), this);
1152   act->setObjectName(QString("NetworkAction-%1").arg(id.toInt()));
1153   act->setData(QVariant::fromValue<NetworkId>(id));
1154   connect(net, SIGNAL(updatedRemotely()), this, SLOT(clientNetworkUpdated()));
1155   connect(act, SIGNAL(triggered()), this, SLOT(connectOrDisconnectFromNet()));
1156
1157   QAction *beforeAction = 0;
1158   foreach(QAction *action, _networksMenu->actions()) {
1159     if(!action->data().isValid())  // ignore stock actions
1160       continue;
1161     if(net->networkName().localeAwareCompare(action->text()) < 0) {
1162       beforeAction = action;
1163       break;
1164     }
1165   }
1166   _networksMenu->insertAction(beforeAction, act);
1167 }
1168
1169 void MainWin::clientNetworkUpdated() {
1170   const Network *net = qobject_cast<const Network *>(sender());
1171   if(!net)
1172     return;
1173
1174   QAction *action = findChild<QAction *>(QString("NetworkAction-%1").arg(net->networkId().toInt()));
1175   if(!action)
1176     return;
1177
1178   action->setText(net->networkName());
1179
1180   switch(net->connectionState()) {
1181   case Network::Initialized:
1182     action->setIcon(SmallIcon("network-connect"));
1183     break;
1184   case Network::Disconnected:
1185     action->setIcon(SmallIcon("network-disconnect"));
1186     break;
1187   default:
1188     action->setIcon(SmallIcon("network-wired"));
1189   }
1190 }
1191
1192 void MainWin::clientNetworkRemoved(NetworkId id) {
1193   QAction *action = findChild<QAction *>(QString("NetworkAction-%1").arg(id.toInt()));
1194   if(!action)
1195     return;
1196
1197   action->deleteLater();
1198 }
1199
1200 void MainWin::connectOrDisconnectFromNet() {
1201   QAction *act = qobject_cast<QAction *>(sender());
1202   if(!act) return;
1203   const Network *net = Client::network(act->data().value<NetworkId>());
1204   if(!net) return;
1205   if(net->connectionState() == Network::Disconnected) net->requestConnect();
1206   else net->requestDisconnect();
1207 }
1208
1209 void MainWin::on_jumpHotBuffer_triggered() {
1210   if(!_bufferHotList->rowCount())
1211     return;
1212
1213   QModelIndex topIndex = _bufferHotList->index(0, 0);
1214   BufferId bufferId = _bufferHotList->data(topIndex, NetworkModel::BufferIdRole).value<BufferId>();
1215   Client::bufferModel()->switchToBuffer(bufferId);
1216 }
1217
1218 void MainWin::on_actionDebugNetworkModel_triggered() {
1219   QTreeView *view = new QTreeView;
1220   view->setAttribute(Qt::WA_DeleteOnClose);
1221   view->setWindowTitle("Debug NetworkModel View");
1222   view->setModel(Client::networkModel());
1223   view->setColumnWidth(0, 250);
1224   view->setColumnWidth(1, 250);
1225   view->setColumnWidth(2, 80);
1226   view->resize(610, 300);
1227   view->show();
1228 }
1229
1230 void MainWin::on_actionDebugHotList_triggered() {
1231   QTreeView *view = new QTreeView;
1232   view->setAttribute(Qt::WA_DeleteOnClose);
1233   view->setModel(_bufferHotList);
1234   view->show();
1235 }
1236
1237 void MainWin::on_actionDebugBufferViewOverlay_triggered() {
1238   DebugBufferViewOverlay *overlay = new DebugBufferViewOverlay(0);
1239   overlay->setAttribute(Qt::WA_DeleteOnClose);
1240   overlay->show();
1241 }
1242
1243 void MainWin::on_actionDebugMessageModel_triggered() {
1244   QTableView *view = new QTableView(0);
1245   DebugMessageModelFilter *filter = new DebugMessageModelFilter(view);
1246   filter->setSourceModel(Client::messageModel());
1247   view->setModel(filter);
1248   view->setAttribute(Qt::WA_DeleteOnClose, true);
1249   view->verticalHeader()->hide();
1250   view->horizontalHeader()->setStretchLastSection(true);
1251   view->show();
1252 }
1253
1254 void MainWin::on_actionDebugLog_triggered() {
1255   DebugLogWidget *logWidget = new DebugLogWidget(0);
1256   logWidget->show();
1257 }
1258
1259 void MainWin::showStatusBarMessage(const QString &message) {
1260   statusBar()->showMessage(message, 10000);
1261 }
1262