
* QskBoxBorderColors: Use gradients instead of colors * QskBoxBorderColors: rename API * render gradients on borders * boxes example: Also draw gradient borders * calculate proper numbers of needed border colors * fixup with example * support rounded corners * support more colors in rounded color gradients I THINK WE DON'T REALLY NEED THIS COMMIT * We don't need this commit either * Revert "We don't need this commit either" This reverts commit 2dc38064f7fee1d0505262fe5cebcf9e1fb16cea. * Revert "support more colors in rounded color gradients" This reverts commit 5754d2d0773d8273d42ae1775b53d40f5e6af26a. * fix borders for rect ellipses * play around a bit * small fixes * some helper stuff and missing stuff * user border colors * close to something working somehow * works a bit better * put it into an own function * rearrange a bit * something's off * still off, but seems like we need an additional line * works but hackish * now it works * bring back samples * correction * pimp up example * fix normal rendering * some more debugging etc. * turn around gradients * turn around rectangular gradients as well * turn around easier * more test cases * fix fill case * more test cases * clean up a bit * clean up example * clean up some more * incorporate feedback from Uwe * fix bug when using horizontal gradients
223 lines
5.6 KiB
C++
223 lines
5.6 KiB
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
|
*****************************************************************************/
|
|
|
|
#include "QskBoxBorderColors.h"
|
|
#include "QskRgbValue.h"
|
|
|
|
#include <qhashfunctions.h>
|
|
#include <qvariant.h>
|
|
|
|
static void qskRegisterBoxBorderColors()
|
|
{
|
|
qRegisterMetaType< QskBoxBorderColors >();
|
|
|
|
QMetaType::registerConverter< QColor, QskBoxBorderColors >(
|
|
[]( const QColor& color ) { return QskBoxBorderColors( color ); } );
|
|
|
|
QMetaType::registerConverter< QskGradient, QskBoxBorderColors >(
|
|
[]( const QskGradient& gradient ) { return QskBoxBorderColors( gradient ); } );
|
|
}
|
|
|
|
Q_CONSTRUCTOR_FUNCTION( qskRegisterBoxBorderColors )
|
|
|
|
static inline void qskSetGradients( const QskGradient& gradient, QskGradient* gradients )
|
|
{
|
|
gradients[ 0 ] = gradients[ 1 ] = gradients[ 2 ] = gradients[ 3 ] = gradient;
|
|
}
|
|
|
|
static inline void qskSetGradients(
|
|
const QskGradient& left, const QskGradient& top,
|
|
const QskGradient& right, const QskGradient& bottom, QskGradient* gradients )
|
|
{
|
|
gradients[ Qsk::Left ] = left;
|
|
gradients[ Qsk::Top ] = top;
|
|
gradients[ Qsk::Right ] = right;
|
|
gradients[ Qsk::Bottom ] = bottom;
|
|
}
|
|
|
|
QskBoxBorderColors::QskBoxBorderColors()
|
|
{
|
|
}
|
|
|
|
QskBoxBorderColors::QskBoxBorderColors(
|
|
const QskGradient& left, const QskGradient& top,
|
|
const QskGradient& right, const QskGradient& bottom )
|
|
{
|
|
qskSetGradients( left, top, right, bottom, m_gradients );
|
|
}
|
|
|
|
QskBoxBorderColors::QskBoxBorderColors( const QColor& color )
|
|
{
|
|
qskSetGradients( color, m_gradients );
|
|
}
|
|
|
|
QskBoxBorderColors::QskBoxBorderColors( const QskGradient& gradient )
|
|
{
|
|
qskSetGradients( gradient, m_gradients );
|
|
}
|
|
|
|
QskBoxBorderColors::~QskBoxBorderColors()
|
|
{
|
|
}
|
|
|
|
bool QskBoxBorderColors::operator==( const QskBoxBorderColors& other ) const
|
|
{
|
|
return ( m_gradients[ 0 ] == other.m_gradients[ 0 ] ) &&
|
|
( m_gradients[ 1 ] == other.m_gradients[ 1 ] ) &&
|
|
( m_gradients[ 2 ] == other.m_gradients[ 2 ] ) &&
|
|
( m_gradients[ 3 ] == other.m_gradients[ 3 ] );
|
|
}
|
|
|
|
void QskBoxBorderColors::setAlpha( int alpha )
|
|
{
|
|
for ( int i = 0; i < 4; i++ )
|
|
{
|
|
if ( m_gradients[ i ].isValid() )
|
|
m_gradients[ i ].setAlpha( alpha );
|
|
}
|
|
}
|
|
|
|
void QskBoxBorderColors::setGradients( const QskGradient& gradient )
|
|
{
|
|
qskSetGradients( gradient, m_gradients );
|
|
}
|
|
|
|
void QskBoxBorderColors::setGradients( const QskGradient& left, const QskGradient& top,
|
|
const QskGradient& right, const QskGradient& bottom )
|
|
{
|
|
qskSetGradients( left, top, right, bottom, m_gradients );
|
|
}
|
|
|
|
void QskBoxBorderColors::setGradient( Qsk::Position position, const QskGradient& gradient )
|
|
{
|
|
m_gradients[ position ] = gradient;
|
|
}
|
|
|
|
void QskBoxBorderColors::setGradientAt( Qt::Edges edges, const QskGradient& gradient )
|
|
{
|
|
if ( edges & Qt::TopEdge )
|
|
m_gradients[ Qsk::Top ] = gradient;
|
|
|
|
if ( edges & Qt::LeftEdge )
|
|
m_gradients[ Qsk::Left ] = gradient;
|
|
|
|
if ( edges & Qt::RightEdge )
|
|
m_gradients[ Qsk::Right ] = gradient;
|
|
|
|
if ( edges & Qt::BottomEdge )
|
|
m_gradients[ Qsk::Bottom ] = gradient;
|
|
}
|
|
|
|
const QskGradient& QskBoxBorderColors::gradientAt( Qt::Edge edge ) const
|
|
{
|
|
switch ( edge )
|
|
{
|
|
case Qt::TopEdge:
|
|
return m_gradients[ Qsk::Top ];
|
|
|
|
case Qt::LeftEdge:
|
|
return m_gradients[ Qsk::Left ];
|
|
|
|
case Qt::RightEdge:
|
|
return m_gradients[ Qsk::Right ];
|
|
|
|
case Qt::BottomEdge:
|
|
return m_gradients[ Qsk::Bottom ];
|
|
}
|
|
|
|
static QskGradient noGradient;
|
|
return noGradient;
|
|
}
|
|
|
|
bool QskBoxBorderColors::isVisible() const
|
|
{
|
|
if ( m_gradients[ 0 ].isVisible() )
|
|
return true;
|
|
|
|
if ( m_gradients[ 1 ].isVisible() )
|
|
return true;
|
|
|
|
if ( m_gradients[ 2 ].isVisible() )
|
|
return true;
|
|
|
|
if ( m_gradients[ 3 ].isVisible() )
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
bool QskBoxBorderColors::isMonochrome() const
|
|
{
|
|
if ( m_gradients[ 1 ] != m_gradients[ 0 ] )
|
|
return false;
|
|
|
|
if ( m_gradients[ 2 ] != m_gradients[ 1 ] )
|
|
return false;
|
|
|
|
if ( m_gradients[ 3 ] != m_gradients[ 2 ] )
|
|
return false;
|
|
|
|
return m_gradients[ 0 ].isMonochrome()
|
|
&& m_gradients[ 1 ].isMonochrome()
|
|
&& m_gradients[ 2 ].isMonochrome()
|
|
&& m_gradients[ 3 ].isMonochrome();
|
|
}
|
|
|
|
QskBoxBorderColors QskBoxBorderColors::interpolated(
|
|
const QskBoxBorderColors& to, qreal ratio ) const
|
|
{
|
|
QskBoxBorderColors colors;
|
|
|
|
for ( size_t i = 0; i < 4; i++ )
|
|
{
|
|
colors.m_gradients[ i ] = colors.m_gradients[ i ].interpolated(
|
|
to.m_gradients[ i ], ratio );
|
|
}
|
|
|
|
return colors;
|
|
}
|
|
|
|
QVariant QskBoxBorderColors::interpolate(
|
|
const QskBoxBorderColors& from, const QskBoxBorderColors& to, qreal ratio )
|
|
{
|
|
return QVariant::fromValue( from.interpolated( to, ratio ) );
|
|
}
|
|
|
|
uint QskBoxBorderColors::hash( uint seed ) const
|
|
{
|
|
uint h = m_gradients[ 0 ].hash( seed );
|
|
h = m_gradients[ 1 ].hash( h );
|
|
h = m_gradients[ 2 ].hash( h );
|
|
h = m_gradients[ 3 ].hash( h );
|
|
|
|
return h;
|
|
}
|
|
|
|
#ifndef QT_NO_DEBUG_STREAM
|
|
|
|
#include <qdebug.h>
|
|
|
|
QDebug operator<<( QDebug debug, const QskBoxBorderColors& colors )
|
|
{
|
|
QDebugStateSaver saver( debug );
|
|
debug.nospace();
|
|
|
|
debug << "BoxBorderColors" << '(';
|
|
|
|
debug << " L" << colors.gradient( Qsk::Left );
|
|
|
|
debug << ", T" << colors.gradient( Qsk::Top );
|
|
|
|
debug << ", R" << colors.gradient( Qsk::Right );
|
|
|
|
debug << ", B" << colors.gradient( Qsk::Bottom );
|
|
|
|
debug << " )";
|
|
|
|
return debug;
|
|
}
|
|
|
|
#endif
|