QSkinny 0.8.0
C++/Qt UI toolkit
All Classes Namespaces Functions Variables Enumerations Enumerator Properties Pages
QskBoundedInput.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskBoundedInput.h"
7#include "QskFunctions.h"
8#include "QskIntervalF.h"
9#include "QskEvent.h"
10
11#include <cmath>
12
13QSK_SYSTEM_STATE( QskBoundedInput, ReadOnly, ( QskAspect::FirstSystemState << 1 ) )
14
15class QskBoundedInput::PrivateData
16{
17 public:
18 qreal stepSize = 0.1;
19 uint pageSteps = 1;
20
21 bool snapping = false;
22};
23
24QskBoundedInput::QskBoundedInput( QQuickItem* parent )
25 : Inherited( parent )
26 , m_data( new PrivateData )
27{
28 setFocusPolicy( Qt::StrongFocus );
29 setAcceptedMouseButtons( Qt::LeftButton );
30 setWheelEnabled( true );
31
32 if ( isComponentComplete() )
33 {
34 connect( this, &QskBoundedControl::boundariesChanged,
35 this, &QskBoundedInput::alignInput );
36 }
37}
38
39QskBoundedInput::~QskBoundedInput()
40{
41}
42
43void QskBoundedInput::setStepSize( qreal stepSize )
44{
45 if ( qFuzzyIsNull( stepSize ) )
46 stepSize = 0.0;
47
48 if ( qFuzzyCompare( m_data->stepSize, stepSize ) )
49 return;
50
51 m_data->stepSize = stepSize;
52 Q_EMIT stepSizeChanged( stepSize );
53
54 if ( isComponentComplete() )
55 {
56 if ( m_data->snapping && stepSize )
57 alignInput();
58 }
59}
60
61qreal QskBoundedInput::stepSize() const
62{
63 return m_data->stepSize;
64}
65
66void QskBoundedInput::setPageSteps( uint pageSteps )
67{
68 if ( m_data->pageSteps == pageSteps )
69 return;
70
71 m_data->pageSteps = pageSteps;
72 Q_EMIT pageStepsChanged( pageSteps );
73}
74
75uint QskBoundedInput::pageSteps() const
76{
77 return m_data->pageSteps;
78}
79
80qreal QskBoundedInput::pageSize() const
81{
82 return m_data->pageSteps * m_data->stepSize;
83}
84
85void QskBoundedInput::stepUp()
86{
87 increment( m_data->stepSize );
88}
89
90void QskBoundedInput::stepDown()
91{
92 increment( -m_data->stepSize );
93}
94
95void QskBoundedInput::pageUp()
96{
97 increment( pageSize() );
98}
99
100void QskBoundedInput::pageDown()
101{
102 increment( -pageSize() );
103}
104
105void QskBoundedInput::setSnapping( bool on )
106{
107 if ( m_data->snapping == on )
108 return;
109
110 m_data->snapping = on;
111 Q_EMIT snappingChanged( on );
112
113 if ( isComponentComplete() && m_data->snapping )
114 alignInput();
115}
116
117bool QskBoundedInput::isSnapping() const
118{
119 return m_data->snapping;
120}
121
122void QskBoundedInput::componentComplete()
123{
124 if ( isComponentComplete() )
125 {
126 connect( this, &QskBoundedControl::boundariesChanged,
127 this, &QskBoundedInput::alignInput, Qt::UniqueConnection );
128 }
129
130 Inherited::componentComplete();
131}
132
133void QskBoundedInput::alignInput()
134{
135}
136
137void QskBoundedInput::setReadOnly( bool readOnly )
138{
139 if ( readOnly == isReadOnly() )
140 return;
141
142 setSkinStateFlag( ReadOnly, readOnly );
143
144 // we are killing user settings here !!
145 setFocusPolicy( readOnly ? Qt::NoFocus : Qt::StrongFocus );
146 setAcceptedMouseButtons( readOnly ? Qt::NoButton : Qt::LeftButton );
147 setWheelEnabled( !readOnly );
148
149 Q_EMIT readOnlyChanged( readOnly );
150
151 QEvent event( QEvent::ReadOnlyChange );
152 QCoreApplication::sendEvent( this, &event );
153}
154
155bool QskBoundedInput::isReadOnly() const
156{
157 return hasSkinState( ReadOnly );
158}
159
160qreal QskBoundedInput::incrementForKey( const QKeyEvent* event ) const
161{
162 switch( event->key() )
163 {
164 case Qt::Key_Up:
165 return m_data->stepSize;
166
167 case Qt::Key_Down:
168 return -m_data->stepSize;
169
170 case Qt::Key_PageUp:
171 return pageSize();
172
173 case Qt::Key_PageDown:
174 return -pageSize();
175 }
176
177 return 0.0;
178}
179
180void QskBoundedInput::keyPressEvent( QKeyEvent* event )
181{
182 if ( !isReadOnly() )
183 {
184 if ( const auto offset = incrementForKey( event ) )
185 {
186 increment( offset );
187 return;
188 }
189 }
190
191 Inherited::keyPressEvent( event );
192}
193
194#ifndef QT_NO_WHEELEVENT
195
196void QskBoundedInput::wheelEvent( QWheelEvent* event )
197{
198 if ( isReadOnly() )
199 {
200 Inherited::wheelEvent( event );
201 return;
202 }
203
204 auto offset = qskWheelIncrement( event ) * m_data->stepSize;
205 if ( event->modifiers() & ( Qt::ControlModifier | Qt::ShiftModifier ) )
206 offset *= m_data->pageSteps;
207
208 increment( offset );
209}
210
211#endif
212
213#include "moc_QskBoundedInput.cpp"
@ FirstSystemState
Definition QskAspect.h:115
void setSkinStateFlag(QskAspect::State, bool on=true)