6#include "QskProgressBarSkinlet.h"
7#include "QskProgressBar.h"
8#include "QskIntervalF.h"
9#include "QskBoxBorderMetrics.h"
11#include <qeasingcurve.h>
22 const auto pos = indicator->positionHint( Q::Fill );
24 static const QEasingCurve curve( QEasingCurve::InOutCubic );
26 const qreal off = 0.15;
28 pos1 = curve.valueForProgress( qMax( pos - off, 0.0 ) );
29 pos2 = curve.valueForProgress( qMin( pos + off, 1.0 ) );
38 if( bar->orientation() == Qt::Horizontal )
40 if ( bar->layoutMirroring() )
48 std::swap( pos1, pos2 );
57 if ( gradient.isVisible() && !gradient.isMonochrome()
58 && ( gradient.type() == QskGradient::Stops ) )
72 const auto intv = qskFillInterval( progressBar );
74 const auto stops = qskExtractedGradientStops(
75 gradient.stops(), intv.lowerBound(), intv.upperBound() );
77 gradient.setStops( stops );
79 gradient.setLinearDirection( progressBar->orientation() );
81 if ( progressBar->orientation() == Qt::Vertical || progressBar->
layoutMirroring() )
88QskProgressBarSkinlet::QskProgressBarSkinlet(
QskSkin* skin )
93QskProgressBarSkinlet::~QskProgressBarSkinlet()
97QRectF QskProgressBarSkinlet::subControlRect(
98 const QskSkinnable* skinnable,
const QRectF& contentsRect,
101 const auto bar =
static_cast< const Q*
>( skinnable );
103 if( subControl == Q::Groove )
104 return grooveRect( bar, contentsRect );
106 if( subControl == Q::Fill )
107 return fillRect( bar );
109 return Inherited::subControlRect( skinnable, contentsRect, subControl );
112QSGNode* QskProgressBarSkinlet::updateGrooveNode(
115 return updateBoxNode( indicator, node, Q::Groove );
118QSGNode* QskProgressBarSkinlet::updateFillNode(
122 if ( rect.isEmpty() )
125 const auto progressBar =
static_cast< const Q*
>( indicator );
126 return updateBoxNode( indicator, node, rect,
127 qskFillGradient( progressBar ), Q::Fill );
130QRectF QskProgressBarSkinlet::grooveRect(
131 const QskProgressBar* progressBar,
const QRectF& contentsRect )
const
135 auto rect = contentsRect;
136 if ( progressBar->orientation() == Qt::Horizontal )
138 rect.setY( rect.y() + 0.5 * ( rect.height() - size ) );
139 rect.setHeight( size );
143 rect.setX( rect.x() + 0.5 * ( rect.width() - size ) );
144 rect.setWidth( size );
150QRectF QskProgressBarSkinlet::fillRect(
const QskProgressBar* progressBar )
const
155 if ( progressBar->orientation() == Qt::Horizontal )
157 rect.setY( rect.y() + 0.5 * ( rect.height() - size ) );
158 rect.setHeight( size );
162 rect.setX( rect.x() + 0.5 * ( rect.width() - size ) );
163 rect.setWidth( size );
169 m += 0.5 * borderMetrics.toAbsolute( rect.size() ).widths();
171 rect = rect.marginsRemoved( m );
173 const auto intv = qskFillInterval( progressBar );
175 if( progressBar->orientation() == Qt::Horizontal )
177 const auto w = rect.width();
179 rect.setRight( rect.left() + intv.upperBound() * w );
180 rect.setLeft( rect.left() + intv.lowerBound() * w );
184 const auto h = rect.height();
186 rect.setTop( rect.bottom() - h * intv.upperBound() );
187 rect.setBottom( rect.bottom() - h * intv.lowerBound() );
193QSizeF QskProgressBarSkinlet::sizeHint(
const QskSkinnable* skinnable,
194 Qt::SizeHint which,
const QSizeF& )
const
196 if ( which != Qt::PreferredSize )
200 extent = qMax( extent, skinnable->metric( Q::Fill |
QskAspect::Size ) );
202 const auto progressBar =
static_cast< const QskProgressBar*
>( skinnable );
204 if ( progressBar->orientation() == Qt::Horizontal )
205 return QSizeF( -1, extent );
207 return QSizeF( extent, -1 );
210#include "moc_QskProgressBarSkinlet.cpp"
Subcontrol
For use within the rendering or lay-outing of a specific QskSkinnable.
QRectF subControlRect(QskAspect::Subcontrol) const
bool layoutMirroring() const
Base class for progress indicators.
bool isIndeterminate() const
QMarginsF paddingHint(QskAspect, QskSkinHintStatus *=nullptr) const
Retrieves a padding hint.
QskGradient gradientHint(QskAspect, QskSkinHintStatus *=nullptr) const
Retrieves a color hint as gradient.
QskBoxBorderMetrics boxBorderMetricsHint(QskAspect, QskSkinHintStatus *=nullptr) const
Retrieves a border hint.