18 Q_PROPERTY( QString text READ text
19 WRITE setText NOTIFY textChanged USER
true )
21 Q_PROPERTY(
int length READ length NOTIFY textChanged )
23 Q_PROPERTY( QString preeditText READ preeditText
24 NOTIFY preeditTextChanged )
26 Q_PROPERTY( QString selectedText READ selectedText
27 NOTIFY selectedTextChanged )
29 Q_PROPERTY(
bool editing READ isEditing
30 WRITE setEditing NOTIFY editingChanged )
32 Q_PROPERTY(
bool readOnly READ isReadOnly
33 WRITE setReadOnly NOTIFY readOnlyChanged )
35 Q_PROPERTY( ActivationModes activationModes READ activationModes
36 WRITE setActivationModes NOTIFY activationModesChanged )
38 Q_PROPERTY( Qt::InputMethodHints inputMethodHints READ inputMethodHints
39 WRITE setInputMethodHints NOTIFY inputMethodHintsChanged )
41 Q_PROPERTY(
bool inputMethodComposing READ isInputMethodComposing
42 NOTIFY inputMethodComposingChanged )
44 Q_PROPERTY( QColor textColor READ textColor
45 WRITE setTextColor RESET resetTextColor NOTIFY textColorChanged )
48 WRITE setFontRole RESET resetFontRole NOTIFY fontRoleChanged )
50 Q_PROPERTY( QFont font READ font )
52 Q_PROPERTY(
bool overwriteMode READ overwriteMode
53 WRITE setOverwriteMode NOTIFY overwriteModeChanged )
55 Q_PROPERTY(
bool cursorVisible READ isCursorVisible
56 WRITE setCursorVisible NOTIFY cursorVisibleChanged )
58 Q_PROPERTY(
int cursorPosition READ cursorPosition
59 WRITE setCursorPosition NOTIFY cursorPositionChanged )
61 Q_PROPERTY( Qt::Alignment alignment READ alignment
62 WRITE setAlignment RESET resetAlignment NOTIFY alignmentChanged )
64 Q_PROPERTY( QskTextOptions::WrapMode wrapMode READ wrapMode
65 WRITE setWrapMode NOTIFY wrapModeChanged )
67 Q_PROPERTY(
bool persistentSelection READ persistentSelection
68 WRITE setPersistentSelection NOTIFY persistentSelectionChanged )
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 )
77 QSK_SUBCONTROLS( Text, TextPanel )
78 QSK_STATES( ReadOnly, Editing, Selected )
84 ActivationOnFocus = 1 << 0,
85 ActivationOnMouse = 1 << 1,
86 ActivationOnKey = 1 << 2,
88 ActivationOnInput = ActivationOnMouse | ActivationOnKey,
89 ActivationOnAll = ActivationOnFocus | ActivationOnMouse | ActivationOnKey
92 Q_ENUM( ActivationMode )
93 Q_DECLARE_FLAGS( ActivationModes, ActivationMode )
98 QString preeditText()
const;
99 QString selectedText()
const;
100 bool hasSelectedText()
const;
104 bool isReadOnly()
const;
105 void setReadOnly(
bool );
107 bool isEditing()
const;
108 bool isInputMethodComposing()
const;
110 void setActivationModes( ActivationModes );
111 ActivationModes activationModes()
const;
113 void setSelectByMouse(
bool );
114 bool selectByMouse()
const;
116 void setPersistentSelection(
bool );
117 bool persistentSelection()
const;
119 void setAlignment( Qt::Alignment );
120 void resetAlignment();
121 Qt::Alignment alignment()
const;
123 void setWrapMode( QskTextOptions::WrapMode );
124 QskTextOptions::WrapMode wrapMode()
const;
126 void setTextColor(
const QColor& );
127 void resetTextColor();
128 QColor textColor()
const;
131 void resetFontRole();
136 bool overwriteMode()
const;
137 void setOverwriteMode(
bool );
139 bool isCursorVisible()
const;
140 void setCursorVisible(
bool );
142 int cursorPosition()
const;
143 void setCursorPosition(
int );
145 QVariant inputMethodQuery( Qt::InputMethodQuery )
const override;
146 QVariant inputMethodQuery( Qt::InputMethodQuery,
const QVariant& )
const;
148 Qt::InputMethodHints inputMethodHints()
const;
149 void setInputMethodHints( Qt::InputMethodHints );
151 bool canUndo()
const;
152 bool canRedo()
const;
153 bool canPaste()
const;
155 QSizeF unwrappedTextSize()
const;
158 void setText(
const QString& );
159 void setEditing(
bool );
172 void editingChanged(
bool );
173 void readOnlyChanged(
bool );
174 void activationModesChanged();
175 void inputMethodHintsChanged( Qt::InputMethodHints );
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 );
184 void wrapModeChanged( QskTextOptions::WrapMode );
185 void alignmentChanged();
187 void inputMethodComposingChanged(
bool );
190 void selectedTextChanged();
191 void textEdited(
const QString& );
192 void preeditTextChanged();
194 void canUndoChanged(
bool );
195 void canRedoChanged(
bool );
196 void canPasteChanged(
bool );
200 void setup( QQuickItem* );
202 void forwardEvent( QEvent* );
204 bool event( QEvent* )
override;
206 void mousePressEvent( QMouseEvent* )
override;
207 void mouseMoveEvent( QMouseEvent* )
override;
208 void mouseReleaseEvent( QMouseEvent* )
override;
209 void mouseDoubleClickEvent( QMouseEvent* )
override;
211 void keyPressEvent( QKeyEvent* )
override;
212 void keyReleaseEvent( QKeyEvent* )
override;
214 void focusInEvent( QFocusEvent* )
override;
215 void focusOutEvent( QFocusEvent* )
override;
217 void inputMethodEvent( QInputMethodEvent* )
override;
219 void updateLayout()
override;
224 std::unique_ptr< PrivateData > m_data;