X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fcolumnhandleitem.h;h=9cc131b2996b4e319f25d35f5f02350f7de23343;hb=6d55e659fa87565462d7f3e92da594fdcf9708a2;hp=dc1251201ef2958def88c7021cc4540661daefdb;hpb=9806418efa4c59dae71fd628ea9c57453ca81434;p=quassel.git diff --git a/src/qtui/columnhandleitem.h b/src/qtui/columnhandleitem.h index dc125120..9cc131b2 100644 --- a/src/qtui/columnhandleitem.h +++ b/src/qtui/columnhandleitem.h @@ -31,28 +31,41 @@ class ColumnHandleItem : public QObject, public QGraphicsItem { public: ColumnHandleItem(qreal width, QGraphicsItem *parent = 0); - + inline qreal width() const { return _width; } - inline QRectF boundingRect() const { return QRectF(0, 0, _width, scene()->height()); } + inline QRectF boundingRect() const { return _boundingRect; } + inline qreal sceneLeft() const { return _sceneLeft; } + inline qreal sceneRight() const { return _sceneRight; } + void setXPos(qreal xpos); - + void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); - void mouseMoveEvent(QGraphicsSceneMouseEvent *event); - void mousePressEvent(QGraphicsSceneMouseEvent *event); - void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); - + + void setXLimits(qreal min, qreal max); + +public slots: void sceneRectChanged(const QRectF &); protected: void hoverEnterEvent(QGraphicsSceneHoverEvent *event); void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); + void mouseMoveEvent(QGraphicsSceneMouseEvent *event); + void mousePressEvent(QGraphicsSceneMouseEvent *event); + void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); + +signals: + void positionChanged(qreal x); private slots: void hoverChanged(qreal value); private: qreal _width; + qreal _sceneLeft, _sceneRight; + QRectF _boundingRect; qreal _hover; + bool _moving; + qreal _minXPos, _maxXPos; QTimeLine _timeLine; };