TextField.qml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the Qt Quick Controls module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. import QtQuick 2.6
  40. import QtQuick.Controls 1.2
  41. import QtQuick.Controls.Private 1.0
  42. /*!
  43. \qmltype TextField
  44. \inqmlmodule QtQuick.Controls
  45. \since 5.1
  46. \ingroup controls
  47. \brief Displays a single line of editable plain text.
  48. \image textfield.png
  49. TextField is used to accept a line of text input. Input constraints can be
  50. placed on a TextField item (for example, through a \l validator or \l
  51. inputMask). Setting \l echoMode to an appropriate value enables
  52. TextField to be used for a password input field.
  53. \qml
  54. TextField {
  55. placeholderText: qsTr("Enter name")
  56. }
  57. \endqml
  58. You can create a custom appearance for a TextField by
  59. assigning a \l {TextFieldStyle}.
  60. \sa TextArea, TextInput
  61. */
  62. Control {
  63. id: textfield
  64. /*!
  65. \qmlproperty bool TextField::acceptableInput
  66. Returns \c true if the text field contains acceptable
  67. text.
  68. If a validator or input mask was set, this property will return \c
  69. true if the current text satisfies the validator or mask as
  70. a final string (not as an intermediate string).
  71. The default value is \c true.
  72. \sa validator, inputMask, accepted
  73. */
  74. readonly property alias acceptableInput: textInput.acceptableInput // read only
  75. /*!
  76. \qmlproperty bool TextField::activeFocusOnPress
  77. This property is set to \c true if the TextField should gain active
  78. focus on a mouse press.
  79. The default value is \c true.
  80. */
  81. property alias activeFocusOnPress: textInput.activeFocusOnPress
  82. /*!
  83. \qmlproperty bool TextField::canPaste
  84. Returns \c true if the TextField is writable and the content of the
  85. clipboard is suitable for pasting into the TextField.
  86. */
  87. readonly property alias canPaste: textInput.canPaste
  88. /*!
  89. \qmlproperty bool TextField::canRedo
  90. Returns \c true if the TextField is writable and there are \l
  91. {undo}{undone} operations that can be redone.
  92. */
  93. readonly property alias canRedo: textInput.canRedo
  94. /*!
  95. \qmlproperty bool TextField::canUndo
  96. Returns \c true if the TextField is writable and there are previous
  97. operations that can be undone.
  98. */
  99. readonly property alias canUndo: textInput.canUndo
  100. /*!
  101. \qmlproperty color TextField::textColor
  102. This property holds the text color.
  103. */
  104. property alias textColor: textInput.color
  105. /*!
  106. \qmlproperty int TextField::cursorPosition
  107. This property holds the position of the cursor in the TextField.
  108. */
  109. property alias cursorPosition: textInput.cursorPosition
  110. /*!
  111. \qmlproperty rect TextField::cursorRectangle
  112. \since QtQuick.Controls 1.3
  113. The rectangle where the text cursor is rendered within the text field.
  114. */
  115. readonly property alias cursorRectangle: textInput.cursorRectangle
  116. /*!
  117. \qmlproperty string TextField::displayText
  118. This property holds the text displayed in the TextField.
  119. If \l echoMode is set to TextInput::Normal, this holds the
  120. same value as the TextField::text property. Otherwise,
  121. this property holds the text visible to the user, while
  122. the \l text property holds the actual entered text.
  123. */
  124. readonly property alias displayText: textInput.displayText
  125. /*!
  126. \qmlproperty enumeration TextField::echoMode
  127. Specifies how the text should be displayed in the
  128. TextField.
  129. The possible modes are:
  130. \list
  131. \li TextInput.Normal - Displays the text as it is. (Default)
  132. \li TextInput.Password - Displays asterisks instead of characters.
  133. \li TextInput.NoEcho - Displays nothing.
  134. \li TextInput.PasswordEchoOnEdit - Displays characters as they are
  135. entered while editing, otherwise displays asterisks.
  136. \endlist
  137. */
  138. property alias echoMode: textInput.echoMode
  139. Accessible.passwordEdit: echoMode == TextInput.Password || echoMode === TextInput.PasswordEchoOnEdit
  140. /*!
  141. \qmlproperty font TextField::font
  142. Sets the font of the TextField.
  143. */
  144. property alias font: textInput.font
  145. /*!
  146. \qmlproperty enumeration TextField::horizontalAlignment
  147. Sets the alignment of the text within the TextField item's width.
  148. By default, the horizontal text alignment follows the natural alignment
  149. of the text, for example text that is read from left to right will be
  150. aligned to the left.
  151. The possible alignment values are:
  152. \list
  153. \li TextInput.AlignLeft
  154. \li TextInput.AlignRight
  155. \li TextInput.AlignHCenter
  156. \endlist
  157. When using the attached property, LayoutMirroring::enabled, to mirror
  158. application layouts, the horizontal alignment of text will also be
  159. mirrored. However, the property \c horizontalAlignment will remain
  160. unchanged. To query the effective horizontal alignment of TextField, use
  161. the read-only property \c effectiveHorizontalAlignment.
  162. */
  163. property alias horizontalAlignment: textInput.horizontalAlignment
  164. /*!
  165. \qmlproperty enumeration TextField::effectiveHorizontalAlignment
  166. Gets the effective horizontal alignment of the text within the TextField
  167. item's width.
  168. \l horizontalAlignment contains the default horizontal alignment.
  169. \sa horizontalAlignment
  170. */
  171. readonly property alias effectiveHorizontalAlignment: textInput.effectiveHorizontalAlignment
  172. /*!
  173. \qmlproperty enumeration TextField::verticalAlignment
  174. Sets the alignment of the text within the TextField item's height.
  175. The possible alignment values are:
  176. \list
  177. \li TextInput.AlignTop
  178. \li TextInput.AlignBottom
  179. \li TextInput.AlignVCenter (default).
  180. \endlist
  181. */
  182. property alias verticalAlignment: textInput.verticalAlignment
  183. /*!
  184. \qmlproperty string TextField::inputMask
  185. Sets an input mask on the TextField, restricting the allowable text
  186. inputs. See QLineEdit::inputMask for further details, as the exact same
  187. mask strings are used by TextField.
  188. \sa acceptableInput, validator
  189. */
  190. property alias inputMask: textInput.inputMask
  191. /*!
  192. \qmlproperty bool TextField::inputMethodComposing
  193. \since QtQuick.Controls 1.3
  194. This property holds whether the TextField has partial text input from an input method.
  195. While it is composing an input method may rely on mouse or key events from the TextField
  196. to edit or commit the partial text. This property can be used to determine when to disable
  197. events handlers that may interfere with the correct operation of an input method.
  198. */
  199. readonly property bool inputMethodComposing: !!textInput.inputMethodComposing
  200. /*!
  201. \qmlproperty enumeration TextField::inputMethodHints
  202. Provides hints to the input method about the expected content of the
  203. text field and how it should operate.
  204. The value is a bit-wise combination of flags, or \c Qt.ImhNone if no
  205. hints are set.
  206. The default value is \c Qt.ImhNone.
  207. Flags that alter behavior are:
  208. \list
  209. \li Qt.ImhHiddenText - Characters should be hidden, as is typically used when entering passwords.
  210. This is automatically set when setting echoMode to \c TextInput.Password.
  211. \li Qt.ImhSensitiveData - Typed text should not be stored by the active input method
  212. in any persistent storage like predictive user dictionary.
  213. \li Qt.ImhNoAutoUppercase - The input method should not try to automatically switch to upper case
  214. when a sentence ends.
  215. \li Qt.ImhPreferNumbers - Numbers are preferred (but not required).
  216. \li Qt.ImhPreferUppercase - Uppercase letters are preferred (but not required).
  217. \li Qt.ImhPreferLowercase - Lowercase letters are preferred (but not required).
  218. \li Qt.ImhNoPredictiveText - Do not use predictive text (for example, dictionary lookup) while typing.
  219. \li Qt.ImhDate - The text editor functions as a date field.
  220. \li Qt.ImhTime - The text editor functions as a time field.
  221. \li Qt.ImhMultiLine - The text editor doesn't close software input keyboard when Return or Enter key is pressed (since QtQuick.Controls 1.3).
  222. \endlist
  223. Flags that restrict input (exclusive flags) are:
  224. \list
  225. \li Qt.ImhDigitsOnly - Only digits are allowed.
  226. \li Qt.ImhFormattedNumbersOnly - Only number input is allowed. This includes decimal point and minus sign.
  227. \li Qt.ImhUppercaseOnly - Only uppercase letter input is allowed.
  228. \li Qt.ImhLowercaseOnly - Only lowercase letter input is allowed.
  229. \li Qt.ImhDialableCharactersOnly - Only characters suitable for phone dialing are allowed.
  230. \li Qt.ImhEmailCharactersOnly - Only characters suitable for email addresses are allowed.
  231. \li Qt.ImhUrlCharactersOnly - Only characters suitable for URLs are allowed.
  232. \endlist
  233. Masks:
  234. \list
  235. \li Qt.ImhExclusiveInputMask - This mask yields nonzero if any of the exclusive flags are used.
  236. \endlist
  237. */
  238. property alias inputMethodHints: textInput.inputMethodHints
  239. /*!
  240. \qmlproperty int TextField::length
  241. Returns the total number of characters in the TextField item.
  242. If the TextField has an input mask, the length will include mask
  243. characters and may differ from the length of the string returned by the
  244. \l text property.
  245. This property can be faster than querying the length of the \l text
  246. property as it doesn't require any copying or conversion of the
  247. TextField's internal string data.
  248. */
  249. readonly property alias length: textInput.length
  250. /*!
  251. \qmlproperty int TextField::maximumLength
  252. This property holds the maximum permitted length of the text in the
  253. TextField.
  254. If the text is too long, it is truncated at the limit.
  255. */
  256. property alias maximumLength: textInput.maximumLength
  257. /*!
  258. \qmlproperty string TextField::placeholderText
  259. This property contains the text that is shown in the text field when the
  260. text field is empty.
  261. */
  262. property alias placeholderText: placeholderTextComponent.text
  263. /*!
  264. \qmlproperty bool TextField::readOnly
  265. Sets whether user input can modify the contents of the TextField. Read-
  266. only is different from a disabled text field in that the text field will
  267. appear to be active and text can still be selected and copied.
  268. If readOnly is set to \c true, then user input will not affect the text.
  269. Any bindings or attempts to set the text property will still
  270. work, however.
  271. */
  272. property alias readOnly: textInput.readOnly
  273. Accessible.readOnly: readOnly
  274. /*!
  275. \qmlproperty bool TextField::selectByMouse
  276. \since QtQuick.Controls 1.3
  277. This property determines if the user can select the text with the
  278. mouse.
  279. The default value is \c true.
  280. */
  281. property bool selectByMouse: true
  282. /*!
  283. \qmlproperty string TextField::selectedText
  284. Provides the text currently selected in the text input.
  285. It is equivalent to the following snippet, but is faster and easier
  286. to use.
  287. \code
  288. myTextField.text.toString().substring(myTextField.selectionStart, myTextField.selectionEnd);
  289. \endcode
  290. */
  291. readonly property alias selectedText: textInput.selectedText
  292. /*!
  293. \qmlproperty int TextField::selectionEnd
  294. The cursor position after the last character in the current selection.
  295. This property is read-only. To change the selection, use
  296. select(start,end), selectAll(), or selectWord().
  297. \sa selectionStart, cursorPosition, selectedText
  298. */
  299. readonly property alias selectionEnd: textInput.selectionEnd
  300. /*!
  301. \qmlproperty int TextField::selectionStart
  302. The cursor position before the first character in the current selection.
  303. This property is read-only. To change the selection, use select(start,end),
  304. selectAll(), or selectWord().
  305. \sa selectionEnd, cursorPosition, selectedText
  306. */
  307. readonly property alias selectionStart: textInput.selectionStart
  308. /*!
  309. \qmlproperty string TextField::text
  310. This property contains the text in the TextField.
  311. */
  312. property alias text: textInput.text
  313. /*!
  314. \qmlproperty Validator TextField::validator
  315. Allows you to set a validator on the TextField. When a validator is set,
  316. the TextField will only accept input which leaves the text property in
  317. an intermediate state. The accepted signal will only be sent
  318. if the text is in an acceptable state when enter is pressed.
  319. Currently supported validators are \l[QtQuick]{IntValidator},
  320. \l[QtQuick]{DoubleValidator}, and \l[QtQuick]{RegExpValidator}. An
  321. example of using validators is shown below, which allows input of
  322. integers between 11 and 31 into the text input:
  323. \code
  324. import QtQuick 2.2
  325. import QtQuick.Controls 1.2
  326. TextField {
  327. validator: IntValidator {bottom: 11; top: 31;}
  328. focus: true
  329. }
  330. \endcode
  331. \sa acceptableInput, inputMask, accepted
  332. */
  333. property alias validator: textInput.validator
  334. /*!
  335. \since QtQuick.Controls 1.3
  336. This property contains the edit \l Menu for working
  337. with text selection. Set it to \c null if no menu
  338. is wanted.
  339. */
  340. property Component menu: textInput.editMenu.defaultMenu
  341. /*!
  342. \qmlsignal TextField::accepted()
  343. This signal is emitted when the Return or Enter key is pressed.
  344. Note that if there is a \l validator or \l inputMask set on the text
  345. field, the signal will only be emitted if the input is in an acceptable
  346. state.
  347. The corresponding handler is \c onAccepted.
  348. */
  349. signal accepted()
  350. /*!
  351. \qmlsignal TextField::editingFinished()
  352. \since QtQuick.Controls 1.1
  353. This signal is emitted when the Return or Enter key is pressed or
  354. the text field loses focus. Note that if there is a validator or
  355. inputMask set on the text field and enter/return is pressed, this
  356. signal will only be emitted if the input follows
  357. the inputMask and the validator returns an acceptable state.
  358. The corresponding handler is \c onEditingFinished.
  359. */
  360. signal editingFinished()
  361. /*!
  362. \qmlmethod void TextField::copy()
  363. Copies the currently selected text to the system clipboard.
  364. */
  365. function copy() {
  366. textInput.copy()
  367. }
  368. /*!
  369. \qmlmethod void TextField::cut()
  370. Moves the currently selected text to the system clipboard.
  371. */
  372. function cut() {
  373. textInput.cut()
  374. }
  375. /*!
  376. \qmlmethod void TextField::deselect()
  377. Removes active text selection.
  378. */
  379. function deselect() {
  380. textInput.deselect();
  381. }
  382. /*!
  383. \qmlmethod string TextField::getText(int start, int end)
  384. Removes the section of text that is between the \a start and \a end
  385. positions from the TextField.
  386. */
  387. function getText(start, end) {
  388. return textInput.getText(start, end);
  389. }
  390. /*!
  391. \qmlmethod void TextField::insert(int position, string text)
  392. Inserts \a text into the TextField at \a position.
  393. */
  394. function insert(position, text) {
  395. textInput.insert(position, text);
  396. }
  397. /*!
  398. \qmlmethod bool TextField::isRightToLeft(int start, int end)
  399. Returns \c true if the natural reading direction of the editor text
  400. found between positions \a start and \a end is right to left.
  401. */
  402. function isRightToLeft(start, end) {
  403. return textInput.isRightToLeft(start, end);
  404. }
  405. /*!
  406. \qmlmethod void TextField::paste()
  407. Replaces the currently selected text by the contents of the system
  408. clipboard.
  409. */
  410. function paste() {
  411. textInput.paste()
  412. }
  413. /*!
  414. \qmlmethod void TextField::redo()
  415. Performs the last operation if redo is \l {canRedo}{available}.
  416. */
  417. function redo() {
  418. textInput.redo();
  419. }
  420. /*!
  421. \qmlmethod void TextField::remove(int start, int end)
  422. \since QtQuick.Controls 1.4
  423. Removes the section of text that is between the start and end positions.
  424. */
  425. function remove(start, end) {
  426. textInput.remove(start, end)
  427. }
  428. /*!
  429. \qmlmethod void TextField::select(int start, int end)
  430. Causes the text from \a start to \a end to be selected.
  431. If either start or end is out of range, the selection is not changed.
  432. After calling select, selectionStart will become the lesser
  433. and selectionEnd will become the greater (regardless of the order passed
  434. to this method).
  435. \sa selectionStart, selectionEnd
  436. */
  437. function select(start, end) {
  438. textInput.select(start, end)
  439. }
  440. /*!
  441. \qmlmethod void TextField::selectAll()
  442. Causes all text to be selected.
  443. */
  444. function selectAll() {
  445. textInput.selectAll()
  446. }
  447. /*!
  448. \qmlmethod void TextField::selectWord()
  449. Causes the word closest to the current cursor position to be selected.
  450. */
  451. function selectWord() {
  452. textInput.selectWord()
  453. }
  454. /*!
  455. \qmlmethod void TextField::undo()
  456. Reverts the last operation if undo is \l {canUndo}{available}. undo()
  457. deselects any current selection and updates the selection start to the
  458. current cursor position.
  459. */
  460. function undo() {
  461. textInput.undo();
  462. }
  463. /*! \qmlproperty bool TextField::hovered
  464. This property holds whether the control is being hovered.
  465. */
  466. readonly property alias hovered: textInput.containsMouse
  467. /*! \internal */
  468. property alias __contentHeight: textInput.contentHeight
  469. /*! \internal */
  470. property alias __contentWidth: textInput.contentWidth
  471. /*! \internal */
  472. property alias __baselineOffset: textInput.baselineOffset
  473. style: Settings.styleComponent(Settings.style, "TextFieldStyle.qml", textInput)
  474. activeFocusOnTab: true
  475. Accessible.name: text
  476. Accessible.role: Accessible.EditableText
  477. Accessible.description: placeholderText
  478. Text {
  479. id: placeholderTextComponent
  480. anchors.fill: textInput
  481. font: textInput.font
  482. horizontalAlignment: textInput.horizontalAlignment
  483. verticalAlignment: textInput.verticalAlignment
  484. opacity: !textInput.displayText && (!textInput.activeFocus || textInput.horizontalAlignment !== Qt.AlignHCenter) ? 1.0 : 0.0
  485. color: __panel ? __panel.placeholderTextColor : "darkgray"
  486. clip: contentWidth > width;
  487. elide: Text.ElideRight
  488. renderType: __style ? __style.renderType : Text.NativeRendering
  489. }
  490. TextInputWithHandles {
  491. id: textInput
  492. focus: true
  493. passwordCharacter: __style && __style.passwordCharacter !== undefined ? __style.passwordCharacter
  494. : Qt.styleHints.passwordMaskCharacter
  495. selectionColor: __panel ? __panel.selectionColor : "darkred"
  496. selectedTextColor: __panel ? __panel.selectedTextColor : "white"
  497. control: textfield
  498. cursorHandle: __style ? __style.__cursorHandle : undefined
  499. selectionHandle: __style ? __style.__selectionHandle : undefined
  500. font: __panel ? __panel.font : TextSingleton.font
  501. anchors.leftMargin: __panel ? __panel.leftMargin : 0
  502. anchors.topMargin: __panel ? __panel.topMargin : 0
  503. anchors.rightMargin: __panel ? __panel.rightMargin : 0
  504. anchors.bottomMargin: __panel ? __panel.bottomMargin : 0
  505. anchors.fill: parent
  506. verticalAlignment: Text.AlignVCenter
  507. color: __panel ? __panel.textColor : "darkgray"
  508. clip: contentWidth > width
  509. renderType: __style ? __style.renderType : Text.NativeRendering
  510. Keys.forwardTo: textfield
  511. EnterKey.type: control.EnterKey.type
  512. onAccepted: textfield.accepted()
  513. onEditingFinished: textfield.editingFinished()
  514. }
  515. }