6#include "QskTextInput.h"
8#include "QskInternalMacros.h"
11#include <private/qquicktextinput_p.h>
12#include <private/qquicktextinput_p_p.h>
38 class QuickTextInput final :
public QQuickTextInput
42 using Inherited = QQuickTextInput;
47 inline void setAlignment( Qt::Alignment alignment )
49 setHAlign( ( HAlignment ) (
int( alignment ) & 0x0f ) );
50 setVAlign( ( VAlignment ) (
int( alignment ) & 0xf0 ) );
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* );
61#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
63 const QRectF& newGeometry,
const QRectF& oldGeometry )
override
65 Inherited::geometryChange( newGeometry, oldGeometry );
70 const QRectF& newGeometry,
const QRectF& oldGeometry )
override
72 Inherited::geometryChanged( newGeometry, oldGeometry );
79 setClip( ( contentWidth() > width() ) ||
80 ( contentHeight() > height() ) );
83 QSGNode* updatePaintNode(
84 QSGNode* oldNode, UpdatePaintNodeData* data )
override
87 return Inherited::updatePaintNode( oldNode, data );
91 QuickTextInput::QuickTextInput(
QskTextInput* textInput )
92 : QQuickTextInput( textInput )
96 setActiveFocusOnTab(
false );
97 setFlag( ItemAcceptsInputMethod,
false );
98 setFocusOnPress(
false );
99 setSelectByMouse(
true );
103 connect(
this, &QQuickTextInput::contentSizeChanged,
104 this, &QuickTextInput::updateClip );
107 void QuickTextInput::setEditing(
bool on )
109 Q_ASSERT( focusOnPress() ==
false );
111 QFocusEvent event( on ? QEvent::FocusIn : QEvent::FocusOut );
112 QQuickTextInputPrivate::get(
this )->handleFocusEvent( &event );
115 bool QuickTextInput::fixup()
117 return QQuickTextInputPrivate::get(
this )->fixup();
120 void QuickTextInput::updateMetrics()
122 auto textInput =
static_cast< const QskTextInput*
>( parentItem() );
124 setAlignment( textInput->alignment() );
125 setFont( textInput->font() );
128 void QuickTextInput::updateColors()
132 auto input =
static_cast< const QskTextInput*
>( parentItem() );
134 setColor( input->color( Q::Text ) );
136 const auto state = QskTextInput::Selected;
138 setSelectionColor( input->color( Q::TextPanel | state ) );
139 setSelectedTextColor( input->color( Q::Text | state ) );
142 void QuickTextInput::handleEvent( QEvent* ev )
148class QskTextInput::PrivateData
151 QuickTextInput* wrappedInput;
154QskTextInput::QskTextInput( QQuickItem* parent )
155 : Inherited( parent )
156 , m_data( new PrivateData() )
158 m_data->wrappedInput =
new QuickTextInput(
this );
159 auto wrappedInput = m_data->wrappedInput;
161 setAcceptedMouseButtons( wrappedInput->acceptedMouseButtons() );
162 wrappedInput->setAcceptedMouseButtons( Qt::NoButton );
164 initSizePolicy( QskSizePolicy::Expanding, QskSizePolicy::Fixed );
166 setup( wrappedInput );
168 connect( wrappedInput, &QQuickTextInput::maximumLengthChanged,
169 this, &QskTextInput::maximumLengthChanged );
171 connect( wrappedInput, &QQuickTextInput::displayTextChanged,
172 this, &QskTextInput::displayTextChanged );
174 connect( wrappedInput, &QQuickTextInput::inputMaskChanged,
175 this, &QskTextInput::inputMaskChanged );
177 connect( wrappedInput, &QQuickTextInput::acceptableInputChanged,
178 this, [
this]() { Q_EMIT acceptableInputChanged( hasAcceptableInput() ); } );
181QskTextInput::~QskTextInput()
188 if ( subControl == Inherited::Text )
191 if ( subControl == Inherited::TextPanel )
194 return Inherited::substitutedSubcontrol( subControl );
197void QskTextInput::ensureVisible(
int position )
199 m_data->wrappedInput->ensureVisible( position );
202int QskTextInput::maxLength()
const
204 return m_data->wrappedInput->maxLength();
207void QskTextInput::setMaxLength(
int length )
209 m_data->wrappedInput->setMaxLength( length );
212QValidator* QskTextInput::validator()
const
214 return m_data->wrappedInput->validator();
217void QskTextInput::setValidator( QValidator* validator )
219 if ( validator != m_data->wrappedInput->validator() )
221 m_data->wrappedInput->setValidator( validator );
222 Q_EMIT validatorChanged( validator );
226QString QskTextInput::inputMask()
const
228 return m_data->wrappedInput->inputMask();
231void QskTextInput::setInputMask(
const QString& mask )
233 m_data->wrappedInput->setInputMask( mask );
236bool QskTextInput::autoScroll()
const
238 return m_data->wrappedInput->autoScroll();
241void QskTextInput::setAutoScroll(
bool on )
243 if ( m_data->wrappedInput->autoScroll() != on )
245 m_data->wrappedInput->setAutoScroll( on );
246 Q_EMIT autoScrollChanged( on );
250QskTextInput::EchoMode QskTextInput::echoMode()
const
252 const auto mode = m_data->wrappedInput->echoMode();
253 return static_cast< QskTextInput::EchoMode
>( mode );
256void QskTextInput::setEchoMode( EchoMode mode )
258 if ( mode != echoMode() )
260 m_data->wrappedInput->setEchoMode(
261 static_cast< QQuickTextInput::EchoMode
>( mode ) );
263 qskUpdateInputMethod(
this, Qt::ImHints );
265 Q_EMIT echoModeChanged( mode );
269QString QskTextInput::passwordCharacter()
const
271 return m_data->wrappedInput->passwordCharacter();
274void QskTextInput::setPasswordCharacter(
const QString& text )
276 m_data->wrappedInput->setPasswordCharacter( text );
279void QskTextInput::resetPasswordCharacter()
281 m_data->wrappedInput->setPasswordCharacter(
282 QGuiApplication::styleHints()->passwordMaskCharacter() );
285int QskTextInput::passwordMaskDelay()
const
287 return m_data->wrappedInput->passwordMaskDelay();
290void QskTextInput::setPasswordMaskDelay(
int ms )
292 m_data->wrappedInput->setPasswordMaskDelay( ms );
295void QskTextInput::resetPasswordMaskDelay()
297 m_data->wrappedInput->resetPasswordMaskDelay();
300QString QskTextInput::displayText()
const
302 return m_data->wrappedInput->displayText();
305bool QskTextInput::hasAcceptableInput()
const
312 return m_data->wrappedInput->hasAcceptableInput();
315bool QskTextInput::fixup()
317 return m_data->wrappedInput->fixup();
320#include "QskTextInput.moc"
321#include "moc_QskTextInput.cpp"
Subcontrol
For use within the rendering or lay-outing of a specific QskSkinnable.