X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fbufferviewfilter.cpp;h=d30c3133d0c71ea1540e91e7a7f0d939d6140bcc;hb=42ce41212deabaf284cc496760cb901b9e3b4dc4;hp=84dc447c158937f1def4f6d81c48a47de045dcf3;hpb=8a618fb4514d83a76cec8e7cd1319b935366a616;p=quassel.git diff --git a/src/qtui/bufferviewfilter.cpp b/src/qtui/bufferviewfilter.cpp index 84dc447c..d30c3133 100644 --- a/src/qtui/bufferviewfilter.cpp +++ b/src/qtui/bufferviewfilter.cpp @@ -23,38 +23,22 @@ /***************************************** * The Filter for the Tree View *****************************************/ -BufferViewFilter::BufferViewFilter(QAbstractItemModel *model, const Modes &filtermode, const QStringList &nets) : QSortFilterProxyModel(model) { +BufferViewFilter::BufferViewFilter(QAbstractItemModel *model, const Modes &filtermode, const QStringList &nets) + : QSortFilterProxyModel(model), + mode(filtermode), + networks(nets) +{ setSourceModel(model); setSortRole(BufferTreeModel::BufferNameRole); setSortCaseSensitivity(Qt::CaseInsensitive); - - mode = filtermode; - networks = nets; connect(model, SIGNAL(invalidateFilter()), this, SLOT(invalidateMe())); - connect(model, SIGNAL(selectionChanged(const QModelIndex &)), - this, SLOT(select(const QModelIndex &))); - - connect(this, SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), - model, SLOT(changeCurrent(const QModelIndex &, const QModelIndex &))); } void BufferViewFilter::invalidateMe() { invalidateFilter(); } -void BufferViewFilter::select(const QModelIndex &index) { - emit selectionChanged(mapFromSource(index)); -} - -void BufferViewFilter::changeCurrent(const QModelIndex ¤t, const QModelIndex &previous) { - emit currentChanged(mapToSource(current), mapToSource(previous)); -} - -void BufferViewFilter::doubleClickReceived(const QModelIndex &clicked) { - emit doubleClicked(mapToSource(clicked)); -} - void BufferViewFilter::dropEvent(QDropEvent *event) { const QMimeData *data = event->mimeData(); if(!(mode & FullCustom)) @@ -109,9 +93,9 @@ void BufferViewFilter::removeBuffer(const QModelIndex &index) { bool BufferViewFilter::filterAcceptBuffer(const QModelIndex &source_bufferIndex) const { Buffer::Type bufferType = (Buffer::Type) source_bufferIndex.data(BufferTreeModel::BufferTypeRole).toInt(); - if((mode & NoChannels) && bufferType == Buffer::ChannelBuffer) return false; - if((mode & NoQueries) && bufferType == Buffer::QueryBuffer) return false; - if((mode & NoServers) && bufferType == Buffer::ServerBuffer) return false; + if((mode & NoChannels) && bufferType == Buffer::ChannelType) return false; + if((mode & NoQueries) && bufferType == Buffer::QueryType) return false; + if((mode & NoServers) && bufferType == Buffer::StatusType) return false; bool isActive = source_bufferIndex.data(BufferTreeModel::BufferActiveRole).toBool(); if((mode & NoActive) && isActive) return false;