X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fbufferview.h;h=ae1bb37ad0dd147bf4181ec3d5094aaeefed2552;hb=b5385b3ddf6f0e8df8f0af7275b59dcc1fcd0ed1;hp=4a752c7058708e098bb3290a1e678b00afaf6cc3;hpb=8699dd758516d0ded076811e8ea656adc95e69d0;p=quassel.git diff --git a/src/uisupport/bufferview.h b/src/uisupport/bufferview.h index 4a752c70..ae1bb37a 100644 --- a/src/uisupport/bufferview.h +++ b/src/uisupport/bufferview.h @@ -36,16 +36,23 @@ public: BufferView(QWidget *parent = 0); void init(); void setModel(QAbstractItemModel *model); - void setFilteredModel(QAbstractItemModel *model, BufferViewFilter::Modes mode, QList nets); + void setFilteredModel(QAbstractItemModel *model, BufferViewFilter::Modes mode, QList nets); signals: void removeBuffer(const QModelIndex &); - + +protected: + virtual void keyPressEvent(QKeyEvent *); + virtual void rowsInserted (const QModelIndex & parent, int start, int end); + virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight); + virtual void wheelEvent(QWheelEvent *); + virtual QSize sizeHint() const; + private slots: void joinChannel(const QModelIndex &index); - void keyPressEvent(QKeyEvent *); - void rowsInserted (const QModelIndex & parent, int start, int end); void toggleHeader(bool checked); + void showContextMenu(const QPoint &); + };