X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fcolumnhandleitem.cpp;h=e8dd97e2e91dc6acab465b771075441228f1d8eb;hp=16cec89dbf1ce34b292d686ee59ff02df05b21d8;hb=0072d69c3387cad4e393968647e0f2894aed6877;hpb=39e2a78383295f86c5aa2dadbeac6f02b53eb7a4 diff --git a/src/qtui/columnhandleitem.cpp b/src/qtui/columnhandleitem.cpp index 16cec89d..e8dd97e2 100644 --- a/src/qtui/columnhandleitem.cpp +++ b/src/qtui/columnhandleitem.cpp @@ -18,18 +18,40 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include #include +#include #include +#include + #include "columnhandleitem.h" -ColumnHandleItem::ColumnHandleItem(qreal w, QGraphicsItem *parent) : QGraphicsItem(parent) { - _width = w; +ColumnHandleItem::ColumnHandleItem(qreal w, QGraphicsItem *parent) + : QGraphicsItem(parent), + _width(w), + _hover(0), + _timeLine(150), + _moving(false), + _minXPos(0), + _maxXPos(0) +{ + setAcceptsHoverEvents(true); + setZValue(10); + setCursor(QCursor(Qt::OpenHandCursor)); + connect(&_timeLine, SIGNAL(valueChanged(qreal)), this, SLOT(hoverChanged(qreal))); } void ColumnHandleItem::setXPos(qreal xpos) { - setPos(xpos - width()/2, (qreal)0); + setPos(xpos - width()/2, 0); +} + +void ColumnHandleItem::setXLimits(qreal min, qreal max) { + _minXPos = min; + _maxXPos = max; + //if(x() < min) setPos(min, 0); + //else if(x() > max) setPos(max - width(), 0); } void ColumnHandleItem::sceneRectChanged(const QRectF &rect) { @@ -37,11 +59,69 @@ void ColumnHandleItem::sceneRectChanged(const QRectF &rect) { prepareGeometryChange(); } -void ColumnHandleItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) { - Q_UNUSED(option); - Q_UNUSED(widget); +void ColumnHandleItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) { + if(event->buttons() & Qt::LeftButton && _moving) { + if(contains(event->lastPos())) { + qreal newx = x() + (event->scenePos() - event->lastScenePos()).x(); + if(newx < _minXPos) newx = _minXPos; + else if(newx + width() > _maxXPos) newx = _maxXPos - width(); + setPos(newx, 0); + } + event->accept(); + } else { + event->ignore(); + } +} - painter->drawRect(boundingRect()); +void ColumnHandleItem::mousePressEvent(QGraphicsSceneMouseEvent *event) { + if(event->buttons() & Qt::LeftButton) { + setCursor(QCursor(Qt::ClosedHandCursor)); + _moving = true; + event->accept(); + } else { + event->ignore(); + } +} +void ColumnHandleItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { + if(_moving) { + _moving = false; + setCursor(QCursor(Qt::OpenHandCursor)); + event->accept(); + } else { + event->ignore(); + } +} +void ColumnHandleItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event) { + Q_UNUSED(event); + + _timeLine.setDirection(QTimeLine::Forward); + if(_timeLine.state() != QTimeLine::Running) + _timeLine.start(); } + +void ColumnHandleItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) { + Q_UNUSED(event); + + _timeLine.setDirection(QTimeLine::Backward); + if(_timeLine.state() != QTimeLine::Running) + _timeLine.start(); +} + +void ColumnHandleItem::hoverChanged(qreal value) { + _hover = value; + update(); +} + +void ColumnHandleItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) { + 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); + painter->fillRect(boundingRect(), gradient); +} +