Added nicklist for QuasselTopia. Various cosmetic and visual fixes.
[quassel.git] / src / qtopia / bufferviewwidget.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
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) any later version.                                   *
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 "bufferviewwidget.h"
22 #include "client.h"
23
24
25 BufferViewWidget::BufferViewWidget(QWidget *parent) : QDialog(parent) {
26   ui.setupUi(this);
27   setModal(true);
28   setStyleSheet("background-color: rgba(220, 220, 255, 40%); color: rgb(0, 0, 0); font-size: 5pt;");
29   //ui.tabWidget->tabBar()->setStyleSheet("font-size: 5pt;");
30
31   // get rid of the default tab page designer forces upon us :(
32   QWidget *w = ui.tabWidget->widget(0);
33   ui.tabWidget->removeTab(0);
34   delete w;
35
36   addPage(tr("Bufs"), BufferViewFilter::AllNets, QList<uint>());
37   addPage(tr("Chans"), BufferViewFilter::AllNets|BufferViewFilter::NoQueries|BufferViewFilter::NoServers, QList<uint>());
38   addPage(tr("Queries"), BufferViewFilter::AllNets|BufferViewFilter::NoChannels|BufferViewFilter::NoServers, QList<uint>());
39   addPage(tr("Nets"), BufferViewFilter::AllNets|BufferViewFilter::NoChannels|BufferViewFilter::NoQueries, QList<uint>());
40
41   //connect(Client::bufferModel(), SIGNAL(bufferSelected(Buffer *)), this, SLOT(accept()));
42
43 }
44
45 BufferViewWidget::~BufferViewWidget() {
46
47
48 }
49
50 void BufferViewWidget::addPage(const QString &title, const BufferViewFilter::Modes &mode, const QList<uint> &nets) {
51   BufferView *view = new BufferView(ui.tabWidget);
52   view->setFilteredModel(Client::bufferModel(), mode, nets);
53   Client::bufferModel()->synchronizeView(view);
54   ui.tabWidget->addTab(view, title);
55 }
56
57 void BufferViewWidget::accept() {
58   qDebug() << "accepting";
59   QDialog::accept();
60   //hide();
61   qDebug() << "...done.";
62 }