X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fcolumnhandleitem.h;h=c8fee6e9b37c237c85e003111dcddc00a2920c42;hp=ef2636c95025af22233ce507c88640b597fc5d17;hb=e8a39b4c3c92e193ab861a3fea84a261bb6fbd24;hpb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f diff --git a/src/qtui/columnhandleitem.h b/src/qtui/columnhandleitem.h index ef2636c9..c8fee6e9 100644 --- a/src/qtui/columnhandleitem.h +++ b/src/qtui/columnhandleitem.h @@ -34,10 +34,10 @@ class ColumnHandleItem : public QGraphicsObject public : ColumnHandleItem(qreal width, QGraphicsItem *parent = nullptr); - virtual inline int type() const { return ChatScene::ColumnHandleType; } + inline int type() const override { return ChatScene::ColumnHandleType; } inline qreal width() const { return _width; } - inline QRectF boundingRect() const { return _boundingRect; } + inline QRectF boundingRect() const override { return _boundingRect; } inline qreal sceneLeft() const { return _sceneLeft; } inline qreal sceneRight() const { return _sceneRight; } @@ -46,18 +46,18 @@ public : void setXPos(qreal xpos); void setXLimits(qreal min, qreal max); - void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr); + void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr) override; public slots: void sceneRectChanged(const QRectF &); void setOpacity(qreal opacity); protected: - void hoverEnterEvent(QGraphicsSceneHoverEvent *event); - void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); - void mouseMoveEvent(QGraphicsSceneMouseEvent *event); - void mousePressEvent(QGraphicsSceneMouseEvent *event); - void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); + void hoverEnterEvent(QGraphicsSceneHoverEvent *event) override; + void hoverLeaveEvent(QGraphicsSceneHoverEvent *event) override; + void mouseMoveEvent(QGraphicsSceneMouseEvent *event) override; + void mousePressEvent(QGraphicsSceneMouseEvent *event) override; + void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override; signals: void positionChanged(qreal x);