QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextInput.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_TEXT_INPUT_H
7#define QSK_TEXT_INPUT_H
8
9#include "QskAbstractTextInput.h"
10#include "QskTextOptions.h"
11
12class QValidator;
13
14class QSK_EXPORT QskTextInput : public QskAbstractTextInput
15{
16 Q_OBJECT
17
18 Q_PROPERTY( QString displayText READ displayText NOTIFY displayTextChanged )
19
20 Q_PROPERTY( int maximumLength READ maxLength
21 WRITE setMaxLength NOTIFY maximumLengthChanged )
22
23 Q_PROPERTY( QString inputMask READ inputMask
24 WRITE setInputMask NOTIFY inputMaskChanged )
25
26 Q_PROPERTY( bool acceptableInput READ hasAcceptableInput
27 NOTIFY acceptableInputChanged)
28
29 Q_PROPERTY( bool autoScroll READ autoScroll
30 WRITE setAutoScroll NOTIFY autoScrollChanged )
31
32 Q_PROPERTY( EchoMode echoMode READ echoMode
33 WRITE setEchoMode NOTIFY echoModeChanged )
34
35 Q_PROPERTY( QString passwordCharacter READ passwordCharacter
36 WRITE setPasswordCharacter RESET resetPasswordCharacter
37 NOTIFY passwordCharacterChanged )
38
39 Q_PROPERTY( int passwordMaskDelay READ passwordMaskDelay
40 WRITE setPasswordMaskDelay RESET resetPasswordMaskDelay
41 NOTIFY passwordMaskDelayChanged )
42
43 Q_PROPERTY( QValidator* validator READ validator
44 WRITE setValidator NOTIFY validatorChanged )
45
47
48 public:
49 QSK_SUBCONTROLS( Text, TextPanel )
50 QSK_STATES( Error )
51
52 enum EchoMode : quint8
53 {
54 Normal,
55 NoEcho,
56 Password,
57 PasswordEchoOnEdit
58 };
59
60 Q_ENUM( EchoMode )
61
62 QskTextInput( QQuickItem* parent = nullptr );
63 ~QskTextInput() override;
64
65 int maxLength() const;
66 void setMaxLength( int );
67
68 QValidator* validator() const;
69 void setValidator( QValidator* );
70
71 QString inputMask() const;
72 void setInputMask( const QString& );
73
74 bool autoScroll() const;
75 void setAutoScroll( bool );
76
77 EchoMode echoMode() const;
78 void setEchoMode( EchoMode );
79
80 QString passwordCharacter() const;
81 void setPasswordCharacter( const QString& );
82 void resetPasswordCharacter();
83
84 int passwordMaskDelay() const;
85 void setPasswordMaskDelay( int );
86 void resetPasswordMaskDelay();
87
88 QString displayText() const;
89
90 bool hasAcceptableInput() const;
91 bool fixup();
92
93 void ensureVisible( int position );
94
95 Q_SIGNALS:
96 void maximumLengthChanged( int );
97
98 void autoScrollChanged( bool );
99
100 void echoModeChanged( EchoMode );
101 void passwordMaskDelayChanged();
102 void passwordCharacterChanged();
103
104 void validatorChanged( const QValidator* );
105 void inputMaskChanged( const QString& );
106 void acceptableInputChanged( bool );
107
108 void displayTextChanged();
109
110 protected:
111 QskAspect::Subcontrol substitutedSubcontrol(
112 QskAspect::Subcontrol ) const override;
113
114 private:
115 class PrivateData;
116 std::unique_ptr< PrivateData > m_data;
117};
118
119#endif
Subcontrol
For use within the rendering or lay-outing of a specific QskSkinnable.
Definition QskAspect.h:104