qskinny/src/controls/QskTextInput.cpp

756 lines
18 KiB
C++
Raw Normal View History

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#include "QskTextInput.h"
2018-04-09 10:05:59 +02:00
// VS2012+ disable keyword macroizing unless _ALLOW_KEYWORD_MACROS is set
#ifdef _MSC_VER
#if ( _MSC_VER >= 1700 ) && !defined( _ALLOW_KEYWORD_MACROS )
#define _ALLOW_KEYWORD_MACROS
#endif
#endif
QSK_QT_PRIVATE_BEGIN
// we need to access QQuickTextInputPrivate::hasAcceptableInput
2018-04-09 10:05:59 +02:00
#define private public
#include <private/qquicktextinput_p.h>
2018-04-03 20:15:20 +02:00
#include <private/qquicktextinput_p_p.h>
2018-04-09 10:05:59 +02:00
#undef private
QSK_QT_PRIVATE_END
2018-04-13 16:32:48 +02:00
QSK_SUBCONTROL( QskTextInput, Panel )
QSK_SUBCONTROL( QskTextInput, Text )
2018-04-18 10:46:11 +02:00
QSK_SUBCONTROL( QskTextInput, PanelSelected )
QSK_SUBCONTROL( QskTextInput, TextSelected )
2018-04-13 16:32:48 +02:00
QSK_STATE( QskTextInput, ReadOnly, QskAspect::FirstSystemState << 1 )
QSK_STATE( QskTextInput, Editing, QskAspect::FirstSystemState << 2 )
2018-04-03 20:15:20 +02:00
static inline void qskBindSignals( const QQuickTextInput* wrappedInput,
QskTextInput* input )
{
QObject::connect( wrappedInput, &QQuickTextInput::textChanged,
input, [ input ] { input->Q_EMIT textChanged( input->text() ); } );
2018-04-04 12:05:01 +02:00
#if QT_VERSION >= QT_VERSION_CHECK(5, 9, 0)
2018-04-03 20:15:20 +02:00
QObject::connect( wrappedInput, &QQuickTextInput::textEdited,
input, [ input ] { input->Q_EMIT textEdited( input->text() ); } );
2018-04-04 12:05:01 +02:00
#endif
2018-04-03 20:15:20 +02:00
QObject::connect( wrappedInput, &QQuickTextInput::textChanged,
input, [ input ] { input->Q_EMIT textChanged( input->text() ); } );
QObject::connect( wrappedInput, &QQuickTextInput::validatorChanged,
input, &QskTextInput::validatorChanged );
QObject::connect( wrappedInput, &QQuickTextInput::inputMaskChanged,
input, &QskTextInput::inputMaskChanged );
QObject::connect( wrappedInput, &QQuickTextInput::readOnlyChanged,
input, &QskTextInput::readOnlyChanged );
2018-04-04 12:05:01 +02:00
#if QT_VERSION >= QT_VERSION_CHECK(5, 8, 0)
2018-04-03 20:15:20 +02:00
QObject::connect( wrappedInput, &QQuickTextInput::overwriteModeChanged,
input, &QskTextInput::overwriteModeChanged );
2018-04-04 12:05:01 +02:00
#endif
2018-04-03 20:15:20 +02:00
QObject::connect( wrappedInput, &QQuickTextInput::maximumLengthChanged,
input, &QskTextInput::maximumLengthChanged );
QObject::connect( wrappedInput, &QQuickTextInput::echoModeChanged,
input, [ input ] { input->Q_EMIT echoModeChanged( input->echoMode() ); } );
QObject::connect( wrappedInput, &QQuickItem::implicitWidthChanged,
input, &QskControl::resetImplicitSize );
QObject::connect( wrappedInput, &QQuickItem::implicitHeightChanged,
input, &QskControl::resetImplicitSize );
}
namespace
{
class TextInput final : public QQuickTextInput
{
2018-04-18 10:46:11 +02:00
using Inherited = QQuickTextInput;
public:
2018-04-13 16:32:48 +02:00
TextInput( QskTextInput* );
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
void setEditing( bool on );
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
inline void setAlignment( Qt::Alignment alignment )
{
setHAlign( ( HAlignment ) ( int( alignment ) & 0x0f ) );
setVAlign( ( VAlignment ) ( int( alignment ) & 0xf0 ) );
}
2018-04-13 16:32:48 +02:00
bool fixup()
2018-04-09 10:05:59 +02:00
{
auto d = QQuickTextInputPrivate::get( this );
// QQuickTextInputPrivate::checkIsValid ???
2018-04-13 16:32:48 +02:00
const auto state = static_cast< int >( d->hasAcceptableInput( d->m_text ) );
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
bool isAcceptable = ( state == QValidator::Acceptable );
if ( !isAcceptable )
isAcceptable = d->fixup();
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
return isAcceptable;
}
2018-04-09 10:05:59 +02:00
2018-04-18 10:46:11 +02:00
void updateColors();
void updateMetrics();
inline bool handleEvent( QEvent* event )
{
return this->event( event );
}
2018-04-13 16:32:48 +02:00
protected:
virtual void geometryChanged(
const QRectF& newGeometry, const QRectF& oldGeometry ) override
{
2018-04-18 10:46:11 +02:00
Inherited::geometryChanged( newGeometry, oldGeometry );
2018-04-13 16:32:48 +02:00
updateClip();
}
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
void updateClip()
{
setClip( ( contentWidth() > width() ) ||
( contentHeight() > height() ) );
}
2018-04-18 10:46:11 +02:00
virtual QSGNode* updatePaintNode(
QSGNode* oldNode, UpdatePaintNodeData* data ) override
2018-04-18 10:46:11 +02:00
{
updateColors();
return Inherited::updatePaintNode( oldNode, data );
}
2018-04-13 16:32:48 +02:00
};
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
TextInput::TextInput( QskTextInput* textInput ):
QQuickTextInput( textInput )
{
classBegin();
2018-04-13 16:32:48 +02:00
setActiveFocusOnTab( false );
setFlag( ItemAcceptsInputMethod, false );
setFocusOnPress( false );
2018-04-03 20:15:20 +02:00
2018-04-13 16:32:48 +02:00
componentComplete();
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
connect( this, &TextInput::contentSizeChanged,
this, &TextInput::updateClip );
}
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
void TextInput::setEditing( bool on )
{
auto d = QQuickTextInputPrivate::get( this );
2018-04-13 16:32:48 +02:00
if ( d->cursorVisible == on )
return;
2018-04-09 10:05:59 +02:00
2018-04-13 16:32:48 +02:00
setCursorVisible( on );
2018-04-23 10:42:37 +02:00
#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
2018-04-18 10:46:11 +02:00
d->setBlinkingCursorEnabled( on );
2018-04-23 10:42:37 +02:00
#endif
2018-04-03 20:15:20 +02:00
2018-04-13 16:32:48 +02:00
if ( !on )
{
2018-04-09 10:05:59 +02:00
if ( d->m_passwordEchoEditing || d->m_passwordEchoTimer.isActive() )
d->updatePasswordEchoEditing( false );
}
2018-04-13 16:32:48 +02:00
polish();
update();
}
2018-04-18 10:46:11 +02:00
void TextInput::updateMetrics()
{
auto input = static_cast< const QskTextInput* >( parentItem() );
setAlignment( input->alignment() );
setFont( input->font() );
}
void TextInput::updateColors()
{
auto input = static_cast< const QskTextInput* >( parentItem() );
auto d = QQuickTextInputPrivate::get( this );
bool isDirty = false;
QColor color;
color = input->color( QskTextInput::Text );
if ( d->color != color )
{
d->color = color;
isDirty = true;
}
if ( d->hasSelectedText() )
{
color = input->color( QskTextInput::PanelSelected );
if ( d->selectionColor != color )
{
d->selectionColor = color;
isDirty = true;
}
color = input->color( QskTextInput::TextSelected );
if ( d->selectedTextColor != color )
{
d->selectedTextColor = color;
isDirty = true;
}
}
if ( isDirty )
{
d->textLayoutDirty = true;
d->updateType = QQuickTextInputPrivate::UpdatePaintNode;
update();
}
}
}
class QskTextInput::PrivateData
{
public:
TextInput* textInput;
QString description; // f.e. used as prompt in QskInputPanel
2018-04-13 16:32:48 +02:00
unsigned int activationModes : 3;
};
QskTextInput::QskTextInput( QQuickItem* parent ):
Inherited( parent ),
m_data( new PrivateData() )
{
2018-04-13 16:32:48 +02:00
m_data->activationModes = ActivationOnMouse | ActivationOnKey;
2018-04-03 20:15:20 +02:00
setPolishOnResize( true );
setFocusPolicy( Qt::StrongFocus );
2018-04-03 20:15:20 +02:00
setFlag( QQuickItem::ItemAcceptsInputMethod );
/*
QQuickTextInput is a beast of almost 5k lines of code, we don't
want to reimplement that - at least not now.
So this is more or less a simple wrapper making everything
conforming to qskinny.
*/
2018-04-03 20:15:20 +02:00
m_data->textInput = new TextInput( this );
qskBindSignals( m_data->textInput, this );
2018-04-03 20:15:20 +02:00
setAcceptedMouseButtons( m_data->textInput->acceptedMouseButtons() );
m_data->textInput->setAcceptedMouseButtons( Qt::NoButton );
2018-04-03 20:15:20 +02:00
initSizePolicy( QskSizePolicy::Minimum, QskSizePolicy::Fixed );
}
2018-04-03 20:15:20 +02:00
QskTextInput::QskTextInput( const QString& text, QQuickItem* parent ):
QskTextInput( parent )
{
m_data->textInput->setText( text );
}
2018-04-03 20:15:20 +02:00
QskTextInput::~QskTextInput()
{
}
2018-04-03 20:15:20 +02:00
bool QskTextInput::event( QEvent* event )
{
if ( event->type() == QEvent::ShortcutOverride )
{
return m_data->textInput->handleEvent( event );
}
else if ( event->type() == QEvent::LocaleChange )
{
qskUpdateInputMethod( this, Qt::ImPreferredLanguage );
}
2018-04-03 20:15:20 +02:00
return Inherited::event( event );
}
2018-04-03 20:15:20 +02:00
void QskTextInput::keyPressEvent( QKeyEvent* event )
{
if ( isEditing() )
2018-04-13 16:32:48 +02:00
{
2018-04-18 10:46:11 +02:00
switch( event->key() )
2018-04-13 16:32:48 +02:00
{
2018-04-18 10:46:11 +02:00
case Qt::Key_Enter:
case Qt::Key_Return:
2018-04-13 16:32:48 +02:00
{
if ( fixup() )
2018-04-18 10:46:11 +02:00
{
QGuiApplication::inputMethod()->commit();
if ( !( inputMethodHints() & Qt::ImhMultiLine ) )
2018-04-18 10:46:11 +02:00
setEditing( false );
}
2018-04-18 10:46:11 +02:00
break;
}
#if 1
case Qt::Key_Escape:
{
QGuiApplication::inputMethod()->hide();
setEditing( false );
2018-04-18 10:46:11 +02:00
break;
}
#endif
default:
{
m_data->textInput->handleEvent( event );
}
2018-04-13 16:32:48 +02:00
}
return;
}
2018-04-13 16:32:48 +02:00
if ( ( m_data->activationModes & ActivationOnKey ) && !event->isAutoRepeat() )
{
if ( event->key() == Qt::Key_Select || event->key() == Qt::Key_Space )
{
setEditing( true );
return;
}
}
Inherited::keyPressEvent( event );
2018-04-03 20:15:20 +02:00
}
2018-04-03 20:15:20 +02:00
void QskTextInput::keyReleaseEvent( QKeyEvent* event )
{
Inherited::keyReleaseEvent( event );
}
void QskTextInput::mousePressEvent( QMouseEvent* event )
{
m_data->textInput->handleEvent( event );
if ( !isReadOnly() && !qGuiApp->styleHints()->setFocusOnTouchRelease() )
2018-04-13 16:32:48 +02:00
setEditing( true );
}
void QskTextInput::mouseMoveEvent( QMouseEvent* event )
{
m_data->textInput->handleEvent( event );
}
void QskTextInput::mouseReleaseEvent( QMouseEvent* event )
{
m_data->textInput->handleEvent( event );
if ( !isReadOnly() && qGuiApp->styleHints()->setFocusOnTouchRelease() )
2018-04-13 16:32:48 +02:00
setEditing( true );
}
void QskTextInput::mouseDoubleClickEvent( QMouseEvent* event )
{
m_data->textInput->handleEvent( event );
}
2018-04-03 20:15:20 +02:00
void QskTextInput::inputMethodEvent( QInputMethodEvent* event )
{
m_data->textInput->handleEvent( event );
}
2018-04-03 20:15:20 +02:00
void QskTextInput::focusInEvent( QFocusEvent* event )
{
2018-04-18 10:46:11 +02:00
if ( m_data->activationModes & ActivationOnFocus )
{
switch( event->reason() )
{
case Qt::ActiveWindowFocusReason:
case Qt::PopupFocusReason:
break;
default:
setEditing( true );
}
}
2018-04-03 20:15:20 +02:00
Inherited::focusInEvent( event );
}
2018-04-03 20:15:20 +02:00
void QskTextInput::focusOutEvent( QFocusEvent* event )
{
2018-04-13 16:32:48 +02:00
#if 1
if ( event->reason() != Qt::ActiveWindowFocusReason
&& event->reason() != Qt::PopupFocusReason )
{
2018-04-13 16:32:48 +02:00
m_data->textInput->deselect();
}
2018-04-13 16:32:48 +02:00
#endif
if ( m_data->activationModes & ActivationOnFocus )
{
#if 0
if ( !hasFocus() )
{
setEditing( false );
}
#endif
}
2018-04-03 20:15:20 +02:00
Inherited::focusOutEvent( event );
}
QSizeF QskTextInput::contentsSizeHint() const
{
using namespace QskAspect;
2018-04-18 10:46:11 +02:00
auto input = m_data->textInput;
input->updateMetrics();
const qreal w = input->implicitWidth();
const qreal h = input->implicitHeight();
const QSizeF minSize( metric( Panel | MinimumWidth ),
metric( Panel | MinimumHeight ) );
return outerBoxSize( Panel, QSizeF( w, h ) ).expandedTo( minSize );
}
void QskTextInput::updateLayout()
{
2018-04-03 20:15:20 +02:00
auto input = m_data->textInput;
2018-04-18 10:46:11 +02:00
input->updateMetrics();
2018-04-03 20:15:20 +02:00
qskSetItemGeometry( input, subControlRect( Text ) );
}
2018-04-18 10:46:11 +02:00
void QskTextInput::updateNode( QSGNode* node )
{
m_data->textInput->updateColors();
Inherited::updateNode( node );
}
QString QskTextInput::text() const
{
return m_data->textInput->text();
}
void QskTextInput::setText( const QString& text )
{
m_data->textInput->setText( text );
}
void QskTextInput::setDescription( const QString& text )
{
if ( m_data->description != text )
{
m_data->description = text;
Q_EMIT descriptionChanged( text );
}
}
QString QskTextInput::description() const
{
return m_data->description;
}
2018-04-13 16:32:48 +02:00
QskTextInput::ActivationModes QskTextInput::activationModes() const
{
return static_cast< QskTextInput::ActivationModes >( m_data->activationModes );
}
void QskTextInput::setActivationModes( ActivationModes modes )
{
2018-04-23 10:42:37 +02:00
if ( static_cast< ActivationModes >( m_data->activationModes ) != modes )
2018-04-13 16:32:48 +02:00
{
m_data->activationModes = modes;
Q_EMIT activationModesChanged();
}
}
int QskTextInput::fontRole() const
{
return QskSkinnable::fontRole( Text );
}
void QskTextInput::setFontRole( int role )
{
const int oldRole = fontRole();
QskSkinnable::setFontRole( effectiveSubcontrol( Text ), role );
if ( oldRole != role )
{
2018-04-03 20:15:20 +02:00
polish();
resetImplicitSize();
2018-04-04 12:05:01 +02:00
Qt::InputMethodQueries queries = Qt::ImCursorRectangle | Qt::ImFont;
#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
queries |= Qt::ImAnchorRectangle;
#endif
2018-04-03 20:15:20 +02:00
2018-04-04 12:05:01 +02:00
qskUpdateInputMethod( this, queries );
Q_EMIT fontRoleChanged();
}
}
void QskTextInput::setAlignment( Qt::Alignment alignment )
{
if ( alignment != this->alignment() )
{
const auto subControl = effectiveSubcontrol( Text );
setFlagHint( subControl | QskAspect::Alignment, alignment );
m_data->textInput->setAlignment( alignment );
2018-04-03 20:15:20 +02:00
polish();
Q_EMIT alignmentChanged();
}
}
Qt::Alignment QskTextInput::alignment() const
{
return flagHint< Qt::Alignment >(
Text | QskAspect::Alignment, Qt::AlignLeft | Qt::AlignTop );
}
QFont QskTextInput::font() const
{
return effectiveFont( QskTextInput::Text );
}
bool QskTextInput::isReadOnly() const
{
return m_data->textInput->isReadOnly();
}
void QskTextInput::setReadOnly( bool on )
{
2018-04-13 16:32:48 +02:00
if ( m_data->textInput->isReadOnly() == on )
return;
#if 1
// do we want to be able to restore the previous policy ?
setFocusPolicy( Qt::NoFocus );
#endif
m_data->textInput->setReadOnly( on );
2018-04-03 20:15:20 +02:00
2018-04-13 16:32:48 +02:00
m_data->textInput->setFlag( QQuickItem::ItemAcceptsInputMethod, !on );
2018-04-03 20:15:20 +02:00
qskUpdateInputMethod( this, Qt::ImEnabled );
2018-04-13 16:32:48 +02:00
setSkinStateFlag( ReadOnly, true );
}
2018-04-13 16:32:48 +02:00
void QskTextInput::setEditing( bool on )
2018-04-09 10:05:59 +02:00
{
2018-04-13 16:32:48 +02:00
if ( isReadOnly() || on == ( skinState() & Editing ) )
return;
setSkinStateFlag( Editing, on );
m_data->textInput->setEditing( on );
auto inputMethod = QGuiApplication::inputMethod();
if ( on )
{
#if 0
updateInputMethod(Qt::ImCursorRectangle | Qt::ImAnchorRectangle);
QGuiApplication::inputMethod()->inputDirection
#endif
inputMethod->show();
}
else
{
auto d = QQuickTextInputPrivate::get( m_data->textInput );
const auto status = d->hasAcceptableInput( d->m_text );
if ( status == QQuickTextInputPrivate::AcceptableInput )
{
if ( fixup() )
m_data->textInput->Q_EMIT editingFinished();
}
2018-04-13 16:32:48 +02:00
#if 0
inputMethod->reset();
#endif
inputMethod->hide();
#if 1
qskForceActiveFocus( this, Qt::PopupFocusReason );
#endif
}
Q_EMIT editingChanged( on );
2018-04-09 10:05:59 +02:00
}
2018-04-13 16:32:48 +02:00
bool QskTextInput::isEditing() const
{
2018-04-13 16:32:48 +02:00
return skinState() & Editing;
}
2018-04-13 16:32:48 +02:00
void QskTextInput::ensureVisible( int position )
{
2018-04-13 16:32:48 +02:00
m_data->textInput->ensureVisible( position );
}
int QskTextInput::cursorPosition() const
{
return m_data->textInput->cursorPosition();
}
void QskTextInput::setCursorPosition(int pos)
{
m_data->textInput->setCursorPosition( pos );
}
int QskTextInput::maxLength() const
{
return m_data->textInput->maxLength();
}
void QskTextInput::setMaxLength(int length)
{
m_data->textInput->setMaxLength( length );
}
QValidator* QskTextInput::validator() const
{
return m_data->textInput->validator();
}
void QskTextInput::setValidator( QValidator* validator )
{
m_data->textInput->setValidator( validator );
}
QString QskTextInput::inputMask() const
{
return m_data->textInput->inputMask();
}
void QskTextInput::setInputMask( const QString& mask )
{
m_data->textInput->setInputMask( mask );
}
QskTextInput::EchoMode QskTextInput::echoMode() const
{
const auto mode = m_data->textInput->echoMode();
return static_cast< QskTextInput::EchoMode >( mode );
}
void QskTextInput::setEchoMode( EchoMode mode )
{
m_data->textInput->setEchoMode(
static_cast< QQuickTextInput::EchoMode >( mode ) );
2018-04-03 20:15:20 +02:00
qskUpdateInputMethod( this, Qt::ImHints );
}
QString QskTextInput::displayText() const
{
return m_data->textInput->displayText();
}
QString QskTextInput::preeditText() const
{
auto d = QQuickTextInputPrivate::get( m_data->textInput );
return d->m_textLayout.preeditAreaText();
}
#if QT_VERSION >= QT_VERSION_CHECK(5, 8, 0)
bool QskTextInput::overwriteMode() const
{
return m_data->textInput->overwriteMode();
}
void QskTextInput::setOverwriteMode( bool overwrite )
{
m_data->textInput->setOverwriteMode( overwrite );
}
#endif
bool QskTextInput::hasAcceptableInput() const
{
return m_data->textInput->hasAcceptableInput();
}
bool QskTextInput::fixup()
{
return m_data->textInput->fixup();
}
QVariant QskTextInput::inputMethodQuery(
Qt::InputMethodQuery property) const
{
2018-04-03 20:15:20 +02:00
return inputMethodQuery( property, QVariant() );
}
QVariant QskTextInput::inputMethodQuery(
Qt::InputMethodQuery query, QVariant argument) const
{
2018-04-03 20:15:20 +02:00
switch( query )
{
case Qt::ImEnabled:
{
return QVariant( (bool)( flags() & ItemAcceptsInputMethod ) );
}
case Qt::ImFont:
{
return font();
}
case Qt::ImPreferredLanguage:
{
return locale();
}
case Qt::ImCursorRectangle:
2018-04-09 10:05:59 +02:00
#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
case Qt::ImInputItemClipRectangle:
2018-04-09 10:05:59 +02:00
#endif
2018-04-03 20:15:20 +02:00
{
QVariant v = m_data->textInput->inputMethodQuery( query, argument );
#if 1
if ( v.canConvert< QRectF >() )
v.setValue( v.toRectF().translated( m_data->textInput->position() ) );
2018-04-03 20:15:20 +02:00
#endif
return v;
}
default:
{
return m_data->textInput->inputMethodQuery( query, argument );
}
}
}
bool QskTextInput::canUndo() const
{
return m_data->textInput->canUndo();
}
bool QskTextInput::canRedo() const
{
return m_data->textInput->canRedo();
}
Qt::InputMethodHints QskTextInput::inputMethodHints() const
{
return m_data->textInput->inputMethodHints();
}
void QskTextInput::setInputMethodHints(Qt::InputMethodHints hints )
{
2018-04-03 20:15:20 +02:00
if ( m_data->textInput->inputMethodHints() != hints )
{
m_data->textInput->setInputMethodHints( hints );
qskUpdateInputMethod( this, Qt::ImHints );
}
}
#include "moc_QskTextInput.cpp"