X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuisupport%2Fnickview.h;h=45d03f17676e508b24462524398f59c515bdeb16;hb=731ec69d4608ba95e3ae4f154b8ca1852e1db2e5;hp=18a2bd655ca0fcd98f8244723d908cdbdda823ad;hpb=47f8eca0275b02a19a36f098faaea0a3bf25460c;p=quassel.git diff --git a/src/uisupport/nickview.h b/src/uisupport/nickview.h index 18a2bd65..45d03f17 100644 --- a/src/uisupport/nickview.h +++ b/src/uisupport/nickview.h @@ -18,43 +18,34 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _NICKVIEW_H_ -#define _NICKVIEW_H_ - +#ifndef NICKVIEW_H_ +#define NICKVIEW_H_ #include -#include "types.h" #include "bufferinfo.h" - -class NickModel; -class FilteredNickModel; -class QSortFilterProxyModel; - class NickView : public QTreeView { Q_OBJECT - public: - NickView(QWidget *parent = 0); - virtual ~NickView(); +public: + NickView(QWidget *parent = 0); - protected: - virtual void rowsInserted(const QModelIndex &, int, int); - virtual QSize sizeHint() const; +protected: + virtual void rowsInserted(const QModelIndex &parent, int start, int end); + virtual void customEvent(QEvent *event); - public slots: - void setModel(QAbstractItemModel *model); - void init(); - void showContextMenu(const QPoint & pos); - void startQuery(const QModelIndex & modelIndex); - - private: - BufferInfo bufferInfoFromModelIndex(const QModelIndex & index); - QString nickFromModelIndex(const QModelIndex & index); - void executeCommand(const BufferInfo & bufferInfo, const QString & command); +public slots: + virtual void setModel(QAbstractItemModel *model); + virtual void setRootIndex(const QModelIndex &index); + void init(); + void showContextMenu(const QPoint & pos); + void startQuery(const QModelIndex & modelIndex); +private: + BufferInfo bufferInfoFromModelIndex(const QModelIndex & index); + QString nickFromModelIndex(const QModelIndex & index); + void executeCommand(const BufferInfo & bufferInfo, const QString & command); }; - #endif