X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuisupport%2Fnickview.h;h=7a67d5b76d08498e29aeabe9ff7861eba895eb1d;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hp=e722537cfd17265e8cabcda2c5693ab737df4d55;hpb=df38e82953be7b676871f7215053a005decb90d1;p=quassel.git diff --git a/src/uisupport/nickview.h b/src/uisupport/nickview.h index e722537c..7a67d5b7 100644 --- a/src/uisupport/nickview.h +++ b/src/uisupport/nickview.h @@ -25,31 +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() + friend class NickListWidget; // needs selectedIndexes() }; + #endif