blob: 504366345abf579d71a844dc4737deff8db399fb [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL3$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or later as published by the Free
** Software Foundation and appearing in the file LICENSE.GPL included in
** the packaging of this file. Please review the following information to
** ensure the GNU General Public License version 2.0 requirements will be
** met: http://www.gnu.org/licenses/gpl-2.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qquickfusiondial_p.h"
#include <QtGui/qpainter.h>
#include <QtGui/private/qmath_p.h>
QT_BEGIN_NAMESPACE
QQuickFusionDial::QQuickFusionDial(QQuickItem *parent)
: QQuickPaintedItem(parent)
{
}
bool QQuickFusionDial::highlight() const
{
return m_highlight;
}
void QQuickFusionDial::setHighlight(bool highlight)
{
if (m_highlight == highlight)
return;
m_highlight = highlight;
update();
}
QPalette QQuickFusionDial::palette() const
{
return m_palette;
}
void QQuickFusionDial::setPalette(const QPalette &palette)
{
if (palette == m_palette)
return;
m_palette = palette;
update();
}
// based on QStyleHelper::drawDial()
void QQuickFusionDial::paint(QPainter *painter)
{
const int width = QQuickItem::width();
const int height = QQuickItem::height();
if (width <= 0 || height <= 0 || !isVisible())
return;
QColor buttonColor = m_palette.button().color();
const bool enabled = isEnabled();
qreal r = qMin(width, height) / 2.0;
r -= r/50;
const qreal penSize = r/20.0;
painter->setRenderHint(QPainter::Antialiasing);
const qreal d_ = r / 6;
const qreal dx = d_ + (width - 2 * r) / 2 + 1;
const qreal dy = d_ + (height - 2 * r) / 2 + 1;
QRectF br = QRectF(dx + 0.5, dy + 0.5,
int(r * 2 - 2 * d_ - 2),
int(r * 2 - 2 * d_ - 2));
buttonColor.setHsv(buttonColor .hue(),
qMin(140, buttonColor .saturation()),
qMax(180, buttonColor.value()));
if (enabled) {
// Drop shadow
qreal shadowSize = qMax(1.0, penSize/2.0);
QRectF shadowRect= br.adjusted(-2*shadowSize, -2*shadowSize,
2*shadowSize, 2*shadowSize);
QRadialGradient shadowGradient(shadowRect.center().x(),
shadowRect.center().y(), shadowRect.width()/2.0,
shadowRect.center().x(), shadowRect.center().y());
shadowGradient.setColorAt(qreal(0.91), QColor(0, 0, 0, 40));
shadowGradient.setColorAt(qreal(1.0), Qt::transparent);
painter->setBrush(shadowGradient);
painter->setPen(Qt::NoPen);
painter->translate(shadowSize, shadowSize);
painter->drawEllipse(shadowRect);
painter->translate(-shadowSize, -shadowSize);
// Main gradient
QRadialGradient gradient(br.center().x() - br.width()/3, dy,
br.width()*1.3, br.center().x(),
br.center().y() - br.height()/2);
gradient.setColorAt(0, buttonColor.lighter(110));
gradient.setColorAt(qreal(0.5), buttonColor);
gradient.setColorAt(qreal(0.501), buttonColor.darker(102));
gradient.setColorAt(1, buttonColor.darker(115));
painter->setBrush(gradient);
} else {
painter->setBrush(Qt::NoBrush);
}
painter->setPen(QPen(buttonColor.darker(280)));
painter->drawEllipse(br);
painter->setBrush(Qt::NoBrush);
painter->setPen(buttonColor.lighter(110));
painter->drawEllipse(br.adjusted(1, 1, -1, -1));
if (m_highlight) {
QColor highlight = m_palette.highlight().color();
highlight.setHsv(highlight.hue(),
qMin(160, highlight.saturation()),
qMax(230, highlight.value()));
highlight.setAlpha(127);
painter->setPen(QPen(highlight, 2.0));
painter->setBrush(Qt::NoBrush);
painter->drawEllipse(br.adjusted(-1, -1, 1, 1));
}
}
QT_END_NAMESPACE