forked from qt-creator/qt-creator
Creating lib: qmleditorwidgets
The library qmleditorwidgets contains widgets and image resources what are shared between QuickToolBar and QmlDesigner This library is created to make QuickToolBar independent from QmlDesigner plugin. All the widgets I moved to qmleditorwidgets are removed from QmlDesigner in this patch
This commit is contained in:
354
src/libs/qmleditorwidgets/gradientline.cpp
Normal file
354
src/libs/qmleditorwidgets/gradientline.cpp
Normal file
@@ -0,0 +1,354 @@
|
||||
/**************************************************************************
|
||||
**
|
||||
** This file is part of Qt Creator
|
||||
**
|
||||
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
||||
**
|
||||
** Contact: Nokia Corporation (qt-info@nokia.com)
|
||||
**
|
||||
** Commercial Usage
|
||||
**
|
||||
** Licensees holding valid Qt Commercial licenses may use this file in
|
||||
** accordance with the Qt Commercial License Agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and Nokia.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
**
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 2.1 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPL included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 2.1 requirements
|
||||
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
||||
**
|
||||
** If you are unsure which license is appropriate for your use, please
|
||||
** contact the sales department at http://qt.nokia.com/contact.
|
||||
**
|
||||
**************************************************************************/
|
||||
|
||||
#include "gradientline.h"
|
||||
#include <QPainter>
|
||||
#include <QMouseEvent>
|
||||
|
||||
static inline QPixmap tilePixMap(int size)
|
||||
{
|
||||
const int checkerbordSize= size;
|
||||
QPixmap tilePixmap(checkerbordSize * 2, checkerbordSize * 2);
|
||||
tilePixmap.fill(Qt::white);
|
||||
QPainter tilePainter(&tilePixmap);
|
||||
QColor color(220, 220, 220);
|
||||
tilePainter.fillRect(0, 0, checkerbordSize, checkerbordSize, color);
|
||||
tilePainter.fillRect(checkerbordSize, checkerbordSize, checkerbordSize, checkerbordSize, color);
|
||||
return tilePixmap;
|
||||
}
|
||||
|
||||
namespace QmlEditorWidgets {
|
||||
|
||||
void GradientLine::setGradient(const QLinearGradient &gradient)
|
||||
{
|
||||
m_gradient = gradient;
|
||||
m_useGradient = true;
|
||||
setupGradient();
|
||||
emit gradientChanged();
|
||||
|
||||
}
|
||||
|
||||
static inline QColor invertColor(const QColor color)
|
||||
{
|
||||
QColor c = color.toHsv();
|
||||
c.setHsv(c.hue(), c.saturation(), 255 - c.value());
|
||||
return c;
|
||||
}
|
||||
|
||||
GradientLine::GradientLine(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
m_activeColor(Qt::black),
|
||||
m_gradientName("gradient"),
|
||||
m_colorIndex(0),
|
||||
m_dragActive(false),
|
||||
m_yOffset(0),
|
||||
m_create(false),
|
||||
m_active(false),
|
||||
m_dragOff(false),
|
||||
m_useGradient(true)
|
||||
{
|
||||
setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
|
||||
setFocusPolicy(Qt::StrongFocus);
|
||||
setFixedHeight(50);
|
||||
setMinimumWidth(160);
|
||||
resize(160, 50);
|
||||
m_colorList << m_activeColor << QColor(Qt::white);
|
||||
m_stops << 0 << 1;
|
||||
updateGradient();
|
||||
setCurrentIndex(0);
|
||||
}
|
||||
|
||||
void GradientLine::setGradientName(const QString &newName)
|
||||
{
|
||||
if (newName == m_gradientName)
|
||||
return;
|
||||
m_gradientName = newName;
|
||||
setup();
|
||||
emit gradientNameChanged();
|
||||
}
|
||||
|
||||
void GradientLine::setActiveColor(const QColor &newColor)
|
||||
{
|
||||
if (newColor.name() == m_activeColor.name() && newColor.alpha() == m_activeColor.alpha())
|
||||
return;
|
||||
|
||||
m_activeColor = newColor;
|
||||
m_colorList.removeAt(currentColorIndex());
|
||||
m_colorList.insert(currentColorIndex(), m_activeColor);
|
||||
updateGradient();
|
||||
update();
|
||||
}
|
||||
|
||||
void GradientLine::setupGradient()
|
||||
{
|
||||
if (m_useGradient) {
|
||||
m_colorList.clear();
|
||||
m_stops.clear();
|
||||
foreach (const QGradientStop &stop, m_gradient.stops()) {
|
||||
m_stops << stop.first;
|
||||
m_colorList << stop.second;
|
||||
}
|
||||
}
|
||||
updateGradient();
|
||||
}
|
||||
|
||||
bool GradientLine::event(QEvent *event)
|
||||
{
|
||||
if (event->type() == QEvent::ShortcutOverride)
|
||||
if (static_cast<QKeyEvent*>(event)->matches(QKeySequence::Delete)) {
|
||||
event->accept();
|
||||
return true;
|
||||
}
|
||||
|
||||
return QWidget::event(event);
|
||||
}
|
||||
|
||||
void GradientLine::keyPressEvent(QKeyEvent * event)
|
||||
{
|
||||
if (event->matches(QKeySequence::Delete)) {
|
||||
if ((currentColorIndex()) != 0 && (currentColorIndex() < m_stops.size() - 1)) {
|
||||
m_dragActive = false;
|
||||
m_stops.removeAt(currentColorIndex());
|
||||
m_colorList.removeAt(currentColorIndex());
|
||||
updateGradient();
|
||||
setCurrentIndex(0);
|
||||
//delete item
|
||||
}
|
||||
} else {
|
||||
QWidget::keyPressEvent(event);
|
||||
}
|
||||
}
|
||||
|
||||
void GradientLine::paintEvent(QPaintEvent *event)
|
||||
{
|
||||
QWidget::paintEvent(event);
|
||||
|
||||
QPainter p(this);
|
||||
|
||||
if (!isEnabled()) {
|
||||
p.setBrush(Qt::NoBrush);
|
||||
p.setPen(QColor(0x444444));
|
||||
p.drawRect(9, 31, width() - 14, height() - 32);
|
||||
|
||||
p.drawTiledPixmap(10, 32, width() - 16, height() - 34, tilePixMap(8));
|
||||
} else {
|
||||
|
||||
QLinearGradient linearGradient(QPointF(0, 0), QPointF(width(), 0));
|
||||
|
||||
for (int i =0; i < m_stops.size(); i++)
|
||||
linearGradient.setColorAt(m_stops.at(i), m_colorList.at(i));
|
||||
|
||||
p.setBrush(Qt::NoBrush);
|
||||
p.setPen(QColor(0x444444));
|
||||
p.drawRect(9, 31, width() - 14, height() - 32);
|
||||
|
||||
|
||||
p.drawTiledPixmap(9, 31, width() - 16, height() - 34, tilePixMap(8));
|
||||
|
||||
p.setBrush(linearGradient);
|
||||
p.setPen(QColor(0x222222));
|
||||
p.drawRect(8, 30, width() - 14, height() - 32);
|
||||
p.setPen(QColor(255, 255, 255, 40));
|
||||
p.drawRect(9, 31, width() - 16, height() - 34);
|
||||
|
||||
p.setPen(Qt::black);
|
||||
|
||||
for (int i =0; i < m_colorList.size(); i++) {
|
||||
int localYOffset = 0;
|
||||
QColor arrowColor(Qt::black);
|
||||
if (i == currentColorIndex()) {
|
||||
localYOffset = m_yOffset;
|
||||
arrowColor = QColor(0x909090);
|
||||
}
|
||||
p.setPen(arrowColor);
|
||||
if (i == 0 || i == (m_colorList.size() - 1))
|
||||
localYOffset = 0;
|
||||
|
||||
int pos = qreal((width() - 16)) * m_stops.at(i) + 9;
|
||||
p.setBrush(arrowColor);
|
||||
QVector<QPointF> points;
|
||||
points.append(QPointF(pos + 0.5, 28.5 + localYOffset)); //triangle
|
||||
points.append(QPointF(pos - 3.5, 22.5 + localYOffset));
|
||||
points.append(QPointF(pos + 4.5, 22.5 + localYOffset));
|
||||
p.setRenderHint(QPainter::Antialiasing, true);
|
||||
p.drawPolygon(points);
|
||||
p.setRenderHint(QPainter::Antialiasing, false);
|
||||
p.setBrush(Qt::NoBrush);
|
||||
p.setPen(QColor(0x424242));
|
||||
p.drawRect(pos - 4, 9 + localYOffset, 10, 11);
|
||||
|
||||
p.drawTiledPixmap(pos - 4, 9 + localYOffset, 9, 10, tilePixMap(5));
|
||||
p.setPen(QColor(0x424242));
|
||||
p.setBrush(m_colorList.at(i));
|
||||
p.drawRect(pos - 5, 8 + localYOffset, 10, 11);
|
||||
p.setBrush(Qt::NoBrush);
|
||||
p.setPen(QColor(255, 255, 255, 30));
|
||||
p.drawRect(pos - 4, 9 + localYOffset, 8, 9);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void GradientLine::mousePressEvent(QMouseEvent *event)
|
||||
{
|
||||
if (event->button() == Qt::LeftButton) {
|
||||
event->accept();
|
||||
int xPos = event->pos().x();
|
||||
int yPos = event->pos().y();
|
||||
|
||||
int draggedIndex = -1;
|
||||
m_create = false;
|
||||
m_dragActive = false;
|
||||
if ((yPos > 10) && (yPos < 30))
|
||||
for (int i =0; i < m_stops.size(); i++) {
|
||||
int pos = qreal((width() - 16)) * m_stops.at(i) + 9;
|
||||
if (((xPos + 5) > pos) && ((xPos - 5) < pos)) {
|
||||
draggedIndex = i;
|
||||
m_dragActive = true;
|
||||
m_dragStart = event->pos();
|
||||
setCurrentIndex(draggedIndex);
|
||||
update();
|
||||
}
|
||||
}
|
||||
if (draggedIndex == -1)
|
||||
m_create = true;
|
||||
}
|
||||
setFocus(Qt::MouseFocusReason);
|
||||
}
|
||||
|
||||
void GradientLine::mouseDoubleClickEvent(QMouseEvent *event)
|
||||
{
|
||||
event->accept();
|
||||
m_dragActive = false;
|
||||
m_create = false;
|
||||
emit openColorDialog(event->pos());
|
||||
}
|
||||
|
||||
void GradientLine::mouseReleaseEvent(QMouseEvent *event)
|
||||
{
|
||||
if (event->button() == Qt::LeftButton) {
|
||||
event->accept();
|
||||
if (m_dragActive == false && m_create) {
|
||||
qreal stopPos = qreal(event->pos().x() - 9) / qreal((width() - 15));
|
||||
int index = -1;
|
||||
for (int i =0; i < m_stops.size() - 1; i++) {
|
||||
if ((stopPos > m_stops.at(i)) && (index == -1))
|
||||
index = i +1;
|
||||
}
|
||||
if (index != -1 && (m_useGradient)) { //creating of items only in base state
|
||||
m_stops.insert(index, stopPos);
|
||||
m_colorList.insert(index, QColor(Qt::white));
|
||||
setCurrentIndex(index);
|
||||
}
|
||||
}
|
||||
}
|
||||
m_dragActive = false;
|
||||
m_yOffset = 0;
|
||||
updateGradient();
|
||||
update();
|
||||
setFocus(Qt::MouseFocusReason);
|
||||
}
|
||||
|
||||
void GradientLine::mouseMoveEvent(QMouseEvent *event)
|
||||
{
|
||||
if (m_dragActive) {
|
||||
event->accept();
|
||||
int xPos = event->pos().x();
|
||||
int pos = qreal((width() - 20)) * m_stops.at(currentColorIndex()) + 8;
|
||||
int offset = m_dragOff ? 2 : 20;
|
||||
if (xPos < pos + offset && xPos > pos - offset) {
|
||||
m_dragOff = false;
|
||||
int xDistance = event->pos().x() - m_dragStart.x();
|
||||
qreal distance = qreal(xDistance) / qreal((width() - 20));
|
||||
qreal newStop = m_stops.at(currentColorIndex()) + distance;
|
||||
if ((newStop >=0) && (newStop <= 1))
|
||||
m_stops[currentColorIndex()] = newStop;
|
||||
m_yOffset += event->pos().y() - m_dragStart.y();
|
||||
if (m_yOffset > 0 || m_useGradient) { //deleting only in base state
|
||||
m_yOffset = 0;
|
||||
} else if ((m_yOffset < - 12) && (currentColorIndex()) != 0 && (currentColorIndex() < m_stops.size() - 1)) {
|
||||
m_yOffset = 0;
|
||||
m_dragActive = false;
|
||||
m_stops.removeAt(currentColorIndex());
|
||||
m_colorList.removeAt(currentColorIndex());
|
||||
updateGradient();
|
||||
setCurrentIndex(0);
|
||||
//delete item
|
||||
}
|
||||
} else {
|
||||
m_dragOff = true;
|
||||
}
|
||||
m_dragStart = event->pos();
|
||||
update();
|
||||
}
|
||||
}
|
||||
|
||||
void GradientLine::setup()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
static inline QColor normalizeColor(const QColor &color)
|
||||
{
|
||||
QColor newColor = QColor(color.name());
|
||||
newColor.setAlpha(color.alpha());
|
||||
return newColor;
|
||||
}
|
||||
|
||||
static inline qreal roundReal(qreal real)
|
||||
{
|
||||
int i = real * 100;
|
||||
return qreal(i) / 100;
|
||||
}
|
||||
|
||||
void GradientLine::updateGradient()
|
||||
{
|
||||
if (m_useGradient) {
|
||||
QGradientStops stops;
|
||||
for (int i = 0;i < m_stops.size(); i++) {
|
||||
stops.append(QPair<qreal, QColor>(m_stops.at(i), m_colorList.at(i)));
|
||||
}
|
||||
m_gradient.setStops(stops);
|
||||
emit gradientChanged();
|
||||
} else {
|
||||
if (!active())
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
void GradientLine::setCurrentIndex(int i)
|
||||
{
|
||||
if (i == m_colorIndex)
|
||||
return;
|
||||
m_colorIndex = i;
|
||||
m_activeColor = m_colorList.at(i);
|
||||
emit activeColorChanged();
|
||||
update();
|
||||
}
|
||||
|
||||
} //QmlEditorWidgets
|
||||
Reference in New Issue
Block a user