2021-09-16 08:01:53 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
|
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QSK_GRADIENT_STOP_H
|
|
|
|
#define QSK_GRADIENT_STOP_H
|
|
|
|
|
|
|
|
#include "QskGlobal.h"
|
|
|
|
|
|
|
|
#include <qcolor.h>
|
|
|
|
#include <qmetatype.h>
|
|
|
|
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK( 5, 14, 0 )
|
|
|
|
/*
|
|
|
|
since Qt >= 5.14 QColor has constexpr declarations and we could declare
|
|
|
|
several methods of QskGradientStop being constexpr as well. TODO ...
|
|
|
|
*/
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class QSK_EXPORT QskGradientStop
|
|
|
|
{
|
|
|
|
Q_GADGET
|
|
|
|
|
|
|
|
Q_PROPERTY( qreal position READ position WRITE setPosition RESET resetPosition )
|
|
|
|
Q_PROPERTY( QColor color READ color WRITE setColor RESET resetColor )
|
|
|
|
|
|
|
|
public:
|
|
|
|
QskGradientStop() noexcept;
|
|
|
|
QskGradientStop( qreal position, const QColor& ) noexcept;
|
2021-10-25 06:31:32 +00:00
|
|
|
QskGradientStop( qreal position, Qt::GlobalColor ) noexcept;
|
|
|
|
QskGradientStop( qreal position, QRgb ) noexcept;
|
2021-09-16 08:01:53 +00:00
|
|
|
|
|
|
|
bool operator==( const QskGradientStop& ) const noexcept;
|
|
|
|
bool operator!=( const QskGradientStop& ) const noexcept;
|
|
|
|
|
|
|
|
void setStop( qreal position, const QColor& ) noexcept;
|
|
|
|
|
|
|
|
qreal position() const noexcept;
|
|
|
|
void setPosition( qreal position ) noexcept;
|
|
|
|
void resetPosition() noexcept;
|
|
|
|
|
|
|
|
const QColor& color() const noexcept;
|
2021-10-27 13:07:17 +00:00
|
|
|
void setColor( const QColor& ) noexcept;
|
2021-09-16 08:01:53 +00:00
|
|
|
void resetColor() noexcept;
|
|
|
|
|
|
|
|
static QColor interpolated(
|
|
|
|
const QskGradientStop&, const QskGradientStop&, qreal position ) noexcept;
|
|
|
|
|
|
|
|
uint hash( uint seed ) const noexcept;
|
|
|
|
|
|
|
|
private:
|
|
|
|
qreal m_position;
|
|
|
|
QColor m_color; // using RGBA instead ?
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_TYPEINFO( QskGradientStop, Q_MOVABLE_TYPE );
|
|
|
|
Q_DECLARE_METATYPE( QskGradientStop )
|
|
|
|
|
|
|
|
inline QskGradientStop::QskGradientStop() noexcept
|
|
|
|
: m_position( -1.0 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QskGradientStop::QskGradientStop(
|
|
|
|
qreal position, const QColor& color ) noexcept
|
|
|
|
: m_position( position )
|
|
|
|
, m_color( color )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-10-25 06:31:32 +00:00
|
|
|
inline QskGradientStop::QskGradientStop(
|
|
|
|
qreal position, const Qt::GlobalColor color ) noexcept
|
|
|
|
: QskGradientStop( position, QColor( color ) )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QskGradientStop::QskGradientStop(
|
|
|
|
qreal position, QRgb rgb ) noexcept
|
|
|
|
: QskGradientStop( position, QColor::fromRgba( rgb ) )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-09-16 08:01:53 +00:00
|
|
|
inline qreal QskGradientStop::position() const noexcept
|
|
|
|
{
|
|
|
|
return m_position;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const QColor& QskGradientStop::color() const noexcept
|
|
|
|
{
|
|
|
|
return m_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool QskGradientStop::operator==( const QskGradientStop& other ) const noexcept
|
|
|
|
{
|
|
|
|
return ( m_position == other.m_position ) && ( m_color == other.m_color );
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool QskGradientStop::operator!=( const QskGradientStop& other ) const noexcept
|
|
|
|
{
|
|
|
|
return ( !( *this == other ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef QT_NO_DEBUG_STREAM
|
|
|
|
|
|
|
|
class QDebug;
|
|
|
|
|
|
|
|
QSK_EXPORT QDebug operator<<( QDebug, const QskGradientStop& );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|