QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextInput.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskTextInput.h"
7#include "QskQuick.h"
8#include "QskInternalMacros.h"
9
10QSK_QT_PRIVATE_BEGIN
11#include <private/qquicktextinput_p.h>
12#include <private/qquicktextinput_p_p.h>
13QSK_QT_PRIVATE_END
14
15QSK_SUBCONTROL( QskTextInput, Text )
16QSK_SUBCONTROL( QskTextInput, TextPanel )
17QSK_SYSTEM_STATE( QskTextInput, Error, QskAspect::FirstSystemState << 4 )
18
19/*
20 Other properties offered from QQuickTextInput:
21
22 - accepted();
23
24 What is this one good for ?
25
26 - textEdited();
27
28 TODO ...
29
30 - passwordCharacterChanged();
31 - passwordMaskDelayChanged(int delay);
32
33 Maybe we will have a QskPasswordField class, where we export
34 these properties.
35 */
36namespace
37{
38 class QuickTextInput final : public QQuickTextInput
39 {
40 Q_OBJECT
41
42 using Inherited = QQuickTextInput;
43
44 public:
45 QuickTextInput( QskTextInput* );
46
47 inline void setAlignment( Qt::Alignment alignment )
48 {
49 setHAlign( ( HAlignment ) ( int( alignment ) & 0x0f ) );
50 setVAlign( ( VAlignment ) ( int( alignment ) & 0xf0 ) );
51 }
52
53 Q_INVOKABLE bool fixup();
54 Q_INVOKABLE void updateColors();
55 Q_INVOKABLE void updateMetrics();
56 Q_INVOKABLE void setEditing( bool );
57 Q_INVOKABLE void handleEvent( QEvent* );
58
59 protected:
60
61#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
62 void geometryChange(
63 const QRectF& newGeometry, const QRectF& oldGeometry ) override
64 {
65 Inherited::geometryChange( newGeometry, oldGeometry );
66 updateClip();
67 }
68#else
69 void geometryChanged(
70 const QRectF& newGeometry, const QRectF& oldGeometry ) override
71 {
72 Inherited::geometryChanged( newGeometry, oldGeometry );
73 updateClip();
74 }
75#endif
76
77 void updateClip()
78 {
79 setClip( ( contentWidth() > width() ) ||
80 ( contentHeight() > height() ) );
81 }
82
83 QSGNode* updatePaintNode(
84 QSGNode* oldNode, UpdatePaintNodeData* data ) override
85 {
86 updateColors();
87 return Inherited::updatePaintNode( oldNode, data );
88 }
89 };
90
91 QuickTextInput::QuickTextInput( QskTextInput* textInput )
92 : QQuickTextInput( textInput )
93 {
94 classBegin();
95
96 setActiveFocusOnTab( false );
97 setFlag( ItemAcceptsInputMethod, false );
98 setFocusOnPress( false );
99 setSelectByMouse( true );
100
101 componentComplete();
102
103 connect( this, &QQuickTextInput::contentSizeChanged,
104 this, &QuickTextInput::updateClip );
105 }
106
107 void QuickTextInput::setEditing( bool on )
108 {
109 Q_ASSERT( focusOnPress() == false );
110
111 QFocusEvent event( on ? QEvent::FocusIn : QEvent::FocusOut );
112 QQuickTextInputPrivate::get( this )->handleFocusEvent( &event );
113 }
114
115 bool QuickTextInput::fixup()
116 {
117 return QQuickTextInputPrivate::get( this )->fixup();
118 }
119
120 void QuickTextInput::updateMetrics()
121 {
122 auto textInput = static_cast< const QskTextInput* >( parentItem() );
123
124 setAlignment( textInput->alignment() );
125 setFont( textInput->font() );
126 }
127
128 void QuickTextInput::updateColors()
129 {
130 using Q = QskTextInput;
131
132 auto input = static_cast< const QskTextInput* >( parentItem() );
133
134 setColor( input->color( Q::Text ) );
135
136 const auto state = QskTextInput::Selected;
137
138 setSelectionColor( input->color( Q::TextPanel | state ) );
139 setSelectedTextColor( input->color( Q::Text | state ) );
140 }
141
142 void QuickTextInput::handleEvent( QEvent* ev )
143 {
144 event( ev );
145 }
146}
147
148class QskTextInput::PrivateData
149{
150 public:
151 QuickTextInput* wrappedInput;
152};
153
154QskTextInput::QskTextInput( QQuickItem* parent )
155 : Inherited( parent )
156 , m_data( new PrivateData() )
157{
158 m_data->wrappedInput = new QuickTextInput( this );
159 auto wrappedInput = m_data->wrappedInput;
160
161 setAcceptedMouseButtons( wrappedInput->acceptedMouseButtons() );
162 wrappedInput->setAcceptedMouseButtons( Qt::NoButton );
163
164 initSizePolicy( QskSizePolicy::Expanding, QskSizePolicy::Fixed );
165
166 setup( wrappedInput );
167
168 connect( wrappedInput, &QQuickTextInput::maximumLengthChanged,
169 this, &QskTextInput::maximumLengthChanged );
170
171 connect( wrappedInput, &QQuickTextInput::displayTextChanged,
172 this, &QskTextInput::displayTextChanged );
173
174 connect( wrappedInput, &QQuickTextInput::inputMaskChanged,
175 this, &QskTextInput::inputMaskChanged );
176
177 connect( wrappedInput, &QQuickTextInput::acceptableInputChanged,
178 this, [this]() { Q_EMIT acceptableInputChanged( hasAcceptableInput() ); } );
179}
180
181QskTextInput::~QskTextInput()
182{
183}
184
185QskAspect::Subcontrol QskTextInput::substitutedSubcontrol(
186 QskAspect::Subcontrol subControl ) const
187{
188 if ( subControl == Inherited::Text )
189 return Text;
190
191 if ( subControl == Inherited::TextPanel )
192 return TextPanel;
193
194 return Inherited::substitutedSubcontrol( subControl );
195}
196
197void QskTextInput::ensureVisible( int position )
198{
199 m_data->wrappedInput->ensureVisible( position );
200}
201
202int QskTextInput::maxLength() const
203{
204 return m_data->wrappedInput->maxLength();
205}
206
207void QskTextInput::setMaxLength( int length )
208{
209 m_data->wrappedInput->setMaxLength( length );
210}
211
212QValidator* QskTextInput::validator() const
213{
214 return m_data->wrappedInput->validator();
215}
216
217void QskTextInput::setValidator( QValidator* validator )
218{
219 if ( validator != m_data->wrappedInput->validator() )
220 {
221 m_data->wrappedInput->setValidator( validator );
222 Q_EMIT validatorChanged( validator );
223 }
224}
225
226QString QskTextInput::inputMask() const
227{
228 return m_data->wrappedInput->inputMask();
229}
230
231void QskTextInput::setInputMask( const QString& mask )
232{
233 m_data->wrappedInput->setInputMask( mask );
234}
235
236bool QskTextInput::autoScroll() const
237{
238 return m_data->wrappedInput->autoScroll();
239}
240
241void QskTextInput::setAutoScroll( bool on )
242{
243 if ( m_data->wrappedInput->autoScroll() != on )
244 {
245 m_data->wrappedInput->setAutoScroll( on );
246 Q_EMIT autoScrollChanged( on );
247 }
248}
249
250QskTextInput::EchoMode QskTextInput::echoMode() const
251{
252 const auto mode = m_data->wrappedInput->echoMode();
253 return static_cast< QskTextInput::EchoMode >( mode );
254}
255
256void QskTextInput::setEchoMode( EchoMode mode )
257{
258 if ( mode != echoMode() )
259 {
260 m_data->wrappedInput->setEchoMode(
261 static_cast< QQuickTextInput::EchoMode >( mode ) );
262
263 qskUpdateInputMethod( this, Qt::ImHints );
264
265 Q_EMIT echoModeChanged( mode );
266 }
267}
268
269QString QskTextInput::passwordCharacter() const
270{
271 return m_data->wrappedInput->passwordCharacter();
272}
273
274void QskTextInput::setPasswordCharacter( const QString& text )
275{
276 m_data->wrappedInput->setPasswordCharacter( text );
277}
278
279void QskTextInput::resetPasswordCharacter()
280{
281 m_data->wrappedInput->setPasswordCharacter(
282 QGuiApplication::styleHints()->passwordMaskCharacter() );
283}
284
285int QskTextInput::passwordMaskDelay() const
286{
287 return m_data->wrappedInput->passwordMaskDelay();
288}
289
290void QskTextInput::setPasswordMaskDelay( int ms )
291{
292 m_data->wrappedInput->setPasswordMaskDelay( ms );
293}
294
295void QskTextInput::resetPasswordMaskDelay()
296{
297 m_data->wrappedInput->resetPasswordMaskDelay();
298}
299
300QString QskTextInput::displayText() const
301{
302 return m_data->wrappedInput->displayText();
303}
304
305bool QskTextInput::hasAcceptableInput() const
306{
307 /*
308 We might want to make visual adjustments while having
309 an "invalid" text. Don't we need a QSkinny state
310 for this: TODO ...
311 */
312 return m_data->wrappedInput->hasAcceptableInput();
313}
314
315bool QskTextInput::fixup()
316{
317 return m_data->wrappedInput->fixup();
318}
319
320#include "QskTextInput.moc"
321#include "moc_QskTextInput.cpp"
@ FirstSystemState
Definition QskAspect.h:115
Subcontrol
For use within the rendering or lay-outing of a specific QskSkinnable.
Definition QskAspect.h:104