QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskProgressIndicator.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskProgressIndicator.h"
7
8#include "QskIntervalF.h"
9#include "QskFunctions.h"
10#include "QskAnimator.h"
11#include "QskAspect.h"
12
13QSK_SUBCONTROL( QskProgressIndicator, Groove )
14QSK_SUBCONTROL( QskProgressIndicator, Fill )
15
16namespace
17{
18 class PositionAnimator : public QskAnimator
19 {
20 public:
21 PositionAnimator( QskProgressIndicator* indicator )
22 : m_indicator( indicator )
23 {
24 setAutoRepeat( true );
25 setDuration( 1300 );
26
27 setWindow( indicator->window() );
28 }
29
30 void advance( qreal value ) override
31 {
32 if ( m_indicator->setPositionHint( QskProgressIndicator::Fill, value ) )
33 m_indicator->update();
34 }
35
36 private:
37 QskProgressIndicator* m_indicator;
38 };
39}
40
41class QskProgressIndicator::PrivateData
42{
43 public:
44 void updateIndeterminateAnimator( QskProgressIndicator* indicator )
45 {
46 if ( !isIndeterminate )
47 {
48 delete animator;
49 animator = nullptr;
50
51 return;
52 }
53
54 if ( indicator->window() && indicator->isVisible() )
55 {
56 if ( animator == nullptr )
57 animator = new PositionAnimator( indicator );
58
59 animator->start();
60 }
61 else
62 {
63 if ( animator )
64 animator->stop();
65 }
66 }
67
68 PositionAnimator* animator = nullptr;
69
70 qreal value = 0.0;
71 qreal origin = 0.0;
72
73 bool hasOrigin = false;
74 bool isIndeterminate = false;
75};
76
77QskProgressIndicator::QskProgressIndicator( qreal min, qreal max, QQuickItem* parent )
78 : QskBoundedControl( min, max, parent )
79 , m_data( new PrivateData )
80{
81 m_data->value = minimum();
82
83 connect( this, &QskBoundedControl::boundariesChanged,
84 this, &QskProgressIndicator::adjustValue );
85}
86
88 : QskProgressIndicator( 0.0, 100.0, parent )
89{
90}
91
92QskProgressIndicator::QskProgressIndicator( const QskIntervalF& boundaries, QQuickItem* parent )
93 : QskProgressIndicator( boundaries.lowerBound(), boundaries.upperBound(), parent )
94{
95}
96
98{
99 delete m_data->animator;
100}
101
103{
104 return m_data->isIndeterminate;
105}
106
108{
109 if ( on == m_data->isIndeterminate )
110 return;
111
112 m_data->isIndeterminate = on;
113 m_data->updateIndeterminateAnimator( this );
114
115 update();
116 Q_EMIT indeterminateChanged( on );
117}
118
120{
121 setGradientHint( Fill, gradient );
122}
123
128
133
135{
136 if ( extent < 0.0 )
137 extent = 0.0;
138
140 Q_EMIT extentChanged( extent );
141}
142
148
150{
151 return metric( Groove | QskAspect::Size );
152}
153
155{
156 if ( isComponentComplete() )
157 origin = boundedValue( origin );
158
159 if( !m_data->hasOrigin || !qskFuzzyCompare( m_data->origin, origin ) )
160 {
161 m_data->hasOrigin = true;
162 m_data->origin = origin;
163
164 update();
165 Q_EMIT originChanged( origin );
166 }
167}
168
170{
171 if ( m_data->hasOrigin )
172 {
173 m_data->hasOrigin = false;
174
175 update();
176 Q_EMIT originChanged( origin() );
177 }
178}
179
181{
182 if ( m_data->hasOrigin )
183 {
184 return boundedValue( m_data->origin );
185 }
186
187 return minimum();
188}
189
191{
192 return m_data->hasOrigin;
193}
194
196{
197 if ( isComponentComplete() )
198 value = boundedValue( value );
199
200 setValueInternal( value );
201}
202
204{
205 return m_data->value;
206}
207
209{
210 ratio = qBound( 0.0, ratio, 1.0 );
211 setValue( minimum() + ratio * boundaryLength() );
212}
213
215{
216 return valueAsRatio( m_data->value );
217}
218
220{
221 Inherited::componentComplete();
222 adjustValue();
223}
224
225void QskProgressIndicator::adjustValue()
226{
227 if ( isComponentComplete() )
228 setValueInternal( boundedValue( m_data->value ) );
229}
230
231void QskProgressIndicator::setValueInternal( qreal value )
232{
233 if ( !qskFuzzyCompare( value, m_data->value ) )
234 {
235 m_data->value = value;
236 Q_EMIT valueChanged( value );
237
238 update();
239 }
240}
241
242void QskProgressIndicator::itemChange( QQuickItem::ItemChange change,
243 const QQuickItem::ItemChangeData& value )
244{
245 switch( static_cast< int >( change ) )
246 {
247 case QQuickItem::ItemVisibleHasChanged:
248 case QQuickItem::ItemSceneChange:
249 {
250 m_data->updateIndeterminateAnimator( this );
251 break;
252 }
253 }
254
255 Inherited::itemChange( change, value );
256}
257
258#include "moc_QskProgressIndicator.cpp"
void itemChange(ItemChange, const ItemChangeData &) override
Base class for progress indicators.
void itemChange(ItemChange, const ItemChangeData &) override
void setFillGradient(const QskGradient &)
QskGradient fillGradient() const
static const QskAspect::Subcontrol Fill
void extentChanged(qreal)
void originChanged(qreal)
void indeterminateChanged(bool)
QskProgressIndicator(QQuickItem *parent=nullptr)
void setIndeterminate(bool on=true)
static const QskAspect::Subcontrol Groove
void valueChanged(qreal)
bool resetColor(QskAspect)
Removes a color hint from the local table.
QskGradient gradientHint(QskAspect, QskSkinHintStatus *=nullptr) const
Retrieves a color hint as gradient.
bool setGradientHint(QskAspect, const QskGradient &)
Sets a gradient as color hint.
bool setMetric(QskAspect, qreal)
Sets a metric hint.
bool resetMetric(QskAspect)
Removes a metric hint from the local table.