X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.h;h=7a67d5b76d08498e29aeabe9ff7861eba895eb1d;hp=d77f17861cad6fa553a88a5a4fbec7eaba95657f;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hpb=32a1f050b3292478f3b130c16ad66f22e6eb25c8 diff --git a/src/uisupport/nickview.h b/src/uisupport/nickview.h index d77f1786..7a67d5b7 100644 --- a/src/uisupport/nickview.h +++ b/src/uisupport/nickview.h @@ -25,50 +25,34 @@ #include "bufferinfo.h" -class NickView : public QTreeView { - Q_OBJECT +class NickView : public QTreeView +{ + Q_OBJECT public: - NickView(QWidget *parent = 0); + NickView(QWidget *parent = 0); protected: - virtual void rowsInserted(const QModelIndex &parent, int start, int end); - virtual void customEvent(QEvent *event); + virtual void rowsInserted(const QModelIndex &parent, int start, int end); - //! This reimplementation ensures that the current index is first in list - virtual QModelIndexList selectedIndexes() const; + //! This reimplementation ensures that the current index is first in list + virtual QModelIndexList selectedIndexes() const; + + void unanimatedExpandAll(); 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); + virtual void setModel(QAbstractItemModel *model); + virtual void setRootIndex(const QModelIndex &index); + void init(); + void showContextMenu(const QPoint &pos); + void startQuery(const QModelIndex &modelIndex); signals: - void selectionUpdated(); + void selectionUpdated(); private: - + friend class NickListWidget; // needs selectedIndexes() }; -// ****************************** -// NickViewDelgate -// ****************************** -#include - -class NickViewDelegate : public QStyledItemDelegate { - Q_OBJECT - -public: - NickViewDelegate(QObject *parent = 0); - -protected: - virtual void initStyleOption(QStyleOptionViewItem *option, const QModelIndex &index) const; - -private: - QColor _FgOnlineStatus; - QColor _FgAwayStatus; -}; #endif