X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.h;h=7a67d5b76d08498e29aeabe9ff7861eba895eb1d;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hp=a95798cbade3841f6c20a690717baac069f00c5e;hpb=61c8d84d1c849373e0f115dc748ed45cff95287d;p=quassel.git diff --git a/src/uisupport/nickview.h b/src/uisupport/nickview.h index a95798cb..7a67d5b7 100644 --- a/src/uisupport/nickview.h +++ b/src/uisupport/nickview.h @@ -25,32 +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 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(); + 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