Fix saving of dockwidget/bufferview layouts
[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 "legacysystemtray.h"
74 #include "msgprocessorstatuswidget.h"
75 #include "nicklistwidget.h"
76 #include "qtuiapplication.h"
77 #include "qtuimessageprocessor.h"
78 #include "qtuisettings.h"
79 #include "qtuistyle.h"
80 #include "settingsdlg.h"
81 #include "settingspagedlg.h"
82 #include "statusnotifieritem.h"
83 #include "toolbaractionprovider.h"
84 #include "topicwidget.h"
85 #include "verticaldock.h"
86
87 #ifndef HAVE_KDE
88 #  ifdef HAVE_DBUS
89 #    include "desktopnotificationbackend.h"
90 #  endif
91 #  ifdef HAVE_PHONON
92 #    include "phononnotificationbackend.h"
93 #  endif
94 #  include "systraynotificationbackend.h"
95 #  include "taskbarnotificationbackend.h"
96 #else /* HAVE_KDE */
97 #  include "knotificationbackend.h"
98 #endif /* HAVE_KDE */
99
100 #ifdef HAVE_SSL
101 #  include "sslinfodlg.h"
102 #endif
103
104 #ifdef HAVE_INDICATEQT
105   #include "indicatornotificationbackend.h"
106 #endif
107
108 #include "settingspages/aliasessettingspage.h"
109 #include "settingspages/appearancesettingspage.h"
110 #include "settingspages/backlogsettingspage.h"
111 #include "settingspages/bufferviewsettingspage.h"
112 #include "settingspages/chatmonitorsettingspage.h"
113 #include "settingspages/chatviewsettingspage.h"
114 #include "settingspages/connectionsettingspage.h"
115 #include "settingspages/coreaccountsettingspage.h"
116 #include "settingspages/coreconnectionsettingspage.h"
117 #include "settingspages/highlightsettingspage.h"
118 #include "settingspages/identitiessettingspage.h"
119 #include "settingspages/ignorelistsettingspage.h"
120 #include "settingspages/inputwidgetsettingspage.h"
121 #include "settingspages/itemviewsettingspage.h"
122 #include "settingspages/networkssettingspage.h"
123 #include "settingspages/notificationssettingspage.h"
124 #include "settingspages/topicwidgetsettingspage.h"
125
126 MainWin::MainWin(QWidget *parent)
127 #ifdef HAVE_KDE
128   : KMainWindow(parent),
129   _kHelpMenu(new KHelpMenu(this, KGlobal::mainComponent().aboutData())),
130 #else
131   : QMainWindow(parent),
132 #endif
133     _msgProcessorStatusWidget(new MsgProcessorStatusWidget(this)),
134     _coreConnectionStatusWidget(new CoreConnectionStatusWidget(Client::coreConnection(), this)),
135     _titleSetter(this),
136     _awayLog(0),
137     _layoutLoaded(false)
138 {
139   QtUiSettings uiSettings;
140   QString style = uiSettings.value("Style", QString()).toString();
141   if(!style.isEmpty()) {
142     QApplication::setStyle(style);
143   }
144
145   QApplication::setQuitOnLastWindowClosed(false);
146
147   setWindowTitle("Quassel IRC");
148   setWindowIconText("Quassel IRC");
149   updateIcon();
150
151   installEventFilter(new JumpKeyHandler(this));
152 }
153
154 void MainWin::init() {
155   connect(Client::instance(), SIGNAL(networkCreated(NetworkId)), SLOT(clientNetworkCreated(NetworkId)));
156   connect(Client::instance(), SIGNAL(networkRemoved(NetworkId)), SLOT(clientNetworkRemoved(NetworkId)));
157   connect(Client::messageModel(), SIGNAL(rowsInserted(const QModelIndex &, int, int)),
158            SLOT(messagesInserted(const QModelIndex &, int, int)));
159   connect(GraphicalUi::contextMenuActionProvider(), SIGNAL(showChannelList(NetworkId)), SLOT(showChannelList(NetworkId)));
160   connect(GraphicalUi::contextMenuActionProvider(), SIGNAL(showIgnoreList(QString)), SLOT(showIgnoreList(QString)));
161
162   connect(Client::coreConnection(), SIGNAL(startCoreSetup(QVariantList)), SLOT(showCoreConfigWizard(QVariantList)));
163   connect(Client::coreConnection(), SIGNAL(connectionErrorPopup(QString)), SLOT(handleCoreConnectionError(QString)));
164   connect(Client::coreConnection(), SIGNAL(userAuthenticationRequired(CoreAccount *, bool *, QString)), SLOT(userAuthenticationRequired(CoreAccount *, bool *, QString)));
165   connect(Client::coreConnection(), SIGNAL(handleNoSslInClient(bool*)), SLOT(handleNoSslInClient(bool *)));
166   connect(Client::coreConnection(), SIGNAL(handleNoSslInCore(bool*)), SLOT(handleNoSslInCore(bool *)));
167 #ifdef HAVE_SSL
168   connect(Client::coreConnection(), SIGNAL(handleSslErrors(const QSslSocket *, bool *, bool *)), SLOT(handleSslErrors(const QSslSocket *, bool *, bool *)));
169 #endif
170
171   // Setup Dock Areas
172   setDockNestingEnabled(true);
173   setCorner(Qt::TopLeftCorner, Qt::LeftDockWidgetArea);
174   setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
175   setCorner(Qt::TopRightCorner, Qt::RightDockWidgetArea);
176   setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea);
177
178   // Order is sometimes important
179   setupActions();
180   setupBufferWidget();
181   setupMenus();
182   setupTopicWidget();
183   setupNickWidget();
184   setupInputWidget();
185   setupChatMonitor();
186   setupStatusBar();
187   setupToolBars();
188   setupSystray();
189   setupTitleSetter();
190   setupHotList();
191
192 #ifndef HAVE_KDE
193   QtUi::registerNotificationBackend(new TaskbarNotificationBackend(this));
194 #  ifndef QT_NO_SYSTEMTRAYICON
195   QtUi::registerNotificationBackend(new SystrayNotificationBackend(this));
196 #  endif
197 #  ifdef HAVE_PHONON
198   QtUi::registerNotificationBackend(new PhononNotificationBackend(this));
199 #  endif
200 #  ifdef HAVE_DBUS
201   QtUi::registerNotificationBackend(new DesktopNotificationBackend(this));
202 #  endif
203
204 #else /* HAVE_KDE */
205   QtUi::registerNotificationBackend(new KNotificationBackend(this));
206 #endif /* HAVE_KDE */
207
208 #ifdef HAVE_INDICATEQT
209   QtUi::registerNotificationBackend(new IndicatorNotificationBackend(this));
210 #endif
211
212   connect(bufferWidget(), SIGNAL(currentChanged(BufferId)), SLOT(currentBufferChanged(BufferId)));
213
214   setDisconnectedState();  // Disable menus and stuff
215
216 #ifdef HAVE_KDE
217   setAutoSaveSettings();
218 #endif
219
220   // restore mainwin state
221   QtUiSettings s;
222   restoreStateFromSettings(s);
223
224   // restore locked state of docks
225   QtUi::actionCollection("General")->action("LockLayout")->setChecked(s.value("LockLayout", false).toBool());
226
227   CoreConnection *conn = Client::coreConnection();
228   if(!conn->connectToCore()) {
229     // No autoconnect selected (or no accounts)
230     showCoreConnectionDlg();
231   }
232 }
233
234 MainWin::~MainWin() {
235
236 }
237
238 void MainWin::quit() {
239   QtUiSettings s;
240   saveStateToSettings(s);
241   saveLayout();
242   QApplication::quit();
243 }
244
245 void MainWin::saveStateToSettings(UiSettings &s) {
246   s.setValue("MainWinSize", _normalSize);
247   s.setValue("MainWinPos", _normalPos);
248   s.setValue("MainWinState", saveState());
249   s.setValue("MainWinGeometry", saveGeometry());
250   s.setValue("MainWinMinimized", isMinimized());
251   s.setValue("MainWinMaximized", isMaximized());
252   s.setValue("MainWinHidden", !isVisible());
253
254 #ifdef HAVE_KDE
255   saveAutoSaveSettings();
256 #endif
257 }
258
259 void MainWin::restoreStateFromSettings(UiSettings &s) {
260   _normalSize = s.value("MainWinSize", size()).toSize();
261   _normalPos = s.value("MainWinPos", pos()).toPoint();
262   bool maximized = s.value("MainWinMaximized", false).toBool();
263
264 #ifndef HAVE_KDE
265   restoreGeometry(s.value("MainWinGeometry").toByteArray());
266
267   if(maximized) {
268     // restoreGeometry() fails if the windows was maximized, so we resize and position explicitly
269     resize(_normalSize);
270     move(_normalPos);
271   }
272
273   restoreState(s.value("MainWinState").toByteArray());
274
275 #else
276   move(_normalPos);
277 #endif
278
279   if(s.value("MainWinHidden").toBool() && QtUi::haveSystemTray())
280     QtUi::hideMainWidget();
281   else if(s.value("MainWinMinimized").toBool())
282     showMinimized();
283   else if(maximized)
284     showMaximized();
285   else
286     show();
287 }
288
289 void MainWin::updateIcon() {
290 #ifdef Q_WS_MAC
291   const int size = 128;
292 #else
293   const int size = 48;
294 #endif
295
296   QPixmap icon;
297   if(Client::isConnected())
298     icon = DesktopIcon("quassel", size);
299   else
300     icon = DesktopIcon("quassel_inactive", size);
301   setWindowIcon(icon);
302   qApp->setWindowIcon(icon);
303 }
304
305 void MainWin::setupActions() {
306   ActionCollection *coll = QtUi::actionCollection("General");
307   // File
308   coll->addAction("ConnectCore", new Action(SmallIcon("network-connect"), tr("&Connect to Core..."), coll,
309                                              this, SLOT(showCoreConnectionDlg())));
310   coll->addAction("DisconnectCore", new Action(SmallIcon("network-disconnect"), tr("&Disconnect from Core"), coll,
311                                                 Client::instance(), SLOT(disconnectFromCore())));
312   coll->addAction("CoreInfo", new Action(SmallIcon("help-about"), tr("Core &Info..."), coll,
313                                           this, SLOT(showCoreInfoDlg())));
314   coll->addAction("ConfigureNetworks", new Action(SmallIcon("configure"), tr("Configure &Networks..."), coll,
315                                               this, SLOT(on_actionConfigureNetworks_triggered())));
316   coll->addAction("Quit", new Action(SmallIcon("application-exit"), tr("&Quit"), coll,
317                                       this, SLOT(quit()), tr("Ctrl+Q")));
318
319   // View
320   coll->addAction("ConfigureBufferViews", new Action(tr("&Configure Chat Lists..."), coll,
321                                              this, SLOT(on_actionConfigureViews_triggered())));
322
323   QAction *lockAct = coll->addAction("LockLayout", new Action(tr("&Lock Layout"), coll));
324   lockAct->setCheckable(true);
325   connect(lockAct, SIGNAL(toggled(bool)), SLOT(on_actionLockLayout_toggled(bool)));
326
327   coll->addAction("ToggleSearchBar", new Action(SmallIcon("edit-find"), tr("Show &Search Bar"), coll,
328                                                 0, 0, QKeySequence::Find))->setCheckable(true);
329   coll->addAction("ShowAwayLog", new Action(tr("Show Away Log"), coll,
330                                             this, SLOT(showAwayLog())));
331   coll->addAction("ToggleMenuBar", new Action(SmallIcon("show-menu"), tr("Show &Menubar"), coll,
332                                                 0, 0, tr("Ctrl+M")))->setCheckable(true);
333
334   coll->addAction("ToggleStatusBar", new Action(tr("Show Status &Bar"), coll,
335                                                 0, 0))->setCheckable(true);
336
337   // Settings
338   coll->addAction("ConfigureQuassel", new Action(SmallIcon("configure"), tr("&Configure Quassel..."), coll,
339                                                   this, SLOT(showSettingsDlg()), tr("F7")));
340
341   // Help
342   coll->addAction("AboutQuassel", new Action(SmallIcon("quassel"), tr("&About Quassel"), coll,
343                                               this, SLOT(showAboutDlg())));
344   coll->addAction("AboutQt", new Action(QIcon(":/pics/qt-logo.png"), tr("About &Qt"), coll,
345                                          qApp, SLOT(aboutQt())));
346   coll->addAction("DebugNetworkModel", new Action(SmallIcon("tools-report-bug"), tr("Debug &NetworkModel"), coll,
347                                        this, SLOT(on_actionDebugNetworkModel_triggered())));
348   coll->addAction("DebugBufferViewOverlay", new Action(SmallIcon("tools-report-bug"), tr("Debug &BufferViewOverlay"), coll,
349                                        this, SLOT(on_actionDebugBufferViewOverlay_triggered())));
350   coll->addAction("DebugMessageModel", new Action(SmallIcon("tools-report-bug"), tr("Debug &MessageModel"), coll,
351                                        this, SLOT(on_actionDebugMessageModel_triggered())));
352   coll->addAction("DebugHotList", new Action(SmallIcon("tools-report-bug"), tr("Debug &HotList"), coll,
353                                        this, SLOT(on_actionDebugHotList_triggered())));
354   coll->addAction("DebugLog", new Action(SmallIcon("tools-report-bug"), tr("Debug &Log"), coll,
355                                        this, SLOT(on_actionDebugLog_triggered())));
356   coll->addAction("ReloadStyle", new Action(SmallIcon("view-refresh"), tr("Reload Stylesheet"), coll,
357                                        QtUi::style(), SLOT(reload()), QKeySequence::Refresh));
358
359   // Navigation
360   coll->addAction("JumpHotBuffer", new Action(tr("Jump to hot chat"), coll,
361                                               this, SLOT(on_jumpHotBuffer_triggered()), QKeySequence(Qt::META + Qt::Key_A)));
362 }
363
364 void MainWin::setupMenus() {
365   ActionCollection *coll = QtUi::actionCollection("General");
366
367   _fileMenu = menuBar()->addMenu(tr("&File"));
368
369   static const QStringList coreActions = QStringList()
370     << "ConnectCore" << "DisconnectCore" << "CoreInfo";
371
372   QAction *coreAction;
373   foreach(QString actionName, coreActions) {
374     coreAction = coll->action(actionName);
375     _fileMenu->addAction(coreAction);
376     flagRemoteCoreOnly(coreAction);
377   }
378   flagRemoteCoreOnly(_fileMenu->addSeparator());
379
380   _networksMenu = _fileMenu->addMenu(tr("&Networks"));
381   _networksMenu->addAction(coll->action("ConfigureNetworks"));
382   _networksMenu->addSeparator();
383   _fileMenu->addSeparator();
384   _fileMenu->addAction(coll->action("Quit"));
385
386   _viewMenu = menuBar()->addMenu(tr("&View"));
387   _bufferViewsMenu = _viewMenu->addMenu(tr("&Chat Lists"));
388   _bufferViewsMenu->addAction(coll->action("ConfigureBufferViews"));
389   _toolbarMenu = _viewMenu->addMenu(tr("&Toolbars"));
390   _viewMenu->addSeparator();
391
392   _viewMenu->addAction(coll->action("ToggleMenuBar"));
393   _viewMenu->addAction(coll->action("ToggleStatusBar"));
394   _viewMenu->addAction(coll->action("ToggleSearchBar"));
395
396   coreAction = coll->action("ShowAwayLog");
397   flagRemoteCoreOnly(coreAction);
398   _viewMenu->addAction(coreAction);
399
400   _viewMenu->addSeparator();
401   _viewMenu->addAction(coll->action("LockLayout"));
402
403   _settingsMenu = menuBar()->addMenu(tr("&Settings"));
404 #ifdef HAVE_KDE
405   _settingsMenu->addAction(KStandardAction::configureNotifications(this, SLOT(showNotificationsDlg()), this));
406   _settingsMenu->addAction(KStandardAction::keyBindings(this, SLOT(showShortcutsDlg()), this));
407 #endif
408   _settingsMenu->addAction(coll->action("ConfigureQuassel"));
409
410   _helpMenu = menuBar()->addMenu(tr("&Help"));
411   _helpMenu->addAction(coll->action("AboutQuassel"));
412 #ifndef HAVE_KDE
413   _helpMenu->addAction(coll->action("AboutQt"));
414 #else
415   _helpMenu->addAction(KStandardAction::aboutKDE(_kHelpMenu, SLOT(aboutKDE()), this));
416 #endif
417   _helpMenu->addSeparator();
418   _helpDebugMenu = _helpMenu->addMenu(SmallIcon("tools-report-bug"), tr("Debug"));
419   _helpDebugMenu->addAction(coll->action("DebugNetworkModel"));
420   _helpDebugMenu->addAction(coll->action("DebugBufferViewOverlay"));
421   _helpDebugMenu->addAction(coll->action("DebugMessageModel"));
422   _helpDebugMenu->addAction(coll->action("DebugHotList"));
423   _helpDebugMenu->addAction(coll->action("DebugLog"));
424   _helpDebugMenu->addSeparator();
425   _helpDebugMenu->addAction(coll->action("ReloadStyle"));
426
427   // Toggle visibility
428   QAction *showMenuBar = QtUi::actionCollection("General")->action("ToggleMenuBar");
429
430   QtUiSettings uiSettings;
431   bool enabled = uiSettings.value("ShowMenuBar", QVariant(true)).toBool();
432   showMenuBar->setChecked(enabled);
433   enabled ? menuBar()->show() : menuBar()->hide();
434
435   connect(showMenuBar, SIGNAL(toggled(bool)), menuBar(), SLOT(setVisible(bool)));
436   connect(showMenuBar, SIGNAL(toggled(bool)), this, SLOT(saveMenuBarStatus(bool)));
437 }
438
439 void MainWin::setupBufferWidget() {
440   _bufferWidget = new BufferWidget(this);
441   _bufferWidget->setModel(Client::bufferModel());
442   _bufferWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
443   setCentralWidget(_bufferWidget);
444 }
445
446 void MainWin::addBufferView(int bufferViewConfigId) {
447   addBufferView(Client::bufferViewManager()->clientBufferViewConfig(bufferViewConfigId));
448 }
449
450 void MainWin::addBufferView(ClientBufferViewConfig *config) {
451   if(!config)
452     return;
453
454   config->setLocked(QtUiSettings().value("LockLayout", false).toBool());
455   BufferViewDock *dock = new BufferViewDock(config, this);
456
457   //create the view and initialize it's filter
458   BufferView *view = new BufferView(dock);
459   view->setFilteredModel(Client::bufferModel(), config);
460   view->installEventFilter(_inputWidget); // for key presses
461
462   Client::bufferModel()->synchronizeView(view);
463
464   dock->setWidget(view);
465   dock->setVisible(_layoutLoaded); // don't show before state has been restored
466
467   addDockWidget(Qt::LeftDockWidgetArea, dock);
468   _bufferViewsMenu->addAction(dock->toggleViewAction());
469
470   connect(dock->toggleViewAction(), SIGNAL(toggled(bool)), this, SLOT(bufferViewToggled(bool)));
471   _bufferViews.append(dock);
472 }
473
474 void MainWin::removeBufferView(int bufferViewConfigId) {
475   QVariant actionData;
476   BufferViewDock *dock;
477   foreach(QAction *action, _bufferViewsMenu->actions()) {
478     actionData = action->data();
479     if(!actionData.isValid())
480       continue;
481
482     dock = qobject_cast<BufferViewDock *>(action->parent());
483     if(dock && actionData.toInt() == bufferViewConfigId) {
484       removeAction(action);
485       _bufferViews.removeAll(dock);
486       Client::bufferViewOverlay()->removeView(dock->bufferViewId());
487       dock->deleteLater();
488     }
489   }
490 }
491
492 void MainWin::bufferViewToggled(bool enabled) {
493   QAction *action = qobject_cast<QAction *>(sender());
494   Q_ASSERT(action);
495   BufferViewDock *dock = qobject_cast<BufferViewDock *>(action->parent());
496   Q_ASSERT(dock);
497
498   // Make sure we don't toggle backlog fetch for a view we've already removed
499   if(!_bufferViews.contains(dock))
500     return;
501
502   if(enabled) {
503     Client::bufferViewOverlay()->addView(dock->bufferViewId());
504     BufferViewConfig *config = dock->config();
505     if(config && config->isInitialized()) {
506       BufferIdList buffers;
507       if(config->networkId().isValid()) {
508         foreach(BufferId bufferId, config->bufferList()) {
509           if(Client::networkModel()->networkId(bufferId) == config->networkId())
510             buffers << bufferId;
511         }
512         foreach(BufferId bufferId, config->temporarilyRemovedBuffers().toList()) {
513           if(Client::networkModel()->networkId(bufferId) == config->networkId())
514             buffers << bufferId;
515         }
516       } else {
517         buffers = BufferIdList::fromSet(config->bufferList().toSet() + config->temporarilyRemovedBuffers());
518       }
519       Client::backlogManager()->checkForBacklog(buffers);
520     }
521   } else {
522     Client::bufferViewOverlay()->removeView(dock->bufferViewId());
523   }
524 }
525
526 BufferView *MainWin::allBuffersView() const {
527   // "All Buffers" is always the first dock created
528   if(_bufferViews.count() > 0)
529     return _bufferViews[0]->bufferView();
530   return 0;
531 }
532
533 void MainWin::showNotificationsDlg() {
534   SettingsPageDlg dlg(new NotificationsSettingsPage(this), this);
535   dlg.exec();
536 }
537
538 void MainWin::on_actionConfigureNetworks_triggered() {
539   SettingsPageDlg dlg(new NetworksSettingsPage(this), this);
540   dlg.exec();
541 }
542
543 void MainWin::on_actionConfigureViews_triggered() {
544   SettingsPageDlg dlg(new BufferViewSettingsPage(this), this);
545   dlg.exec();
546 }
547
548 void MainWin::on_actionLockLayout_toggled(bool lock) {
549   QList<VerticalDock *> docks = findChildren<VerticalDock *>();
550   foreach(VerticalDock *dock, docks) {
551     dock->showTitle(!lock);
552   }
553   if(Client::bufferViewManager()) {
554     foreach(ClientBufferViewConfig *config, Client::bufferViewManager()->clientBufferViewConfigs()) {
555       config->setLocked(lock);
556     }
557   }
558   QtUiSettings().setValue("LockLayout", lock);
559 }
560
561 void MainWin::setupNickWidget() {
562   // create nick dock
563   NickListDock *nickDock = new NickListDock(tr("Nicks"), this);
564   nickDock->setObjectName("NickDock");
565   nickDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
566
567   _nickListWidget = new NickListWidget(nickDock);
568   nickDock->setWidget(_nickListWidget);
569
570   addDockWidget(Qt::RightDockWidgetArea, nickDock);
571   _viewMenu->addAction(nickDock->toggleViewAction());
572   nickDock->toggleViewAction()->setText(tr("Show Nick List"));
573
574   // See NickListDock::NickListDock();
575   // connect(nickDock->toggleViewAction(), SIGNAL(triggered(bool)), nickListWidget, SLOT(showWidget(bool)));
576
577   // attach the NickListWidget to the BufferModel and the default selection
578   _nickListWidget->setModel(Client::bufferModel());
579   _nickListWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
580 }
581
582 void MainWin::setupChatMonitor() {
583   VerticalDock *dock = new VerticalDock(tr("Chat Monitor"), this);
584   dock->setObjectName("ChatMonitorDock");
585
586   ChatMonitorFilter *filter = new ChatMonitorFilter(Client::messageModel(), this);
587   _chatMonitorView = new ChatMonitorView(filter, this);
588   _chatMonitorView->setFocusProxy(_inputWidget);
589   _chatMonitorView->show();
590   dock->setWidget(_chatMonitorView);
591   dock->hide();
592
593   addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
594   _viewMenu->addAction(dock->toggleViewAction());
595   dock->toggleViewAction()->setText(tr("Show Chat Monitor"));
596 }
597
598 void MainWin::setupInputWidget() {
599   VerticalDock *dock = new VerticalDock(tr("Inputline"), this);
600   dock->setObjectName("InputDock");
601
602   _inputWidget = new InputWidget(dock);
603   dock->setWidget(_inputWidget);
604
605   addDockWidget(Qt::BottomDockWidgetArea, dock);
606
607   _viewMenu->addAction(dock->toggleViewAction());
608   dock->toggleViewAction()->setText(tr("Show Input Line"));
609
610   _inputWidget->setModel(Client::bufferModel());
611   _inputWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
612
613   _bufferWidget->setFocusProxy(_inputWidget);
614
615   _inputWidget->inputLine()->installEventFilter(_bufferWidget);
616
617   connect(_topicWidget, SIGNAL(switchedPlain()), _bufferWidget, SLOT(setFocus()));
618 }
619
620 void MainWin::setupTopicWidget() {
621   VerticalDock *dock = new VerticalDock(tr("Topic"), this);
622   dock->setObjectName("TopicDock");
623   _topicWidget = new TopicWidget(dock);
624
625   dock->setWidget(_topicWidget);
626
627   _topicWidget->setModel(Client::bufferModel());
628   _topicWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
629
630   addDockWidget(Qt::TopDockWidgetArea, dock, Qt::Vertical);
631
632   _viewMenu->addAction(dock->toggleViewAction());
633   dock->toggleViewAction()->setText(tr("Show Topic Line"));
634 }
635
636 void MainWin::setupTitleSetter() {
637   _titleSetter.setModel(Client::bufferModel());
638   _titleSetter.setSelectionModel(Client::bufferModel()->standardSelectionModel());
639 }
640
641 void MainWin::setupStatusBar() {
642   // MessageProcessor progress
643   statusBar()->addPermanentWidget(_msgProcessorStatusWidget);
644
645   // Connection state
646   _coreConnectionStatusWidget->update();
647   statusBar()->addPermanentWidget(_coreConnectionStatusWidget);
648
649   QAction *showStatusbar = QtUi::actionCollection("General")->action("ToggleStatusBar");
650
651   QtUiSettings uiSettings;
652
653   bool enabled = uiSettings.value("ShowStatusBar", QVariant(true)).toBool();
654   showStatusbar->setChecked(enabled);
655   enabled ? statusBar()->show() : statusBar()->hide();
656
657   connect(showStatusbar, SIGNAL(toggled(bool)), statusBar(), SLOT(setVisible(bool)));
658   connect(showStatusbar, SIGNAL(toggled(bool)), this, SLOT(saveStatusBarStatus(bool)));
659
660   connect(Client::coreConnection(), SIGNAL(connectionMsg(QString)), statusBar(), SLOT(showMessage(QString)));
661 }
662
663 void MainWin::setupHotList() {
664   FlatProxyModel *flatProxy = new FlatProxyModel(this);
665   flatProxy->setSourceModel(Client::bufferModel());
666   _bufferHotList = new BufferHotListFilter(flatProxy);
667 }
668
669 void MainWin::saveMenuBarStatus(bool enabled) {
670   QtUiSettings uiSettings;
671   uiSettings.setValue("ShowMenuBar", enabled);
672 }
673
674 void MainWin::saveStatusBarStatus(bool enabled) {
675   QtUiSettings uiSettings;
676   uiSettings.setValue("ShowStatusBar", enabled);
677 }
678
679 void MainWin::setupSystray() {
680 #ifdef HAVE_DBUS
681   _systemTray = new StatusNotifierItem(this);
682 #elif !defined QT_NO_SYSTEMTRAYICON
683   _systemTray = new LegacySystemTray(this);
684 #else
685   _systemTray = new SystemTray(this); // dummy
686 #endif
687   _systemTray->init();
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   systemTray()->setState(SystemTray::Active);
752
753   if(Client::networkIds().isEmpty()) {
754     IrcConnectionWizard *wizard = new IrcConnectionWizard(this, Qt::Sheet);
755     wizard->show();
756   }
757 }
758
759 void MainWin::loadLayout() {
760   QtUiSettings s;
761   int accountId = Client::currentCoreAccount().accountId().toInt();
762   QByteArray state = s.value(QString("MainWinState-%1").arg(accountId)).toByteArray();
763   if(state.isEmpty()) {
764     // Make sure that the default bufferview is shown
765     if(_bufferViews.count())
766       _bufferViews.at(0)->show();
767     return;
768   }
769
770   restoreState(state, accountId);
771   _layoutLoaded = true;
772 }
773
774 void MainWin::saveLayout() {
775   QtUiSettings s;
776   int accountId = _bufferViews.count()? Client::currentCoreAccount().accountId().toInt() : 0; // only save if we still have a layout!
777   if(accountId > 0)
778     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   systemTray()->setState(SystemTray::Passive);
819 }
820
821 void MainWin::userAuthenticationRequired(CoreAccount *account, bool *valid, const QString &errorMessage) {
822   Q_UNUSED(errorMessage)
823   CoreConnectAuthDlg dlg(account, this);
824   *valid = (dlg.exec() == QDialog::Accepted);
825 }
826
827 void MainWin::handleNoSslInClient(bool *accepted) {
828   QMessageBox box(QMessageBox::Warning, tr("Unencrypted Connection"), tr("<b>Your client does not support SSL encryption</b>"),
829                   QMessageBox::Ignore|QMessageBox::Cancel, this);
830   box.setInformativeText(tr("Sensitive data, like passwords, will be transmitted unencrypted to your Quassel core."));
831   box.setDefaultButton(QMessageBox::Ignore);
832   *accepted = box.exec() == QMessageBox::Ignore;
833 }
834
835 void MainWin::handleNoSslInCore(bool *accepted) {
836   QMessageBox box(QMessageBox::Warning, tr("Unencrypted Connection"), tr("<b>Your core does not support SSL encryption</b>"),
837                   QMessageBox::Ignore|QMessageBox::Cancel, this);
838   box.setInformativeText(tr("Sensitive data, like passwords, will be transmitted unencrypted to your Quassel core."));
839   box.setDefaultButton(QMessageBox::Ignore);
840   *accepted = box.exec() == QMessageBox::Ignore;
841
842 }
843
844 #ifdef HAVE_SSL
845
846 void MainWin::handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently) {
847   QString errorString = "<ul>";
848   foreach(const QSslError error, socket->sslErrors())
849     errorString += QString("<li>%1</li>").arg(error.errorString());
850   errorString += "</ul>";
851
852   QMessageBox box(QMessageBox::Warning,
853                   tr("Untrusted Security Certificate"),
854                   tr("<b>The SSL certificate provided by the core at %1 is untrusted for the following reasons:</b>").arg(socket->peerName()),
855                   QMessageBox::Cancel, this);
856   box.setInformativeText(errorString);
857   box.addButton(tr("Continue"), QMessageBox::AcceptRole);
858   box.setDefaultButton(box.addButton(tr("Show Certificate"), QMessageBox::HelpRole));
859
860   QMessageBox::ButtonRole role;
861   do {
862     box.exec();
863     role = box.buttonRole(box.clickedButton());
864     if(role == QMessageBox::HelpRole) {
865       SslInfoDlg dlg(socket, this);
866       dlg.exec();
867     }
868   } while(role == QMessageBox::HelpRole);
869
870   *accepted = role == QMessageBox::AcceptRole;
871   if(*accepted) {
872     QMessageBox box2(QMessageBox::Warning,
873                      tr("Untrusted Security Certificate"),
874                      tr("Would you like to accept this certificate forever without being prompted?"),
875                      0, this);
876     box2.setDefaultButton(box2.addButton(tr("Current Session Only"), QMessageBox::NoRole));
877     box2.addButton(tr("Forever"), QMessageBox::YesRole);
878     box2.exec();
879     *permanently =  box2.buttonRole(box2.clickedButton()) == QMessageBox::YesRole;
880   }
881 }
882
883 #endif /* HAVE_SSL */
884
885 void MainWin::handleCoreConnectionError(const QString &error) {
886   QMessageBox::critical(this, tr("Core Connection Error"), error, QMessageBox::Ok);
887 }
888
889 void MainWin::showCoreConnectionDlg() {
890   CoreConnectDlg dlg(this);
891   if(dlg.exec() == QDialog::Accepted) {
892     AccountId accId = dlg.selectedAccount();
893     if(accId.isValid())
894       Client::coreConnection()->connectToCore(accId);
895   }
896 }
897
898 void MainWin::showCoreConfigWizard(const QVariantList &backends) {
899   CoreConfigWizard *wizard = new CoreConfigWizard(Client::coreConnection(), backends, this);
900
901   wizard->show();
902 }
903
904 void MainWin::showChannelList(NetworkId netId) {
905   ChannelListDlg *channelListDlg = new ChannelListDlg();
906
907   if(!netId.isValid()) {
908     QAction *action = qobject_cast<QAction *>(sender());
909     if(action)
910       netId = action->data().value<NetworkId>();
911   }
912
913   channelListDlg->setAttribute(Qt::WA_DeleteOnClose);
914   channelListDlg->setNetwork(netId);
915   channelListDlg->show();
916 }
917
918 void MainWin::showIgnoreList(QString newRule) {
919   SettingsPageDlg dlg(new IgnoreListSettingsPage(this), this);
920   // prepare config dialog for new rule
921   if(!newRule.isEmpty())
922     qobject_cast<IgnoreListSettingsPage *>(dlg.currentPage())->editIgnoreRule(newRule);
923   dlg.exec();
924 }
925
926 void MainWin::showCoreInfoDlg() {
927   CoreInfoDlg(this).exec();
928 }
929
930 void MainWin::showAwayLog() {
931   if(_awayLog)
932     return;
933   AwayLogFilter *filter = new AwayLogFilter(Client::messageModel());
934   _awayLog = new AwayLogView(filter, 0);
935   filter->setParent(_awayLog);
936   connect(_awayLog, SIGNAL(destroyed()), this, SLOT(awayLogDestroyed()));
937   _awayLog->setAttribute(Qt::WA_DeleteOnClose);
938   _awayLog->show();
939 }
940
941 void MainWin::awayLogDestroyed() {
942   _awayLog = 0;
943 }
944
945 void MainWin::showSettingsDlg() {
946   SettingsDlg *dlg = new SettingsDlg();
947
948   //Category: Interface
949   dlg->registerSettingsPage(new AppearanceSettingsPage(dlg));
950   dlg->registerSettingsPage(new ChatViewSettingsPage(dlg));
951   dlg->registerSettingsPage(new ChatMonitorSettingsPage(dlg));
952   dlg->registerSettingsPage(new ItemViewSettingsPage(dlg));
953   dlg->registerSettingsPage(new BufferViewSettingsPage(dlg));
954   dlg->registerSettingsPage(new InputWidgetSettingsPage(dlg));
955   dlg->registerSettingsPage(new TopicWidgetSettingsPage(dlg));
956   dlg->registerSettingsPage(new HighlightSettingsPage(dlg));
957   dlg->registerSettingsPage(new NotificationsSettingsPage(dlg));
958   dlg->registerSettingsPage(new BacklogSettingsPage(dlg));
959
960   //Category: IRC
961   dlg->registerSettingsPage(new ConnectionSettingsPage(dlg));
962   dlg->registerSettingsPage(new IdentitiesSettingsPage(dlg));
963   dlg->registerSettingsPage(new NetworksSettingsPage(dlg));
964   dlg->registerSettingsPage(new AliasesSettingsPage(dlg));
965   dlg->registerSettingsPage(new IgnoreListSettingsPage(dlg));
966
967   // Category: Remote Cores
968   if(Quassel::runMode() != Quassel::Monolithic) {
969     dlg->registerSettingsPage(new CoreAccountSettingsPage(dlg));
970     dlg->registerSettingsPage(new CoreConnectionSettingsPage(dlg));
971   }
972
973   dlg->show();
974 }
975
976 void MainWin::showAboutDlg() {
977   AboutDlg(this).exec();
978 }
979
980 #ifdef HAVE_KDE
981 void MainWin::showShortcutsDlg() {
982   KShortcutsDialog::configure(QtUi::actionCollection("General"), KShortcutsEditor::LetterShortcutsDisallowed);
983 }
984 #endif
985
986 /********************************************************************************************************/
987
988 bool MainWin::event(QEvent *event) {
989   if(event->type() == QEvent::WindowActivate) {
990     BufferId buffer = Client::bufferModel()->currentBuffer();
991     if(buffer.isValid())
992       QtUi::closeNotifications(buffer);
993   }
994   return QMainWindow::event(event);
995 }
996
997 void MainWin::moveEvent(QMoveEvent *event) {
998   if(!(windowState() & Qt::WindowMaximized))
999     _normalPos = event->pos();
1000
1001   QMainWindow::moveEvent(event);
1002 }
1003
1004 void MainWin::resizeEvent(QResizeEvent *event) {
1005   if(!(windowState() & Qt::WindowMaximized))
1006     _normalSize = event->size();
1007
1008   QMainWindow::resizeEvent(event);
1009 }
1010
1011 void MainWin::closeEvent(QCloseEvent *event) {
1012   QtUiSettings s;
1013   QtUiApplication* app = qobject_cast<QtUiApplication*> qApp;
1014   Q_ASSERT(app);
1015   if(!app->isAboutToQuit() && QtUi::haveSystemTray() && s.value("MinimizeOnClose").toBool()) {
1016     QtUi::hideMainWidget();
1017     event->ignore();
1018   } else {
1019     event->accept();
1020     quit();
1021   }
1022 }
1023
1024 void MainWin::messagesInserted(const QModelIndex &parent, int start, int end) {
1025   Q_UNUSED(parent);
1026
1027   bool hasFocus = QApplication::activeWindow() != 0;
1028
1029   for(int i = start; i <= end; i++) {
1030     QModelIndex idx = Client::messageModel()->index(i, ChatLineModel::ContentsColumn);
1031     if(!idx.isValid()) {
1032       qDebug() << "MainWin::messagesInserted(): Invalid model index!";
1033       continue;
1034     }
1035     Message::Flags flags = (Message::Flags)idx.data(ChatLineModel::FlagsRole).toInt();
1036     if(flags.testFlag(Message::Backlog) || flags.testFlag(Message::Self))
1037       continue;
1038
1039     BufferId bufId = idx.data(ChatLineModel::BufferIdRole).value<BufferId>();
1040     BufferInfo::Type bufType = Client::networkModel()->bufferType(bufId);
1041
1042     if(hasFocus && bufId == Client::bufferModel()->currentBuffer())
1043       continue;
1044
1045     if((flags & Message::Highlight || bufType == BufferInfo::QueryBuffer)
1046       && !(Client::ignoreListManager() && Client::ignoreListManager()->match(idx.data(MessageModel::MessageRole).value<Message>(),
1047                                                                              Client::networkModel()->networkName(bufId))))
1048     {
1049       QModelIndex senderIdx = Client::messageModel()->index(i, ChatLineModel::SenderColumn);
1050       QString sender = senderIdx.data(ChatLineModel::EditRole).toString();
1051       QString contents = idx.data(ChatLineModel::DisplayRole).toString();
1052       AbstractNotificationBackend::NotificationType type;
1053
1054       if(bufType == BufferInfo::QueryBuffer && !hasFocus)
1055         type = AbstractNotificationBackend::PrivMsg;
1056       else if(bufType == BufferInfo::QueryBuffer && hasFocus)
1057         type = AbstractNotificationBackend::PrivMsgFocused;
1058       else if(flags & Message::Highlight && !hasFocus)
1059         type = AbstractNotificationBackend::Highlight;
1060       else
1061         type = AbstractNotificationBackend::HighlightFocused;
1062
1063       QtUi::invokeNotification(bufId, type, sender, contents);
1064     }
1065   }
1066 }
1067
1068 void MainWin::currentBufferChanged(BufferId buffer) {
1069   if(buffer.isValid())
1070     QtUi::closeNotifications(buffer);
1071 }
1072
1073 void MainWin::clientNetworkCreated(NetworkId id) {
1074   const Network *net = Client::network(id);
1075   QAction *act = new QAction(net->networkName(), this);
1076   act->setObjectName(QString("NetworkAction-%1").arg(id.toInt()));
1077   act->setData(QVariant::fromValue<NetworkId>(id));
1078   connect(net, SIGNAL(updatedRemotely()), this, SLOT(clientNetworkUpdated()));
1079   connect(act, SIGNAL(triggered()), this, SLOT(connectOrDisconnectFromNet()));
1080
1081   QAction *beforeAction = 0;
1082   foreach(QAction *action, _networksMenu->actions()) {
1083     if(!action->data().isValid())  // ignore stock actions
1084       continue;
1085     if(net->networkName().localeAwareCompare(action->text()) < 0) {
1086       beforeAction = action;
1087       break;
1088     }
1089   }
1090   _networksMenu->insertAction(beforeAction, act);
1091 }
1092
1093 void MainWin::clientNetworkUpdated() {
1094   const Network *net = qobject_cast<const Network *>(sender());
1095   if(!net)
1096     return;
1097
1098   QAction *action = findChild<QAction *>(QString("NetworkAction-%1").arg(net->networkId().toInt()));
1099   if(!action)
1100     return;
1101
1102   action->setText(net->networkName());
1103
1104   switch(net->connectionState()) {
1105   case Network::Initialized:
1106     action->setIcon(SmallIcon("network-connect"));
1107     break;
1108   case Network::Disconnected:
1109     action->setIcon(SmallIcon("network-disconnect"));
1110     break;
1111   default:
1112     action->setIcon(SmallIcon("network-wired"));
1113   }
1114 }
1115
1116 void MainWin::clientNetworkRemoved(NetworkId id) {
1117   QAction *action = findChild<QAction *>(QString("NetworkAction-%1").arg(id.toInt()));
1118   if(!action)
1119     return;
1120
1121   action->deleteLater();
1122 }
1123
1124 void MainWin::connectOrDisconnectFromNet() {
1125   QAction *act = qobject_cast<QAction *>(sender());
1126   if(!act) return;
1127   const Network *net = Client::network(act->data().value<NetworkId>());
1128   if(!net) return;
1129   if(net->connectionState() == Network::Disconnected) net->requestConnect();
1130   else net->requestDisconnect();
1131 }
1132
1133 void MainWin::on_jumpHotBuffer_triggered() {
1134   if(!_bufferHotList->rowCount())
1135     return;
1136
1137   QModelIndex topIndex = _bufferHotList->index(0, 0);
1138   BufferId bufferId = _bufferHotList->data(topIndex, NetworkModel::BufferIdRole).value<BufferId>();
1139   Client::bufferModel()->switchToBuffer(bufferId);
1140 }
1141
1142 void MainWin::on_actionDebugNetworkModel_triggered() {
1143   QTreeView *view = new QTreeView;
1144   view->setAttribute(Qt::WA_DeleteOnClose);
1145   view->setWindowTitle("Debug NetworkModel View");
1146   view->setModel(Client::networkModel());
1147   view->setColumnWidth(0, 250);
1148   view->setColumnWidth(1, 250);
1149   view->setColumnWidth(2, 80);
1150   view->resize(610, 300);
1151   view->show();
1152 }
1153
1154 void MainWin::on_actionDebugHotList_triggered() {
1155   QTreeView *view = new QTreeView;
1156   view->setAttribute(Qt::WA_DeleteOnClose);
1157   view->setModel(_bufferHotList);
1158   view->show();
1159 }
1160
1161 void MainWin::on_actionDebugBufferViewOverlay_triggered() {
1162   DebugBufferViewOverlay *overlay = new DebugBufferViewOverlay(0);
1163   overlay->setAttribute(Qt::WA_DeleteOnClose);
1164   overlay->show();
1165 }
1166
1167 void MainWin::on_actionDebugMessageModel_triggered() {
1168   QTableView *view = new QTableView(0);
1169   DebugMessageModelFilter *filter = new DebugMessageModelFilter(view);
1170   filter->setSourceModel(Client::messageModel());
1171   view->setModel(filter);
1172   view->setAttribute(Qt::WA_DeleteOnClose, true);
1173   view->verticalHeader()->hide();
1174   view->horizontalHeader()->setStretchLastSection(true);
1175   view->show();
1176 }
1177
1178 void MainWin::on_actionDebugLog_triggered() {
1179   DebugLogWidget *logWidget = new DebugLogWidget(0);
1180   logWidget->show();
1181 }
1182
1183 void MainWin::showStatusBarMessage(const QString &message) {
1184   statusBar()->showMessage(message, 10000);
1185 }
1186