X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=dev-notes%2Fobsolete%2Fqtopia%2Fbufferviewwidget.cpp;fp=dev-notes%2Fobsolete%2Fqtopia%2Fbufferviewwidget.cpp;h=0000000000000000000000000000000000000000;hp=4ee2c9894bb560bbdef4a81aa62056bb5b6b9812;hb=2eccf4bb86b2b1d444bfebc83fe081ebe06331a6;hpb=baf2ec741b854de2f14adf96c5875c7f4a330f1b diff --git a/dev-notes/obsolete/qtopia/bufferviewwidget.cpp b/dev-notes/obsolete/qtopia/bufferviewwidget.cpp deleted file mode 100644 index 4ee2c989..00000000 --- a/dev-notes/obsolete/qtopia/bufferviewwidget.cpp +++ /dev/null @@ -1,61 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * - * devel@quassel-irc.org * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) version 3. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "bufferviewwidget.h" -#include "client.h" -#include "buffermodel.h" - - -BufferViewWidget::BufferViewWidget(QWidget *parent) : QDialog(parent) { - ui.setupUi(this); - setModal(true); - //setStyleSheet("background-color: rgb(220, 220, 255, 70%); color: rgb(0, 0, 0); font-size: 5pt;"); - //ui.tabWidget->tabBar()->setStyleSheet("font-size: 5pt;"); - - // get rid of the default tab page designer forces upon us :( - QWidget *w = ui.tabWidget->widget(0); - ui.tabWidget->removeTab(0); - delete w; - - addPage(tr("All"), BufferViewFilter::AllNets, QList()); - addPage(tr("Chans"), BufferViewFilter::AllNets|BufferViewFilter::NoQueries|BufferViewFilter::NoServers, QList()); - addPage(tr("Queries"), BufferViewFilter::AllNets|BufferViewFilter::NoChannels|BufferViewFilter::NoServers, QList()); - addPage(tr("Nets"), BufferViewFilter::AllNets|BufferViewFilter::NoChannels|BufferViewFilter::NoQueries, QList()); - - // this sometimes deadlocks, so we have to hide the dialog from the outside: - //connect(Client::bufferModel()->standardSelectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), this, SLOT(accept())); -} - -BufferViewWidget::~BufferViewWidget() { - - -} - -void BufferViewWidget::addPage(const QString &title, const BufferViewFilter::Modes &mode, const QList &nets) { - BufferView *view = new BufferView(ui.tabWidget); - view->setStyleSheet("background-color: rgb(220, 220, 255, 70%); color: rgb(0, 0, 0); font-size: 5pt;"); - view->setFilteredModel(Client::bufferModel(), mode, nets); - Client::bufferModel()->synchronizeView(view); - ui.tabWidget->addTab(view, title); -} - -void BufferViewWidget::accept() { - QDialog::accept(); -}