1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
/**
* \file gradient_slider.hpp
*
* \author Mattia Basaglia
*
* \copyright Copyright (C) 2013-2020 Mattia Basaglia
* \copyright Copyright (C) 2014 Calle Laakkonen
* \copyright Copyright (C) 2017 caryoscelus
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef GRADIENT_SLIDER_HPP
#define GRADIENT_SLIDER_HPP
#include "colorwidgets_global.hpp"
#include <QSlider>
#include <QGradient>
namespace color_widgets {
/**
* \brief A slider that moves on top of a gradient
*/
class QCP_EXPORT GradientSlider : public QSlider
{
Q_OBJECT
Q_PROPERTY(QBrush background READ background WRITE setBackground NOTIFY backgroundChanged)
Q_PROPERTY(QGradientStops colors READ colors WRITE setColors DESIGNABLE false)
Q_PROPERTY(QColor firstColor READ firstColor WRITE setFirstColor STORED false)
Q_PROPERTY(QColor lastColor READ lastColor WRITE setLastColor STORED false)
Q_PROPERTY(QLinearGradient gradient READ gradient WRITE setGradient)
public:
explicit GradientSlider(QWidget *parent = 0);
explicit GradientSlider(Qt::Orientation orientation, QWidget *parent = 0);
~GradientSlider();
/// Get the background, it's visible for transparent gradient stops
QBrush background() const;
/// Set the background, it's visible for transparent gradient stops
void setBackground(const QBrush &bg);
/// Get the colors that make up the gradient
QGradientStops colors() const;
/// Set the colors that make up the gradient
void setColors(const QGradientStops &colors);
/// Get the gradient
QLinearGradient gradient() const;
/// Set the gradient
void setGradient(const QLinearGradient &gradient);
/**
* Overload: create an evenly distributed gradient of the given colors
*/
void setColors(const QVector<QColor> &colors);
/**
* \brief Set the first color of the gradient
*
* If the gradient is currently empty it will create a stop with the given color
*/
void setFirstColor(const QColor &c);
/**
* \brief Set the last color of the gradient
*
* If the gradient is has less than two colors,
* it will create a stop with the given color
*/
void setLastColor(const QColor &c);
/**
* \brief Get the first color
*
* \returns QColor() con empty gradient
*/
QColor firstColor() const;
/**
* \brief Get the last color
*
* \returns QColor() con empty gradient
*/
QColor lastColor() const;
Q_SIGNALS:
void backgroundChanged(const QBrush&);
protected:
void paintEvent(QPaintEvent *ev) override;
void mousePressEvent(QMouseEvent *ev) override;
void mouseMoveEvent(QMouseEvent *ev) override;
void mouseReleaseEvent(QMouseEvent *ev) override;
private:
class Private;
Private * const p;
};
} // namespace color_widgets
#endif // GRADIENT_SLIDER_HPP
|