1 /***************************************************************************
2 * Copyright (C) 2005-2015 by the Quassel Project *
3 * devel@quassel-irc.org *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) version 3. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
22 #include "columnhandleitem.h"
24 #include <QApplication>
26 #include <QGraphicsSceneHoverEvent>
30 ColumnHandleItem::ColumnHandleItem(qreal w, QGraphicsItem *parent)
31 : QGraphicsObject(parent),
33 _boundingRect(-_width/2, 0, _width, 0),
39 _animation(new QPropertyAnimation(this, "opacity", this))
41 setAcceptHoverEvents(true);
43 setCursor(QCursor(Qt::OpenHandCursor));
45 _animation->setStartValue(0);
46 _animation->setEndValue(1);
47 _animation->setDirection(QPropertyAnimation::Forward);
48 _animation->setDuration(350);
49 _animation->setEasingCurve(QEasingCurve::InOutSine);
51 //connect(&_timeLine, SIGNAL(valueChanged(qreal)), this, SLOT(hoverChanged(qreal)));
55 void ColumnHandleItem::setXPos(qreal xpos)
58 QRectF sceneBRect = _boundingRect.translated(x(), 0);
59 _sceneLeft = sceneBRect.left();
60 _sceneRight = sceneBRect.right();
61 emit positionChanged(xpos);
65 void ColumnHandleItem::setXLimits(qreal min, qreal max)
69 //if(x() < min) setPos(min, 0);
70 //else if(x() > max) setPos(max - width(), 0);
74 void ColumnHandleItem::sceneRectChanged(const QRectF &rect)
76 prepareGeometryChange();
77 _boundingRect = QRectF(-_width/2, rect.y(), _width, rect.height());
81 void ColumnHandleItem::setOpacity(qreal opacity)
88 void ColumnHandleItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
90 if (event->buttons() & Qt::LeftButton && _moving) {
91 qreal newx = event->scenePos().x() - _offset;
94 else if (newx + width() > _maxXPos)
95 newx = _maxXPos - width();
105 void ColumnHandleItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
107 if (event->buttons() & Qt::LeftButton) {
108 QApplication::setOverrideCursor(Qt::ClosedHandCursor);
110 _offset = event->pos().x();
119 void ColumnHandleItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
123 QRectF sceneBRect = _boundingRect.translated(x(), 0);
124 _sceneLeft = sceneBRect.left();
125 _sceneRight = sceneBRect.right();
126 emit positionChanged(x());
127 QApplication::restoreOverrideCursor();
136 void ColumnHandleItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
140 _animation->setDirection(QPropertyAnimation::Forward);
145 void ColumnHandleItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
149 _animation->setDirection(QPropertyAnimation::Backward);
154 void ColumnHandleItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
159 QLinearGradient gradient(boundingRect().topLeft(), boundingRect().topRight());
160 QColor color = QApplication::palette().windowText().color();
161 color.setAlphaF(_opacity);
162 gradient.setColorAt(0, Qt::transparent);
163 gradient.setColorAt(0.45, color);
164 gradient.setColorAt(0.55, color);
165 gradient.setColorAt(1, Qt::transparent);
166 painter->fillRect(boundingRect(), gradient);