Added Socks5 and HTTP-Proxy support to the client.
[quassel.git] / src / qtui / nicklistdock.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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
21 #include "nicklistdock.h"
22 #include "qtuisettings.h"
23
24 #include <QAction>
25 #include <QDebug>
26 #include <QEvent>
27 #include <QAbstractButton>
28
29 NickListDock::NickListDock(const QString &title, QWidget *parent)
30   : QDockWidget(title, parent)
31 {
32   QAction *toggleView = toggleViewAction();
33   disconnect(toggleView, SIGNAL(triggered(bool)), this, 0);
34
35   foreach(QAbstractButton *button, findChildren<QAbstractButton *>()) {
36     if(disconnect(button, SIGNAL(clicked()), this, SLOT(close())))
37       connect(button, SIGNAL(clicked()), toggleView, SLOT(trigger()));
38   }
39
40   installEventFilter(this);
41
42   toggleView->setChecked(QtUiSettings().value("ShowNickList", QVariant(true)).toBool());
43 }
44
45 NickListDock::~NickListDock() {
46   QtUiSettings().setValue("ShowNickList", toggleViewAction()->isChecked());
47 }
48
49 bool NickListDock::eventFilter(QObject *watched, QEvent *event) {
50   Q_UNUSED(watched)
51   if(event->type() != QEvent::Hide && event->type() != QEvent::Show)
52     return false;
53
54   emit visibilityChanged(event->type() == QEvent::Show);
55
56   return true;
57 }