X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Fcolumnhandleitem.cpp;h=7a93c4f6217560a48c75de67f7bebbdb17059866;hb=17a68937d25404ddb804f443629313a7c873dbe1;hp=bcc3c7c9f0bae7f98d46c5467d39240b823c4d53;hpb=8efcbd43a43db3d5da70bee13b72b4e11980a75b;p=quassel.git diff --git a/src/qtui/columnhandleitem.cpp b/src/qtui/columnhandleitem.cpp index bcc3c7c9..7a93c4f6 100644 --- a/src/qtui/columnhandleitem.cpp +++ b/src/qtui/columnhandleitem.cpp @@ -18,21 +18,23 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include "columnhandleitem.h" + +#include #include #include #include #include - -#include "columnhandleitem.h" +#include ColumnHandleItem::ColumnHandleItem(qreal w, QGraphicsItem *parent) : QGraphicsItem(parent), _width(w), _hover(0), - _timeLine(150), _moving(false), _minXPos(0), - _maxXPos(0) + _maxXPos(0), + _timeLine(150) { setAcceptsHoverEvents(true); setZValue(10); @@ -42,7 +44,7 @@ ColumnHandleItem::ColumnHandleItem(qreal w, QGraphicsItem *parent) } void ColumnHandleItem::setXPos(qreal xpos) { - setPos(xpos - width()/2, 0); + setPos(xpos, 0); } void ColumnHandleItem::setXLimits(qreal min, qreal max) { @@ -85,7 +87,7 @@ void ColumnHandleItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { if(_moving) { _moving = false; setCursor(QCursor(Qt::OpenHandCursor)); - emit positionChanged(x() + width()/2); + emit positionChanged(x()); event->accept(); } else { event->ignore(); @@ -117,10 +119,13 @@ void ColumnHandleItem::paint(QPainter *painter, const QStyleOptionGraphicsItem * Q_UNUSED(option); Q_UNUSED(widget); - QLinearGradient gradient(0, 0, width(), 0); - gradient.setColorAt(0.25, Qt::transparent); - gradient.setColorAt(0.5, QColor(0, 0, 0, _hover * 200)); - gradient.setColorAt(0.75, Qt::transparent); + QLinearGradient gradient(boundingRect().topLeft(), boundingRect().topRight()); + QColor rulerColor = QApplication::palette().windowText().color(); + rulerColor.setAlphaF(_hover); + gradient.setColorAt(0, Qt::transparent); + gradient.setColorAt(0.4, rulerColor); + gradient.setColorAt(0.6, rulerColor); + gradient.setColorAt(1, Qt::transparent); painter->fillRect(boundingRect(), gradient); }