X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fnickmodel.h;h=4baa1117b1f3555178b29dc5feed0486230ac5df;hp=b49ebf1da430f45e849d6314998e68a1e0237753;hb=f9fc50a5e043668a2525a6c0903ea339d4ba05b7;hpb=e671e9da1edaab37ec403f575979f9a92a766e9a diff --git a/src/client/nickmodel.h b/src/client/nickmodel.h index b49ebf1d..4baa1117 100644 --- a/src/client/nickmodel.h +++ b/src/client/nickmodel.h @@ -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 * @@ -22,6 +22,7 @@ #define _NICKMODEL_H_ #include +#include #include class IrcChannel; @@ -32,12 +33,14 @@ class IrcUser; * levels, where the top-level items are the categories (such as Ops, Voiced etc), and the second-level items * the actual nicks/users. Several roles are provided to access information about a nick. * - * Note that the nicks are not sorted in any way. Use a QSortFilterProxyModel to do that instead. + * Note that the nicks are not sorted in any way. Use a FilteredNickModel instead. */ class NickModel : public QAbstractItemModel { Q_OBJECT public: + enum NickModelRole { SortKeyRole = Qt::UserRole }; + NickModel(IrcChannel *channel = 0, QObject *parent = 0); virtual ~NickModel(); @@ -56,7 +59,7 @@ class NickModel : public QAbstractItemModel { int userCategory(IrcUser *) const; public slots: - void setIrcChannel(IrcChannel *); + void setIrcChannel(IrcChannel *chan = 0); void addUser(IrcUser *); void removeUser(IrcUser *); void removeUser(const QModelIndex &); @@ -70,4 +73,23 @@ class NickModel : public QAbstractItemModel { }; +//! This ProxyModel can be used on top of a NickModel in order to provide a sorted nicklist and to hide unused categories. +class FilteredNickModel : public QSortFilterProxyModel { + Q_OBJECT + + public: + FilteredNickModel(QObject *parent = 0); + virtual ~FilteredNickModel(); + + virtual void setSourceModel(QAbstractItemModel *model); + + private slots: + void sourceRowsInserted(const QModelIndex &, int, int); + void sourceRowsRemoved(const QModelIndex &, int, int); + + protected: + virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const; + +}; + #endif