X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fcolumnhandleitem.h;h=9274473f77432ca42258087147f2bed71aecb49c;hb=c6a9c963d53a171394b5c25d9925661e2788cec3;hp=9cc131b2996b4e319f25d35f5f02350f7de23343;hpb=62192fb6cd9cc211b5b9fe844c9b4c2f98f923cc;p=quassel.git diff --git a/src/qtui/columnhandleitem.h b/src/qtui/columnhandleitem.h index 9cc131b2..9274473f 100644 --- a/src/qtui/columnhandleitem.h +++ b/src/qtui/columnhandleitem.h @@ -1,5 +1,5 @@ /*************************************************************************** -* Copyright (C) 2005-08 by the Quassel IRC Team * +* Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -26,11 +26,14 @@ #include #include +#include "chatscene.h" + class ColumnHandleItem : public QObject, public QGraphicsItem { Q_OBJECT public: ColumnHandleItem(qreal width, QGraphicsItem *parent = 0); + virtual inline int type() const { return ChatScene::ColumnHandleType; } inline qreal width() const { return _width; } inline QRectF boundingRect() const { return _boundingRect; } @@ -38,13 +41,13 @@ public: inline qreal sceneRight() const { return _sceneRight; } void setXPos(qreal xpos); + void setXLimits(qreal min, qreal max); void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); - void setXLimits(qreal min, qreal max); - public slots: void sceneRectChanged(const QRectF &); + inline void setColor(const QColor &color) { _rulerColor = color; } protected: void hoverEnterEvent(QGraphicsSceneHoverEvent *event); @@ -67,6 +70,7 @@ private: bool _moving; qreal _minXPos, _maxXPos; QTimeLine _timeLine; + QColor _rulerColor; }; #endif