X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Fbufferviewwidget.cpp;h=9eeba7cec0faee8a0f9459928036e5e35851beb0;hp=2ef57112b1438e97666a7a34ba1aeb7fffe62bef;hb=c0bbc724cda7acf652d9d2ce80605ebb53c4a2ff;hpb=9b577202cff410b8a2f179fd9f3e33353e913cc7 diff --git a/src/qtopia/bufferviewwidget.cpp b/src/qtopia/bufferviewwidget.cpp index 2ef57112..9eeba7ce 100644 --- a/src/qtopia/bufferviewwidget.cpp +++ b/src/qtopia/bufferviewwidget.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * 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) any later version. * + * (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 * @@ -25,7 +25,7 @@ BufferViewWidget::BufferViewWidget(QWidget *parent) : QDialog(parent) { ui.setupUi(this); setModal(true); - setStyleSheet("background-color: rgba(255, 255, 255, 40%); color: rgb(0, 0, 0); font-size: 5pt;"); + setStyleSheet("background-color: rgba(220, 220, 255, 40%); 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 :( @@ -33,12 +33,13 @@ BufferViewWidget::BufferViewWidget(QWidget *parent) : QDialog(parent) { ui.tabWidget->removeTab(0); delete w; - addPage(tr("Bufs"), BufferViewFilter::AllNets, QList()); + 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()); - connect(Client::bufferModel(), SIGNAL(bufferSelected(Buffer *)), this, SLOT(accept())); + // this sometimes deadlocks, so we have to hide the dialog from the outside: + //connect(Client::bufferModel(), SIGNAL(bufferSelected(Buffer *)), this, SLOT(accept())); } @@ -53,3 +54,7 @@ void BufferViewWidget::addPage(const QString &title, const BufferViewFilter::Mod Client::bufferModel()->synchronizeView(view); ui.tabWidget->addTab(view, title); } + +void BufferViewWidget::accept() { + QDialog::accept(); +}