TextArea.qml 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978
  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.Window 2.2
  41. import QtQuick.Controls 1.2
  42. import QtQuick.Controls.Private 1.0
  43. /*!
  44. \qmltype TextArea
  45. \inqmlmodule QtQuick.Controls
  46. \since 5.1
  47. \ingroup controls
  48. \brief Displays multiple lines of editable formatted text.
  49. \image textarea.png
  50. It can display both plain and rich text. For example:
  51. \qml
  52. TextArea {
  53. width: 240
  54. text:
  55. "Lorem ipsum dolor sit amet, consectetur adipisicing elit, " +
  56. "sed do eiusmod tempor incididunt ut labore et dolore magna " +
  57. "aliqua. Ut enim ad minim veniam, quis nostrud exercitation " +
  58. "ullamco laboris nisi ut aliquip ex ea commodo cosnsequat. ";
  59. }
  60. \endqml
  61. Clipboard support is provided by the cut(), copy(), and paste() functions, and the selection can
  62. be handled in a traditional "mouse" mechanism by setting selectByMouse, or handled completely
  63. from QML by manipulating selectionStart and selectionEnd, or using selectAll() or selectWord().
  64. You can translate between cursor positions (characters from the start of the document) and pixel
  65. points using positionAt() and positionToRectangle().
  66. You can create a custom appearance for a TextArea by
  67. assigning a \l {TextAreaStyle}.
  68. \sa TextField, TextEdit
  69. */
  70. ScrollView {
  71. id: area
  72. /*!
  73. \qmlproperty bool TextArea::activeFocusOnPress
  74. Whether the TextEdit should gain active focus on a mouse press. By default this is
  75. set to true.
  76. */
  77. property alias activeFocusOnPress: edit.activeFocusOnPress
  78. /*!
  79. \qmlproperty url TextArea::baseUrl
  80. This property specifies a base URL which is used to resolve relative URLs
  81. within the text.
  82. The default value is the url of the QML file instantiating the TextArea item.
  83. */
  84. property alias baseUrl: edit.baseUrl
  85. /*!
  86. \qmlproperty bool TextArea::canPaste
  87. Returns true if the TextArea is writable and the content of the clipboard is
  88. suitable for pasting into the TextArea.
  89. */
  90. readonly property alias canPaste: edit.canPaste
  91. /*!
  92. \qmlproperty bool TextArea::canRedo
  93. Returns true if the TextArea is writable and there are \l {undo}{undone}
  94. operations that can be redone.
  95. */
  96. readonly property alias canRedo: edit.canRedo
  97. /*!
  98. \qmlproperty bool TextArea::canUndo
  99. Returns true if the TextArea is writable and there are previous operations
  100. that can be undone.
  101. */
  102. readonly property alias canUndo: edit.canUndo
  103. /*!
  104. \qmlproperty color TextArea::textColor
  105. The text color.
  106. \qml
  107. TextArea { textColor: "orange" }
  108. \endqml
  109. */
  110. property alias textColor: edit.color
  111. /*!
  112. \qmlproperty int TextArea::cursorPosition
  113. The position of the cursor in the TextArea.
  114. */
  115. property alias cursorPosition: edit.cursorPosition
  116. /*!
  117. \qmlproperty rect TextArea::cursorRectangle
  118. \since QtQuick.Controls 1.3
  119. The rectangle where the text cursor is rendered within the text area.
  120. */
  121. readonly property alias cursorRectangle: edit.cursorRectangle
  122. /*! \qmlproperty font TextArea::font
  123. The font of the TextArea.
  124. */
  125. property alias font: edit.font
  126. /*!
  127. \qmlproperty enumeration TextArea::horizontalAlignment
  128. Sets the alignment of the text within the TextArea item's width.
  129. By default, the horizontal text alignment follows the natural alignment of the text,
  130. for example, text that is read from left to right will be aligned to the left.
  131. The valid values for \c horizontalAlignment are:
  132. \list
  133. \li TextEdit.AlignLeft (Default)
  134. \li TextEdit.AlignRight
  135. \li TextEdit.AlignHCenter
  136. \endlist
  137. When using the attached property LayoutMirroring::enabled to mirror application
  138. layouts, the horizontal alignment of text will also be mirrored. However, the property
  139. \c horizontalAlignment will remain unchanged. To query the effective horizontal alignment
  140. of TextArea, use the read-only property \c effectiveHorizontalAlignment.
  141. */
  142. property alias horizontalAlignment: edit.horizontalAlignment
  143. /*!
  144. \qmlproperty enumeration TextArea::effectiveHorizontalAlignment
  145. Gets the effective horizontal alignment of the text within the TextArea item's width.
  146. To set/get the default horizontal alignment of TextArea, use the property \c horizontalAlignment.
  147. */
  148. readonly property alias effectiveHorizontalAlignment: edit.effectiveHorizontalAlignment
  149. /*!
  150. \qmlproperty enumeration TextArea::verticalAlignment
  151. Sets the alignment of the text within the TextArea item's height.
  152. The valid values for \c verticalAlignment are:
  153. \list
  154. \li TextEdit.AlignTop
  155. \li TextEdit.AlignBottom
  156. \li TextEdit.AlignVCenter (Default)
  157. \endlist
  158. */
  159. property alias verticalAlignment: edit.verticalAlignment
  160. /*!
  161. \qmlproperty bool TextArea::inputMethodComposing
  162. \since QtQuick.Controls 1.3
  163. This property holds whether the TextArea has partial text input from an input method.
  164. While it is composing an input method may rely on mouse or key events from the TextArea
  165. to edit or commit the partial text. This property can be used to determine when to disable
  166. events handlers that may interfere with the correct operation of an input method.
  167. */
  168. readonly property bool inputMethodComposing: !!edit.inputMethodComposing
  169. /*!
  170. \qmlproperty enumeration TextArea::inputMethodHints
  171. Provides hints to the input method about the expected content of the text edit, and how it
  172. should operate.
  173. The value is a bit-wise combination of flags or Qt.ImhNone if no hints are set.
  174. The default value is \c Qt.ImhNone.
  175. Flags that alter behavior are:
  176. \list
  177. \li Qt.ImhHiddenText - Characters should be hidden, as is typically used when entering passwords.
  178. \li Qt.ImhSensitiveData - Typed text should not be stored by the active input method
  179. in any persistent storage like predictive user dictionary.
  180. \li Qt.ImhNoAutoUppercase - The input method should not try to automatically switch to upper case
  181. when a sentence ends.
  182. \li Qt.ImhPreferNumbers - Numbers are preferred (but not required).
  183. \li Qt.ImhPreferUppercase - Upper case letters are preferred (but not required).
  184. \li Qt.ImhPreferLowercase - Lower case letters are preferred (but not required).
  185. \li Qt.ImhNoPredictiveText - Do not use predictive text (i.e. dictionary lookup) while typing.
  186. \li Qt.ImhDate - The text editor functions as a date field.
  187. \li Qt.ImhTime - The text editor functions as a time field.
  188. \endlist
  189. Flags that restrict input (exclusive flags) are:
  190. \list
  191. \li Qt.ImhDigitsOnly - Only digits are allowed.
  192. \li Qt.ImhFormattedNumbersOnly - Only number input is allowed. This includes decimal point and minus sign.
  193. \li Qt.ImhUppercaseOnly - Only upper case letter input is allowed.
  194. \li Qt.ImhLowercaseOnly - Only lower case letter input is allowed.
  195. \li Qt.ImhDialableCharactersOnly - Only characters suitable for phone dialing are allowed.
  196. \li Qt.ImhEmailCharactersOnly - Only characters suitable for email addresses are allowed.
  197. \li Qt.ImhUrlCharactersOnly - Only characters suitable for URLs are allowed.
  198. \endlist
  199. Masks:
  200. \list
  201. \li Qt.ImhExclusiveInputMask - This mask yields nonzero if any of the exclusive flags are used.
  202. \endlist
  203. */
  204. property alias inputMethodHints: edit.inputMethodHints
  205. /*!
  206. \qmlproperty int TextArea::length
  207. Returns the total number of plain text characters in the TextArea item.
  208. As this number doesn't include any formatting markup, it may not be the same as the
  209. length of the string returned by the \l text property.
  210. This property can be faster than querying the length the \l text property as it doesn't
  211. require any copying or conversion of the TextArea's internal string data.
  212. */
  213. readonly property alias length: edit.length
  214. /*!
  215. \qmlproperty int TextArea::lineCount
  216. Returns the total number of lines in the TextArea item.
  217. */
  218. readonly property alias lineCount: edit.lineCount
  219. /*!
  220. \qmlproperty bool TextArea::readOnly
  221. Whether the user can interact with the TextArea item.
  222. The difference from a disabled text field is that it will appear
  223. to be active, and text can be selected and copied.
  224. If this property is set to \c true, the text cannot be edited by user interaction.
  225. By default this property is \c false.
  226. */
  227. property alias readOnly: edit.readOnly
  228. Accessible.readOnly: readOnly
  229. /*!
  230. \qmlproperty string TextArea::selectedText
  231. This read-only property provides the text currently selected in the
  232. text edit.
  233. */
  234. readonly property alias selectedText: edit.selectedText
  235. /*!
  236. \qmlproperty int TextArea::selectionEnd
  237. The cursor position after the last character in the current selection.
  238. This property is read-only. To change the selection, use select(start,end),
  239. selectAll(), or selectWord().
  240. \sa selectionStart, cursorPosition, selectedText
  241. */
  242. readonly property alias selectionEnd: edit.selectionEnd
  243. /*!
  244. \qmlproperty int TextArea::selectionStart
  245. The cursor position before the first character in the current selection.
  246. This property is read-only. To change the selection, use select(start,end),
  247. selectAll(), or selectWord().
  248. \sa selectionEnd, cursorPosition, selectedText
  249. */
  250. readonly property alias selectionStart: edit.selectionStart
  251. /*!
  252. \qmlproperty bool TextArea::tabChangesFocus
  253. This property holds whether Tab changes focus, or is accepted as input.
  254. Defaults to \c false.
  255. */
  256. property bool tabChangesFocus: false
  257. /*!
  258. \qmlproperty string TextArea::text
  259. The text to display. If the text format is AutoText the text edit will
  260. automatically determine whether the text should be treated as
  261. rich text. This determination is made using Qt::mightBeRichText().
  262. */
  263. property alias text: edit.text
  264. /*!
  265. \qmlproperty enumeration TextArea::textFormat
  266. The way the text property should be displayed.
  267. \list
  268. \li TextEdit.AutoText
  269. \li TextEdit.PlainText
  270. \li TextEdit.RichText
  271. \endlist
  272. The default is TextEdit.PlainText. If the text format is TextEdit.AutoText the text edit
  273. will automatically determine whether the text should be treated as
  274. rich text. This determination is made using Qt::mightBeRichText().
  275. */
  276. property alias textFormat: edit.textFormat
  277. /*!
  278. \qmlproperty enumeration TextArea::wrapMode
  279. Set this property to wrap the text to the TextArea item's width.
  280. \list
  281. \li TextEdit.NoWrap - no wrapping will be performed.
  282. \li TextEdit.WordWrap (default) - wrapping is done on word boundaries only.
  283. \li TextEdit.WrapAnywhere - wrapping is done at any point on a line, even if it occurs in the middle of a word.
  284. \li TextEdit.Wrap - if possible, wrapping occurs at a word boundary; otherwise it will occur at the appropriate point on the line, even in the middle of a word.
  285. \endlist
  286. */
  287. property alias wrapMode: edit.wrapMode
  288. /*!
  289. \qmlproperty bool TextArea::selectByMouse
  290. This property determines if the user can select the text with the
  291. mouse.
  292. The default value is \c true.
  293. */
  294. property bool selectByMouse: true
  295. /*!
  296. \qmlproperty bool TextArea::selectByKeyboard
  297. This property determines if the user can select the text with the
  298. keyboard.
  299. If set to \c true, the user can use the keyboard to select the text
  300. even if the editor is read-only. If set to \c false, the user cannot
  301. use the keyboard to select the text even if the editor is editable.
  302. The default value is \c true when the editor is editable,
  303. and \c false when read-only.
  304. \sa readOnly
  305. */
  306. property alias selectByKeyboard: edit.selectByKeyboard
  307. /*!
  308. \qmlsignal TextArea::linkActivated(string link)
  309. This signal is emitted when the user clicks on a link embedded in the text.
  310. The link must be in rich text or HTML format and the
  311. \a link string provides access to the particular link.
  312. The corresponding handler is \c onLinkActivated.
  313. */
  314. signal linkActivated(string link)
  315. /*!
  316. \qmlsignal TextArea::linkHovered(string link)
  317. \since QtQuick.Controls 1.1
  318. This signal is emitted when the user hovers a link embedded in the text.
  319. The link must be in rich text or HTML format and the
  320. \a link string provides access to the particular link.
  321. \sa hoveredLink
  322. The corresponding handler is \c onLinkHovered.
  323. */
  324. signal linkHovered(string link)
  325. /*!
  326. \qmlsignal TextArea::editingFinished()
  327. \since QtQuick.Controls 1.5
  328. This signal is emitted when the text area loses focus.
  329. The corresponding handler is \c onEditingFinished.
  330. */
  331. signal editingFinished()
  332. /*!
  333. \qmlproperty string TextArea::hoveredLink
  334. \since QtQuick.Controls 1.1
  335. This property contains the link string when user hovers a link
  336. embedded in the text. The link must be in rich text or HTML format
  337. and the link string provides access to the particular link.
  338. */
  339. readonly property alias hoveredLink: edit.hoveredLink
  340. /*!
  341. \since QtQuick.Controls 1.3
  342. This property contains the edit \l Menu for working
  343. with text selection. Set it to \c null if no menu
  344. is wanted.
  345. \sa Menu
  346. */
  347. property Component menu: editMenu.defaultMenu
  348. /*!
  349. \qmlmethod void TextArea::append(string text)
  350. Appends \a string as a new line to the end of the text area.
  351. */
  352. function append (string) {
  353. edit.append(string)
  354. __verticalScrollBar.value = __verticalScrollBar.maximumValue
  355. }
  356. /*!
  357. \qmlmethod void TextArea::copy()
  358. Copies the currently selected text to the system clipboard.
  359. */
  360. function copy() {
  361. edit.copy();
  362. }
  363. /*!
  364. \qmlmethod void TextArea::cut()
  365. Moves the currently selected text to the system clipboard.
  366. */
  367. function cut() {
  368. edit.cut();
  369. }
  370. /*!
  371. \qmlmethod void TextArea::deselect()
  372. Removes active text selection.
  373. */
  374. function deselect() {
  375. edit.deselect();
  376. }
  377. /*!
  378. \qmlmethod string TextArea::getFormattedText(int start, int end)
  379. Returns the section of text that is between the \a start and \a end positions.
  380. The returned text will be formatted according to the \l textFormat property.
  381. */
  382. function getFormattedText(start, end) {
  383. return edit.getFormattedText(start, end);
  384. }
  385. /*!
  386. \qmlmethod string TextArea::getText(int start, int end)
  387. Returns the section of text that is between the \a start and \a end positions.
  388. The returned text does not include any rich text formatting.
  389. */
  390. function getText(start, end) {
  391. return edit.getText(start, end);
  392. }
  393. /*!
  394. \qmlmethod void TextArea::insert(int position, string text)
  395. Inserts \a text into the TextArea at position.
  396. */
  397. function insert(position, text) {
  398. edit.insert(position, text);
  399. }
  400. /*!
  401. \qmlmethod bool TextArea::isRightToLeft(int start, int end)
  402. Returns true if the natural reading direction of the editor text
  403. found between positions \a start and \a end is right to left.
  404. */
  405. function isRightToLeft(start, end) {
  406. return edit.isRightToLeft(start, end);
  407. }
  408. /*!
  409. \qmlmethod void TextArea::moveCursorSelection(int position, SelectionMode mode = TextEdit.SelectCharacters)
  410. Moves the cursor to \a position and updates the selection according to the optional \a mode
  411. parameter. (To only move the cursor, set the \l cursorPosition property.)
  412. When this method is called it additionally sets either the
  413. selectionStart or the selectionEnd (whichever was at the previous cursor position)
  414. to the specified position. This allows you to easily extend and contract the selected
  415. text range.
  416. The selection mode specifies whether the selection is updated on a per character or a per word
  417. basis. If not specified the selection mode will default to TextEdit.SelectCharacters.
  418. \list
  419. \li TextEdit.SelectCharacters - Sets either the selectionStart or selectionEnd (whichever was at
  420. the previous cursor position) to the specified position.
  421. \li TextEdit.SelectWords - Sets the selectionStart and selectionEnd to include all
  422. words between the specified position and the previous cursor position. Words partially in the
  423. range are included.
  424. \endlist
  425. For example, take this sequence of calls:
  426. \code
  427. cursorPosition = 5
  428. moveCursorSelection(9, TextEdit.SelectCharacters)
  429. moveCursorSelection(7, TextEdit.SelectCharacters)
  430. \endcode
  431. This moves the cursor to the 5th position, extends the selection end from 5 to 9,
  432. and then retracts the selection end from 9 to 7, leaving the text from the 5th
  433. position to the 7th position selected (the 6th and 7th characters).
  434. The same sequence with TextEdit.SelectWords will extend the selection start to a word boundary
  435. before or on the 5th position, and extend the selection end to a word boundary on or past the 9th position.
  436. */
  437. function moveCursorSelection(position, mode) {
  438. edit.moveCursorSelection(position, mode);
  439. }
  440. /*!
  441. \qmlmethod void TextArea::paste()
  442. Replaces the currently selected text by the contents of the system clipboard.
  443. */
  444. function paste() {
  445. edit.paste();
  446. }
  447. /*!
  448. \qmlmethod int TextArea::positionAt(int x, int y)
  449. Returns the text position closest to pixel position (\a x, \a y).
  450. Position 0 is before the first character, position 1 is after the first character
  451. but before the second, and so on until position \l {text}.length, which is after all characters.
  452. */
  453. function positionAt(x, y) {
  454. return edit.positionAt(x, y);
  455. }
  456. /*!
  457. \qmlmethod rectangle TextArea::positionToRectangle(position)
  458. Returns the rectangle at the given \a position in the text. The x, y,
  459. and height properties correspond to the cursor that would describe
  460. that position.
  461. */
  462. function positionToRectangle(position) {
  463. return edit.positionToRectangle(position);
  464. }
  465. /*!
  466. \qmlmethod void TextArea::redo()
  467. Redoes the last operation if redo is \l {canRedo}{available}.
  468. */
  469. function redo() {
  470. edit.redo();
  471. }
  472. /*!
  473. \qmlmethod string TextArea::remove(int start, int end)
  474. Removes the section of text that is between the \a start and \a end positions from the TextArea.
  475. */
  476. function remove(start, end) {
  477. return edit.remove(start, end);
  478. }
  479. /*!
  480. \qmlmethod void TextArea::select(int start, int end)
  481. Causes the text from \a start to \a end to be selected.
  482. If either start or end is out of range, the selection is not changed.
  483. After calling this, selectionStart will become the lesser
  484. and selectionEnd will become the greater (regardless of the order passed
  485. to this method).
  486. \sa selectionStart, selectionEnd
  487. */
  488. function select(start, end) {
  489. edit.select(start, end);
  490. }
  491. /*!
  492. \qmlmethod void TextArea::selectAll()
  493. Causes all text to be selected.
  494. */
  495. function selectAll() {
  496. edit.selectAll();
  497. }
  498. /*!
  499. \qmlmethod void TextArea::selectWord()
  500. Causes the word closest to the current cursor position to be selected.
  501. */
  502. function selectWord() {
  503. edit.selectWord();
  504. }
  505. /*!
  506. \qmlmethod void TextArea::undo()
  507. Undoes the last operation if undo is \l {canUndo}{available}. Deselects any
  508. current selection, and updates the selection start to the current cursor
  509. position.
  510. */
  511. function undo() {
  512. edit.undo();
  513. }
  514. /*! \qmlproperty bool TextArea::backgroundVisible
  515. This property determines if the background should be filled or not.
  516. The default value is \c true.
  517. */
  518. property alias backgroundVisible: colorRect.visible
  519. /*! \internal */
  520. default property alias data: area.data
  521. /*! \qmlproperty real TextArea::textMargin
  522. \since QtQuick.Controls 1.1
  523. The margin, in pixels, around the text in the TextArea.
  524. */
  525. property alias textMargin: edit.textMargin
  526. /*! \qmlproperty real TextArea::contentWidth
  527. \since QtQuick.Controls 1.3
  528. The width of the text content.
  529. */
  530. readonly property alias contentWidth: edit.contentWidth
  531. /*! \qmlproperty real TextArea::contentHeight
  532. \since QtQuick.Controls 1.3
  533. The height of the text content.
  534. */
  535. readonly property alias contentHeight: edit.contentHeight
  536. frameVisible: true
  537. activeFocusOnTab: true
  538. Accessible.role: Accessible.EditableText
  539. style: Settings.styleComponent(Settings.style, "TextAreaStyle.qml", area)
  540. /*!
  541. \qmlproperty TextDocument TextArea::textDocument
  542. This property exposes the \l QQuickTextDocument of this TextArea.
  543. \sa TextEdit::textDocument
  544. */
  545. property alias textDocument: edit.textDocument
  546. Flickable {
  547. id: flickable
  548. interactive: !edit.selectByMouse
  549. anchors.fill: parent
  550. TextEdit {
  551. id: edit
  552. focus: true
  553. cursorDelegate: __style && __style.__cursorDelegate ? __style.__cursorDelegate : null
  554. persistentSelection: true
  555. Rectangle {
  556. id: colorRect
  557. parent: viewport
  558. anchors.fill: parent
  559. color: __style ? __style.backgroundColor : "white"
  560. z: -1
  561. }
  562. property int layoutRecursionDepth: 0
  563. function doLayout() {
  564. // scrollbars affect the document/viewport size and vice versa, so we
  565. // must allow the layout loop to recurse twice until the sizes stabilize
  566. if (layoutRecursionDepth <= 2) {
  567. layoutRecursionDepth++
  568. if (wrapMode == TextEdit.NoWrap) {
  569. __horizontalScrollBar.visible = edit.contentWidth > viewport.width
  570. edit.width = Math.max(viewport.width, edit.contentWidth)
  571. } else {
  572. __horizontalScrollBar.visible = false
  573. edit.width = viewport.width
  574. }
  575. edit.height = Math.max(viewport.height, edit.contentHeight)
  576. flickable.contentWidth = edit.contentWidth
  577. flickable.contentHeight = edit.contentHeight
  578. layoutRecursionDepth--
  579. }
  580. }
  581. Connections {
  582. target: area.viewport
  583. onWidthChanged: edit.doLayout()
  584. onHeightChanged: edit.doLayout()
  585. }
  586. onContentWidthChanged: edit.doLayout()
  587. onContentHeightChanged: edit.doLayout()
  588. onWrapModeChanged: edit.doLayout()
  589. renderType: __style ? __style.renderType : Text.NativeRendering
  590. font: __style ? __style.font : TextSingleton.font
  591. color: __style ? __style.textColor : "darkgray"
  592. selectionColor: __style ? __style.selectionColor : "darkred"
  593. selectedTextColor: __style ? __style.selectedTextColor : "white"
  594. wrapMode: TextEdit.WordWrap
  595. textMargin: __style && __style.textMargin !== undefined ? __style.textMargin : 4
  596. selectByMouse: area.selectByMouse && Qt.platform.os != "ios" && (!Settings.isMobile || !cursorHandle.delegate || !selectionHandle.delegate)
  597. readOnly: false
  598. Keys.forwardTo: area
  599. KeyNavigation.priority: KeyNavigation.BeforeItem
  600. KeyNavigation.tab: area.tabChangesFocus ? area.KeyNavigation.tab : null
  601. KeyNavigation.backtab: area.tabChangesFocus ? area.KeyNavigation.backtab : null
  602. property bool blockRecursion: false
  603. property bool hasSelection: selectionStart !== selectionEnd
  604. readonly property int selectionPosition: selectionStart !== cursorPosition ? selectionStart : selectionEnd
  605. // force re-evaluation when contentWidth changes => text layout changes => selection moves
  606. property rect selectionRectangle: contentWidth ? positionToRectangle(selectionPosition)
  607. : positionToRectangle(selectionPosition)
  608. onSelectionStartChanged: syncHandlesWithSelection()
  609. onCursorPositionChanged: syncHandlesWithSelection()
  610. function syncHandlesWithSelection()
  611. {
  612. if (!blockRecursion && selectionHandle.delegate) {
  613. blockRecursion = true
  614. // We cannot use property selectionPosition since it gets updated after onSelectionStartChanged
  615. cursorHandle.position = cursorPosition
  616. selectionHandle.position = (selectionStart !== cursorPosition) ? selectionStart : selectionEnd
  617. blockRecursion = false
  618. }
  619. ensureVisible(cursorRectangle)
  620. }
  621. function ensureVisible(rect) {
  622. if (rect.y >= flickableItem.contentY + viewport.height - rect.height - textMargin) {
  623. // moving down
  624. flickableItem.contentY = rect.y - viewport.height + rect.height + textMargin
  625. } else if (rect.y < flickableItem.contentY) {
  626. // moving up
  627. flickableItem.contentY = rect.y - textMargin
  628. }
  629. if (rect.x >= flickableItem.contentX + viewport.width - textMargin) {
  630. // moving right
  631. flickableItem.contentX = rect.x - viewport.width + textMargin
  632. } else if (rect.x < flickableItem.contentX) {
  633. // moving left
  634. flickableItem.contentX = rect.x - textMargin
  635. }
  636. }
  637. onLinkActivated: area.linkActivated(link)
  638. onLinkHovered: area.linkHovered(link)
  639. onEditingFinished: area.editingFinished()
  640. function activate() {
  641. if (activeFocusOnPress) {
  642. forceActiveFocus()
  643. if (!readOnly)
  644. Qt.inputMethod.show()
  645. }
  646. cursorHandle.activate()
  647. selectionHandle.activate()
  648. }
  649. function moveHandles(cursor, selection) {
  650. blockRecursion = true
  651. cursorPosition = cursor
  652. if (selection === -1) {
  653. selectWord()
  654. selection = selectionStart
  655. }
  656. selectionHandle.position = selection
  657. cursorHandle.position = cursorPosition
  658. blockRecursion = false
  659. }
  660. MouseArea {
  661. id: mouseArea
  662. anchors.fill: parent
  663. cursorShape: edit.hoveredLink ? Qt.PointingHandCursor : Qt.IBeamCursor
  664. acceptedButtons: (edit.selectByMouse ? Qt.NoButton : Qt.LeftButton) | (area.menu ? Qt.RightButton : Qt.NoButton)
  665. onClicked: {
  666. if (editMenu.item)
  667. return;
  668. var pos = edit.positionAt(mouse.x, mouse.y)
  669. edit.moveHandles(pos, pos)
  670. edit.activate()
  671. }
  672. onPressAndHold: {
  673. if (editMenu.item)
  674. return;
  675. var pos = edit.positionAt(mouse.x, mouse.y)
  676. edit.moveHandles(pos, area.selectByMouse ? -1 : pos)
  677. edit.activate()
  678. }
  679. }
  680. EditMenu {
  681. id: editMenu
  682. control: area
  683. input: edit
  684. mouseArea: mouseArea
  685. cursorHandle: cursorHandle
  686. selectionHandle: selectionHandle
  687. flickable: flickable
  688. anchors.fill: parent
  689. }
  690. ScenePosListener {
  691. id: listener
  692. item: edit
  693. enabled: edit.activeFocus && Qt.platform.os !== "ios" && Settings.isMobile
  694. }
  695. TextHandle {
  696. id: selectionHandle
  697. editor: edit
  698. control: area
  699. z: 1000001 // DefaultWindowDecoration+1
  700. parent: !edit.activeFocus || Qt.platform.os === "ios" ? editor : Window.contentItem // float (QTBUG-42538)
  701. active: area.selectByMouse && Settings.isMobile
  702. delegate: __style.__selectionHandle
  703. maximum: cursorHandle.position - 1
  704. // Mention scenePos, contentX and contentY in the mappedPos binding to force re-evaluation if they change
  705. property var mappedPos: listener.scenePos.x !== listener.scenePos.y !== flickableItem.contentX !== flickableItem.contentY !== Number.MAX_VALUE ?
  706. editor.mapToItem(parent, editor.selectionRectangle.x, editor.selectionRectangle.y) : -1
  707. x: mappedPos.x
  708. y: mappedPos.y
  709. property var posInViewport: flickableItem.contentX !== flickableItem.contentY !== Number.MAX_VALUE ?
  710. viewport.mapFromItem(parent, handleX, handleY) : -1
  711. visible: pressed || (edit.hasSelection
  712. && posInViewport.y + handleHeight >= -1
  713. && posInViewport.y <= viewport.height + 1
  714. && posInViewport.x + handleWidth >= -1
  715. && posInViewport.x <= viewport.width + 1)
  716. onPositionChanged: {
  717. if (!edit.blockRecursion) {
  718. edit.blockRecursion = true
  719. edit.select(selectionHandle.position, cursorHandle.position)
  720. if (pressed)
  721. edit.ensureVisible(edit.selectionRectangle)
  722. edit.blockRecursion = false
  723. }
  724. }
  725. }
  726. TextHandle {
  727. id: cursorHandle
  728. editor: edit
  729. control: area
  730. z: 1000001 // DefaultWindowDecoration+1
  731. parent: !edit.activeFocus || Qt.platform.os === "ios" ? editor : Window.contentItem // float (QTBUG-42538)
  732. active: area.selectByMouse && Settings.isMobile
  733. delegate: __style.__cursorHandle
  734. minimum: edit.hasSelection ? selectionHandle.position + 1 : -1
  735. // Mention scenePos, contentX and contentY in the mappedPos binding to force re-evaluation if they change
  736. property var mappedPos: listener.scenePos.x !== listener.scenePos.y !== flickableItem.contentX !== flickableItem.contentY !== Number.MAX_VALUE ?
  737. editor.mapToItem(parent, editor.cursorRectangle.x, editor.cursorRectangle.y) : -1
  738. x: mappedPos.x
  739. y: mappedPos.y
  740. property var posInViewport: flickableItem.contentX !== flickableItem.contentY !== Number.MAX_VALUE ?
  741. viewport.mapFromItem(parent, handleX, handleY) : -1
  742. visible: pressed || ((edit.cursorVisible || edit.hasSelection)
  743. && posInViewport.y + handleHeight >= -1
  744. && posInViewport.y <= viewport.height + 1
  745. && posInViewport.x + handleWidth >= -1
  746. && posInViewport.x <= viewport.width + 1)
  747. onPositionChanged: {
  748. if (!edit.blockRecursion) {
  749. edit.blockRecursion = true
  750. if (!edit.hasSelection)
  751. selectionHandle.position = cursorHandle.position
  752. edit.select(selectionHandle.position, cursorHandle.position)
  753. edit.blockRecursion = false
  754. }
  755. }
  756. }
  757. }
  758. }
  759. Keys.onPressed: {
  760. if (event.key == Qt.Key_PageUp) {
  761. __verticalScrollBar.value -= area.height
  762. } else if (event.key == Qt.Key_PageDown)
  763. __verticalScrollBar.value += area.height
  764. }
  765. }