QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskAbstractTextInput.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_ABSTRACT_TEXT_INPUT_H
7#define QSK_ABSTRACT_TEXT_INPUT_H
8
9#include "QskControl.h"
10#include "QskTextOptions.h"
11
12class QskFontRole;
13
14class QSK_EXPORT QskAbstractTextInput : public QskControl
15{
16 Q_OBJECT
17
18 Q_PROPERTY( QString text READ text
19 WRITE setText NOTIFY textChanged USER true )
20
21 Q_PROPERTY( int length READ length NOTIFY textChanged )
22
23 Q_PROPERTY( QString preeditText READ preeditText
24 NOTIFY preeditTextChanged )
25
26 Q_PROPERTY( QString selectedText READ selectedText
27 NOTIFY selectedTextChanged )
28
29 Q_PROPERTY( bool editing READ isEditing
30 WRITE setEditing NOTIFY editingChanged )
31
32 Q_PROPERTY( bool readOnly READ isReadOnly
33 WRITE setReadOnly NOTIFY readOnlyChanged )
34
35 Q_PROPERTY( ActivationModes activationModes READ activationModes
36 WRITE setActivationModes NOTIFY activationModesChanged )
37
38 Q_PROPERTY( Qt::InputMethodHints inputMethodHints READ inputMethodHints
39 WRITE setInputMethodHints NOTIFY inputMethodHintsChanged )
40
41 Q_PROPERTY( bool inputMethodComposing READ isInputMethodComposing
42 NOTIFY inputMethodComposingChanged )
43
44 Q_PROPERTY( QColor textColor READ textColor
45 WRITE setTextColor RESET resetTextColor NOTIFY textColorChanged )
46
47 Q_PROPERTY( QskFontRole fontRole READ fontRole
48 WRITE setFontRole RESET resetFontRole NOTIFY fontRoleChanged )
49
50 Q_PROPERTY( QFont font READ font )
51
52 Q_PROPERTY( bool overwriteMode READ overwriteMode
53 WRITE setOverwriteMode NOTIFY overwriteModeChanged )
54
55 Q_PROPERTY( bool cursorVisible READ isCursorVisible
56 WRITE setCursorVisible NOTIFY cursorVisibleChanged )
57
58 Q_PROPERTY( int cursorPosition READ cursorPosition
59 WRITE setCursorPosition NOTIFY cursorPositionChanged )
60
61 Q_PROPERTY( Qt::Alignment alignment READ alignment
62 WRITE setAlignment RESET resetAlignment NOTIFY alignmentChanged )
63
64 Q_PROPERTY( QskTextOptions::WrapMode wrapMode READ wrapMode
65 WRITE setWrapMode NOTIFY wrapModeChanged )
66
67 Q_PROPERTY( bool persistentSelection READ persistentSelection
68 WRITE setPersistentSelection NOTIFY persistentSelectionChanged )
69
70 Q_PROPERTY( bool canUndo READ canUndo NOTIFY canUndoChanged )
71 Q_PROPERTY( bool canRedo READ canRedo NOTIFY canRedoChanged )
72 Q_PROPERTY( bool canPaste READ canPaste NOTIFY canPasteChanged )
73
74 using Inherited = QskControl;
75
76 public:
77 QSK_SUBCONTROLS( Text, TextPanel )
78 QSK_STATES( ReadOnly, Editing, Selected )
79
80 enum ActivationMode
81 {
82 NoActivation,
83
84 ActivationOnFocus = 1 << 0,
85 ActivationOnMouse = 1 << 1,
86 ActivationOnKey = 1 << 2,
87
88 ActivationOnInput = ActivationOnMouse | ActivationOnKey,
89 ActivationOnAll = ActivationOnFocus | ActivationOnMouse | ActivationOnKey
90 };
91
92 Q_ENUM( ActivationMode )
93 Q_DECLARE_FLAGS( ActivationModes, ActivationMode )
94
95 ~QskAbstractTextInput() override;
96
97 QString text() const;
98 QString preeditText() const;
99 QString selectedText() const;
100 bool hasSelectedText() const;
101
102 int length() const;
103
104 bool isReadOnly() const;
105 void setReadOnly( bool );
106
107 bool isEditing() const;
108 bool isInputMethodComposing() const;
109
110 void setActivationModes( ActivationModes );
111 ActivationModes activationModes() const;
112
113 void setSelectByMouse( bool );
114 bool selectByMouse() const;
115
116 void setPersistentSelection( bool );
117 bool persistentSelection() const;
118
119 void setAlignment( Qt::Alignment );
120 void resetAlignment();
121 Qt::Alignment alignment() const;
122
123 void setWrapMode( QskTextOptions::WrapMode );
124 QskTextOptions::WrapMode wrapMode() const;
125
126 void setTextColor( const QColor& );
127 void resetTextColor();
128 QColor textColor() const;
129
130 void setFontRole( const QskFontRole& role );
131 void resetFontRole();
132 QskFontRole fontRole() const;
133
134 QFont font() const;
135
136 bool overwriteMode() const;
137 void setOverwriteMode( bool );
138
139 bool isCursorVisible() const;
140 void setCursorVisible( bool );
141
142 int cursorPosition() const;
143 void setCursorPosition( int );
144
145 QVariant inputMethodQuery( Qt::InputMethodQuery ) const override;
146 QVariant inputMethodQuery( Qt::InputMethodQuery, const QVariant& ) const;
147
148 Qt::InputMethodHints inputMethodHints() const;
149 void setInputMethodHints( Qt::InputMethodHints );
150
151 bool canUndo() const;
152 bool canRedo() const;
153 bool canPaste() const;
154
155 QSizeF unwrappedTextSize() const;
156
157 public Q_SLOTS:
158 void setText( const QString& );
159 void setEditing( bool );
160
161 void clear();
162 void deselect();
163 void selectAll();
164
165 void cut();
166 void copy();
167 void paste();
168 void undo();
169 void redo();
170
171 Q_SIGNALS:
172 void editingChanged( bool );
173 void readOnlyChanged( bool );
174 void activationModesChanged();
175 void inputMethodHintsChanged( Qt::InputMethodHints );
176 void fontRoleChanged( const QskFontRole& );
177 void textColorChanged( const QColor& );
178 void overwriteModeChanged( bool );
179 void cursorPositionChanged( int );
180 void cursorVisibleChanged( bool );
181 void selectByMouseChanged( bool );
182 void persistentSelectionChanged( bool );
183
184 void wrapModeChanged( QskTextOptions::WrapMode );
185 void alignmentChanged();
186
187 void inputMethodComposingChanged( bool );
188
189 void textChanged();
190 void selectedTextChanged();
191 void textEdited( const QString& );
192 void preeditTextChanged();
193
194 void canUndoChanged( bool );
195 void canRedoChanged( bool );
196 void canPasteChanged( bool );
197
198 protected:
199 QskAbstractTextInput( QQuickItem* parent = nullptr );
200 void setup( QQuickItem* );
201
202 void forwardEvent( QEvent* );
203
204 bool event( QEvent* ) override;
205
206 void mousePressEvent( QMouseEvent* ) override;
207 void mouseMoveEvent( QMouseEvent* ) override;
208 void mouseReleaseEvent( QMouseEvent* ) override;
209 void mouseDoubleClickEvent( QMouseEvent* ) override;
210
211 void keyPressEvent( QKeyEvent* ) override;
212 void keyReleaseEvent( QKeyEvent* ) override;
213
214 void focusInEvent( QFocusEvent* ) override;
215 void focusOutEvent( QFocusEvent* ) override;
216
217 void inputMethodEvent( QInputMethodEvent* ) override;
218
219 void updateLayout() override;
220 void updateNode( QSGNode* ) override;
221
222 private:
223 class PrivateData;
224 std::unique_ptr< PrivateData > m_data;
225};
226
227Q_DECLARE_OPERATORS_FOR_FLAGS( QskAbstractTextInput::ActivationModes )
228Q_DECLARE_METATYPE( QskAbstractTextInput::ActivationModes )
229
230#endif
Base class of all controls.
Definition QskControl.h:23
virtual void updateNode(QSGNode *)