2018-02-27 18:06:05 +01:00
|
|
|
/***************************************************************************
|
|
|
|
amarokslider.cpp - description
|
|
|
|
-------------------
|
|
|
|
begin : Dec 15 2003
|
|
|
|
copyright : (C) 2003 by Mark Kretschmann
|
|
|
|
email : markey@web.de
|
|
|
|
copyright : (C) 2005 by Gábor Lehel
|
|
|
|
email : illissius@gmail.com
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
#include "volumeslider.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
#include <QApplication>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringBuilder>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QImage>
|
|
|
|
#include <QPainter>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QPainterPath>
|
|
|
|
#include <QPalette>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QBrush>
|
|
|
|
#include <QPen>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QPolygon>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QVector>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QMenu>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QStyle>
|
|
|
|
#include <QStyleOption>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QAction>
|
|
|
|
#include <QSlider>
|
|
|
|
#include <QLinearGradient>
|
|
|
|
#include <QStyleOptionViewItem>
|
|
|
|
#include <QFlags>
|
|
|
|
#include <QtEvents>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
SliderSlider::SliderSlider(Qt::Orientation orientation, QWidget* parent, uint max)
|
2018-02-27 18:06:05 +01:00
|
|
|
: QSlider(orientation, parent),
|
|
|
|
m_sliding(false),
|
|
|
|
m_outside(false),
|
|
|
|
m_prevValue(0) {
|
|
|
|
setRange(0, max);
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void SliderSlider::wheelEvent(QWheelEvent* e) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
if (orientation() == Qt::Vertical) {
|
|
|
|
// Will be handled by the parent widget
|
|
|
|
e->ignore();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Position Slider (horizontal)
|
2020-05-29 17:42:40 +02:00
|
|
|
int step = e->angleDelta().y() * 1500 / 18;
|
2018-02-27 18:06:05 +01:00
|
|
|
int nval = qBound(minimum(), QSlider::value() + step, maximum());
|
|
|
|
|
|
|
|
QSlider::setValue(nval);
|
|
|
|
|
|
|
|
emit sliderReleased(value());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void SliderSlider::mouseMoveEvent(QMouseEvent *e) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
if (m_sliding) {
|
|
|
|
// feels better, but using set value of 20 is bad of course
|
|
|
|
QRect rect(-20, -20, width() + 40, height() + 40);
|
|
|
|
|
|
|
|
if (orientation() == Qt::Horizontal && !rect.contains(e->pos())) {
|
|
|
|
if (!m_outside) QSlider::setValue(m_prevValue);
|
|
|
|
m_outside = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_outside = false;
|
|
|
|
slideEvent(e);
|
|
|
|
emit sliderMoved(value());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
QSlider::mouseMoveEvent(e);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void SliderSlider::slideEvent(QMouseEvent* e) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
QStyleOptionSlider option;
|
|
|
|
initStyleOption(&option);
|
|
|
|
QRect sliderRect(style()->subControlRect(QStyle::CC_Slider, &option, QStyle::SC_SliderHandle, this));
|
|
|
|
|
|
|
|
QSlider::setValue(
|
|
|
|
orientation() == Qt::Horizontal
|
|
|
|
? ((QApplication::layoutDirection() == Qt::RightToLeft)
|
|
|
|
? QStyle::sliderValueFromPosition(
|
|
|
|
minimum(), maximum(),
|
|
|
|
width() - (e->pos().x() - sliderRect.width() / 2),
|
|
|
|
width() + sliderRect.width(), true)
|
|
|
|
: QStyle::sliderValueFromPosition(
|
|
|
|
minimum(), maximum(),
|
|
|
|
e->pos().x() - sliderRect.width() / 2,
|
|
|
|
width() - sliderRect.width()))
|
|
|
|
: QStyle::sliderValueFromPosition(
|
|
|
|
minimum(), maximum(), e->pos().y() - sliderRect.height() / 2,
|
|
|
|
height() - sliderRect.height()));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void SliderSlider::mousePressEvent(QMouseEvent* e) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
QStyleOptionSlider option;
|
|
|
|
initStyleOption(&option);
|
|
|
|
QRect sliderRect(style()->subControlRect(QStyle::CC_Slider, &option, QStyle::SC_SliderHandle, this));
|
|
|
|
|
|
|
|
m_sliding = true;
|
|
|
|
m_prevValue = QSlider::value();
|
|
|
|
|
|
|
|
if (!sliderRect.contains(e->pos())) mouseMoveEvent(e);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void SliderSlider::mouseReleaseEvent(QMouseEvent*) {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
if (!m_outside && QSlider::value() != m_prevValue)
|
|
|
|
emit sliderReleased(value());
|
|
|
|
|
|
|
|
m_sliding = false;
|
|
|
|
m_outside = false;
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void SliderSlider::setValue(int newValue) {
|
2018-02-27 18:06:05 +01:00
|
|
|
// don't adjust the slider while the user is dragging it!
|
|
|
|
|
|
|
|
if (!m_sliding || m_outside)
|
|
|
|
QSlider::setValue(adjustValue(newValue));
|
|
|
|
else
|
|
|
|
m_prevValue = newValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// CLASS PrettySlider
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#define THICKNESS 7
|
|
|
|
#define MARGIN 3
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
PrettySlider::PrettySlider(Qt::Orientation orientation, SliderMode mode, QWidget* parent, uint max)
|
|
|
|
: SliderSlider(orientation, parent, max), m_mode(mode) {
|
2018-02-27 18:06:05 +01:00
|
|
|
if (m_mode == Pretty) {
|
|
|
|
setFocusPolicy(Qt::NoFocus);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void PrettySlider::mousePressEvent(QMouseEvent* e) {
|
|
|
|
SliderSlider::mousePressEvent(e);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
slideEvent(e);
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void PrettySlider::slideEvent(QMouseEvent* e) {
|
2018-02-27 18:06:05 +01:00
|
|
|
if (m_mode == Pretty)
|
|
|
|
QSlider::setValue(
|
|
|
|
orientation() == Qt::Horizontal
|
|
|
|
? QStyle::sliderValueFromPosition(minimum(), maximum(), e->pos().x(), width() - 2)
|
|
|
|
: QStyle::sliderValueFromPosition(minimum(), maximum(), e->pos().y(), height() - 2));
|
|
|
|
else
|
2019-03-09 16:48:45 +01:00
|
|
|
SliderSlider::slideEvent(e);
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Amarok {
|
|
|
|
namespace ColorScheme {
|
|
|
|
extern QColor Background;
|
|
|
|
extern QColor Foreground;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
2019-03-09 16:48:45 +01:00
|
|
|
/** these functions aren't required in our fixed size world, but they may become useful one day **/
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
QSize PrettySlider::minimumSizeHint() const {
|
2018-02-27 18:06:05 +01:00
|
|
|
return sizeHint();
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
QSize PrettySlider::sizeHint() const {
|
2018-02-27 18:06:05 +01:00
|
|
|
constPolish();
|
|
|
|
|
|
|
|
return (orientation() == Horizontal
|
|
|
|
? QSize( maxValue(), THICKNESS + MARGIN )
|
|
|
|
: QSize( THICKNESS + MARGIN, maxValue() )).expandedTo( QApplit ication::globalStrut() );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// CLASS VolumeSlider
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
VolumeSlider::VolumeSlider(QWidget* parent, uint max)
|
|
|
|
: SliderSlider(Qt::Horizontal, parent, max),
|
2018-02-27 18:06:05 +01:00
|
|
|
m_animCount(0),
|
|
|
|
m_animTimer(new QTimer(this)),
|
|
|
|
m_pixmapInset(QPixmap(drawVolumePixmap ())) {
|
|
|
|
setFocusPolicy(Qt::NoFocus);
|
|
|
|
|
|
|
|
// Store theme colors to check theme change at paintEvent
|
|
|
|
m_previous_theme_text_color = palette().color(QPalette::WindowText);
|
|
|
|
m_previous_theme_highlight_color = palette().color(QPalette::Highlight);
|
|
|
|
|
|
|
|
drawVolumeSliderHandle();
|
|
|
|
generateGradient();
|
|
|
|
|
|
|
|
setMinimumWidth(m_pixmapInset.width());
|
|
|
|
setMinimumHeight(m_pixmapInset.height());
|
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
QObject::connect(m_animTimer, &QTimer::timeout, this, &VolumeSlider::slotAnimTimer);
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::SetEnabled(const bool enabled) {
|
|
|
|
QSlider::setEnabled(enabled);
|
|
|
|
QSlider::setVisible(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VolumeSlider::generateGradient() {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
const QImage mask(":/pictures/volumeslider-gradient.png");
|
|
|
|
|
|
|
|
QImage gradient_image(mask.size(), QImage::Format_ARGB32_Premultiplied);
|
|
|
|
QPainter p(&gradient_image);
|
|
|
|
|
|
|
|
QLinearGradient gradient(gradient_image.rect().topLeft(), gradient_image.rect().topRight());
|
2020-07-18 04:12:50 +02:00
|
|
|
gradient.setColorAt(0, palette().color(QPalette::Window));
|
2018-02-27 18:06:05 +01:00
|
|
|
gradient.setColorAt(1, palette().color(QPalette::Highlight));
|
|
|
|
p.fillRect(gradient_image.rect(), QBrush(gradient));
|
|
|
|
|
|
|
|
p.setCompositionMode(QPainter::CompositionMode_DestinationIn);
|
|
|
|
p.drawImage(0, 0, mask);
|
|
|
|
p.end();
|
|
|
|
|
|
|
|
m_pixmapGradient = QPixmap::fromImage(gradient_image);
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::slotAnimTimer() {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
if (m_animEnter) {
|
|
|
|
m_animCount++;
|
|
|
|
update();
|
|
|
|
if (m_animCount == ANIM_MAX - 1) m_animTimer->stop();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_animCount--;
|
|
|
|
update();
|
|
|
|
if (m_animCount == 0) m_animTimer->stop();
|
|
|
|
}
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::mousePressEvent(QMouseEvent* e) {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
if (e->button() != Qt::RightButton) {
|
2019-03-09 16:48:45 +01:00
|
|
|
SliderSlider::mousePressEvent(e);
|
2018-02-27 18:06:05 +01:00
|
|
|
slideEvent(e);
|
|
|
|
}
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::contextMenuEvent(QContextMenuEvent* e) {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
QMap<QAction*, int> values;
|
|
|
|
QMenu menu;
|
|
|
|
menu.setTitle("Volume");
|
|
|
|
values[menu.addAction("100%")] = 100;
|
|
|
|
values[menu.addAction("80%")] = 80;
|
|
|
|
values[menu.addAction("60%")] = 60;
|
|
|
|
values[menu.addAction("40%")] = 40;
|
|
|
|
values[menu.addAction("20%")] = 20;
|
|
|
|
values[menu.addAction("0%")] = 0;
|
|
|
|
|
|
|
|
QAction* ret = menu.exec(mapToGlobal(e->pos()));
|
|
|
|
if (ret) {
|
|
|
|
QSlider::setValue(values[ret]);
|
|
|
|
emit sliderReleased(values[ret]);
|
|
|
|
}
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::slideEvent(QMouseEvent* e) {
|
2018-02-27 18:06:05 +01:00
|
|
|
QSlider::setValue(QStyle::sliderValueFromPosition(minimum(), maximum(), e->pos().x(), width() - 2));
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::wheelEvent(QWheelEvent* e) {
|
|
|
|
|
2020-05-29 17:42:40 +02:00
|
|
|
const uint step = e->angleDelta().y() / (e->angleDelta().x() == 0 ? 30 : -30);
|
2018-02-27 18:06:05 +01:00
|
|
|
QSlider::setValue(QSlider::value() + step);
|
|
|
|
emit sliderReleased(value());
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::paintEvent(QPaintEvent*) {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
QPainter p(this);
|
|
|
|
|
|
|
|
const int padding = 7;
|
|
|
|
const int offset = int(double((width() - 2 * padding) * value()) / maximum());
|
|
|
|
|
2018-10-02 00:46:54 +02:00
|
|
|
// If theme changed since last paintEvent, redraw the volume pixmap with new theme colors
|
2018-02-27 18:06:05 +01:00
|
|
|
if (m_previous_theme_text_color != palette().color(QPalette::WindowText)) {
|
|
|
|
m_pixmapInset = drawVolumePixmap();
|
|
|
|
m_previous_theme_text_color = palette().color(QPalette::WindowText);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_previous_theme_highlight_color != palette().color(QPalette::Highlight)) {
|
|
|
|
drawVolumeSliderHandle();
|
|
|
|
m_previous_theme_highlight_color = palette().color(QPalette::Highlight);
|
|
|
|
}
|
|
|
|
|
|
|
|
p.drawPixmap(0, 0, m_pixmapGradient, 0, 0, offset + padding, 0);
|
|
|
|
p.drawPixmap(0, 0, m_pixmapInset);
|
|
|
|
p.drawPixmap(offset - m_handlePixmaps[0].width() / 2 + padding, 0, m_handlePixmaps[m_animCount]);
|
|
|
|
|
|
|
|
// Draw percentage number
|
|
|
|
QStyleOptionViewItem opt;
|
|
|
|
p.setPen(opt.palette.color(QPalette::Normal, QPalette::Text));
|
|
|
|
QFont vol_font(opt.font);
|
|
|
|
vol_font.setPixelSize(9);
|
|
|
|
p.setFont(vol_font);
|
|
|
|
const QRect rect(0, 0, 34, 15);
|
|
|
|
p.drawText(rect, Qt::AlignRight | Qt::AlignVCenter, QString::number(value()) + '%');
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2020-09-05 19:20:43 +02:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
|
|
void VolumeSlider::enterEvent(QEnterEvent*) {
|
|
|
|
#else
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::enterEvent(QEvent*) {
|
2020-09-05 19:20:43 +02:00
|
|
|
#endif
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
m_animEnter = true;
|
|
|
|
m_animCount = 0;
|
|
|
|
|
|
|
|
m_animTimer->start(ANIM_INTERVAL);
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::leaveEvent(QEvent*) {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
// This can happen if you enter and leave the widget quickly
|
|
|
|
if (m_animCount == 0) m_animCount = 1;
|
|
|
|
|
|
|
|
m_animEnter = false;
|
|
|
|
m_animTimer->start(ANIM_INTERVAL);
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::paletteChange(const QPalette&) {
|
2018-02-27 18:06:05 +01:00
|
|
|
generateGradient();
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
QPixmap VolumeSlider::drawVolumePixmap () const {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
QPixmap pixmap(112, 36);
|
|
|
|
pixmap.fill(Qt::transparent);
|
|
|
|
QPainter painter(&pixmap);
|
|
|
|
QPen pen(palette().color(QPalette::WindowText), 0.3, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
|
|
|
|
painter.setPen(pen);
|
2018-10-02 00:38:52 +02:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
painter.setRenderHint(QPainter::Antialiasing);
|
|
|
|
painter.setRenderHint(QPainter::SmoothPixmapTransform);
|
|
|
|
// Draw volume control pixmap
|
|
|
|
QPolygon poly;
|
2019-03-09 16:48:45 +01:00
|
|
|
poly << QPoint(6, 21) << QPoint(104, 21) << QPoint(104, 7) << QPoint(6, 16) << QPoint(6, 21);
|
2018-02-27 18:06:05 +01:00
|
|
|
QPainterPath path;
|
|
|
|
path.addPolygon(poly);
|
|
|
|
painter.drawPolygon(poly);
|
|
|
|
painter.drawLine(6, 29, 104, 29);
|
|
|
|
// Return QPixmap
|
|
|
|
return pixmap;
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:48:45 +01:00
|
|
|
void VolumeSlider::drawVolumeSliderHandle() {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
QImage pixmapHandle(":/pictures/volumeslider-handle.png");
|
|
|
|
QImage pixmapHandleGlow(":/pictures/volumeslider-handle_glow.png");
|
|
|
|
|
|
|
|
QImage pixmapHandleGlow_image(pixmapHandleGlow.size(), QImage::Format_ARGB32_Premultiplied);
|
|
|
|
QPainter painter(&pixmapHandleGlow_image);
|
2018-10-02 00:38:52 +02:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
painter.setRenderHint(QPainter::Antialiasing);
|
|
|
|
painter.setRenderHint(QPainter::SmoothPixmapTransform);
|
|
|
|
|
|
|
|
// repaint volume slider handle glow image with theme highlight color
|
|
|
|
painter.fillRect(pixmapHandleGlow_image.rect(), QBrush(palette().color(QPalette::Highlight)));
|
|
|
|
painter.setCompositionMode(QPainter::CompositionMode_DestinationIn);
|
|
|
|
painter.drawImage(0, 0, pixmapHandleGlow);
|
2018-10-02 00:38:52 +02:00
|
|
|
|
2018-10-02 00:46:54 +02:00
|
|
|
// Overlay the volume slider handle image
|
2018-02-27 18:06:05 +01:00
|
|
|
painter.setCompositionMode(QPainter::CompositionMode_SourceAtop);
|
|
|
|
painter.drawImage(0, 0, pixmapHandle);
|
|
|
|
|
|
|
|
// BEGIN Calculate handle animation pixmaps for mouse-over effect
|
|
|
|
float opacity = 0.0;
|
|
|
|
const float step = 1.0 / ANIM_MAX;
|
|
|
|
QImage dst;
|
|
|
|
m_handlePixmaps.clear();
|
|
|
|
for (int i = 0; i < ANIM_MAX; ++i) {
|
|
|
|
dst = pixmapHandle.copy();
|
|
|
|
|
|
|
|
QPainter p(&dst);
|
|
|
|
p.setOpacity(opacity);
|
|
|
|
p.drawImage(0, 0, pixmapHandleGlow_image);
|
|
|
|
p.end();
|
|
|
|
|
|
|
|
m_handlePixmaps.append(QPixmap::fromImage(dst));
|
|
|
|
opacity += step;
|
|
|
|
}
|
|
|
|
// END
|
2019-03-09 16:48:45 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|