The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2776 lines
80KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. namespace juce
  19. {
  20. // a word or space that can't be broken down any further
  21. struct TextAtom
  22. {
  23. //==============================================================================
  24. String atomText;
  25. float width;
  26. int numChars;
  27. //==============================================================================
  28. bool isWhitespace() const noexcept { return CharacterFunctions::isWhitespace (atomText[0]); }
  29. bool isNewLine() const noexcept { return atomText[0] == '\r' || atomText[0] == '\n'; }
  30. String getText (juce_wchar passwordCharacter) const
  31. {
  32. if (passwordCharacter == 0)
  33. return atomText;
  34. return String::repeatedString (String::charToString (passwordCharacter),
  35. atomText.length());
  36. }
  37. String getTrimmedText (const juce_wchar passwordCharacter) const
  38. {
  39. if (passwordCharacter == 0)
  40. return atomText.substring (0, numChars);
  41. if (isNewLine())
  42. return {};
  43. return String::repeatedString (String::charToString (passwordCharacter), numChars);
  44. }
  45. JUCE_LEAK_DETECTOR (TextAtom)
  46. };
  47. //==============================================================================
  48. // a run of text with a single font and colour
  49. class TextEditor::UniformTextSection
  50. {
  51. public:
  52. UniformTextSection (const String& text, const Font& f, Colour col, juce_wchar passwordCharToUse)
  53. : font (f), colour (col), passwordChar (passwordCharToUse)
  54. {
  55. initialiseAtoms (text);
  56. }
  57. UniformTextSection (const UniformTextSection&) = default;
  58. UniformTextSection (UniformTextSection&&) = default;
  59. UniformTextSection& operator= (const UniformTextSection&) = delete;
  60. void append (UniformTextSection& other)
  61. {
  62. if (! other.atoms.isEmpty())
  63. {
  64. int i = 0;
  65. if (! atoms.isEmpty())
  66. {
  67. auto& lastAtom = atoms.getReference (atoms.size() - 1);
  68. if (! CharacterFunctions::isWhitespace (lastAtom.atomText.getLastCharacter()))
  69. {
  70. auto& first = other.atoms.getReference(0);
  71. if (! CharacterFunctions::isWhitespace (first.atomText[0]))
  72. {
  73. lastAtom.atomText += first.atomText;
  74. lastAtom.numChars = (uint16) (lastAtom.numChars + first.numChars);
  75. lastAtom.width = font.getStringWidthFloat (lastAtom.getText (passwordChar));
  76. ++i;
  77. }
  78. }
  79. }
  80. atoms.ensureStorageAllocated (atoms.size() + other.atoms.size() - i);
  81. while (i < other.atoms.size())
  82. {
  83. atoms.add (other.atoms.getReference(i));
  84. ++i;
  85. }
  86. }
  87. }
  88. UniformTextSection* split (int indexToBreakAt)
  89. {
  90. auto* section2 = new UniformTextSection ({}, font, colour, passwordChar);
  91. int index = 0;
  92. for (int i = 0; i < atoms.size(); ++i)
  93. {
  94. auto& atom = atoms.getReference(i);
  95. auto nextIndex = index + atom.numChars;
  96. if (index == indexToBreakAt)
  97. {
  98. for (int j = i; j < atoms.size(); ++j)
  99. section2->atoms.add (atoms.getUnchecked (j));
  100. atoms.removeRange (i, atoms.size());
  101. break;
  102. }
  103. if (indexToBreakAt >= index && indexToBreakAt < nextIndex)
  104. {
  105. TextAtom secondAtom;
  106. secondAtom.atomText = atom.atomText.substring (indexToBreakAt - index);
  107. secondAtom.width = font.getStringWidthFloat (secondAtom.getText (passwordChar));
  108. secondAtom.numChars = (uint16) secondAtom.atomText.length();
  109. section2->atoms.add (secondAtom);
  110. atom.atomText = atom.atomText.substring (0, indexToBreakAt - index);
  111. atom.width = font.getStringWidthFloat (atom.getText (passwordChar));
  112. atom.numChars = (uint16) (indexToBreakAt - index);
  113. for (int j = i + 1; j < atoms.size(); ++j)
  114. section2->atoms.add (atoms.getUnchecked (j));
  115. atoms.removeRange (i + 1, atoms.size());
  116. break;
  117. }
  118. index = nextIndex;
  119. }
  120. return section2;
  121. }
  122. void appendAllText (MemoryOutputStream& mo) const
  123. {
  124. for (auto& atom : atoms)
  125. mo << atom.atomText;
  126. }
  127. void appendSubstring (MemoryOutputStream& mo, Range<int> range) const
  128. {
  129. int index = 0;
  130. for (auto& atom : atoms)
  131. {
  132. auto nextIndex = index + atom.numChars;
  133. if (range.getStart() < nextIndex)
  134. {
  135. if (range.getEnd() <= index)
  136. break;
  137. auto r = (range - index).getIntersectionWith ({ 0, (int) atom.numChars });
  138. if (! r.isEmpty())
  139. mo << atom.atomText.substring (r.getStart(), r.getEnd());
  140. }
  141. index = nextIndex;
  142. }
  143. }
  144. int getTotalLength() const noexcept
  145. {
  146. int total = 0;
  147. for (auto& atom : atoms)
  148. total += atom.numChars;
  149. return total;
  150. }
  151. void setFont (const Font& newFont, const juce_wchar passwordCharToUse)
  152. {
  153. if (font != newFont || passwordChar != passwordCharToUse)
  154. {
  155. font = newFont;
  156. passwordChar = passwordCharToUse;
  157. for (auto& atom : atoms)
  158. atom.width = newFont.getStringWidthFloat (atom.getText (passwordChar));
  159. }
  160. }
  161. //==============================================================================
  162. Font font;
  163. Colour colour;
  164. Array<TextAtom> atoms;
  165. juce_wchar passwordChar;
  166. private:
  167. void initialiseAtoms (const String& textToParse)
  168. {
  169. auto text = textToParse.getCharPointer();
  170. while (! text.isEmpty())
  171. {
  172. size_t numChars = 0;
  173. auto start = text;
  174. // create a whitespace atom unless it starts with non-ws
  175. if (text.isWhitespace() && *text != '\r' && *text != '\n')
  176. {
  177. do
  178. {
  179. ++text;
  180. ++numChars;
  181. }
  182. while (text.isWhitespace() && *text != '\r' && *text != '\n');
  183. }
  184. else
  185. {
  186. if (*text == '\r')
  187. {
  188. ++text;
  189. ++numChars;
  190. if (*text == '\n')
  191. {
  192. ++start;
  193. ++text;
  194. }
  195. }
  196. else if (*text == '\n')
  197. {
  198. ++text;
  199. ++numChars;
  200. }
  201. else
  202. {
  203. while (! (text.isEmpty() || text.isWhitespace()))
  204. {
  205. ++text;
  206. ++numChars;
  207. }
  208. }
  209. }
  210. TextAtom atom;
  211. atom.atomText = String (start, numChars);
  212. atom.width = (atom.isNewLine() ? 0.0f : font.getStringWidthFloat (atom.getText (passwordChar)));
  213. atom.numChars = (uint16) numChars;
  214. atoms.add (atom);
  215. }
  216. }
  217. JUCE_LEAK_DETECTOR (UniformTextSection)
  218. };
  219. //==============================================================================
  220. struct TextEditor::Iterator
  221. {
  222. Iterator (const TextEditor& ed)
  223. : sections (ed.sections),
  224. justification (ed.justification),
  225. bottomRight ((float) ed.getMaximumTextWidth(), (float) ed.getMaximumTextHeight()),
  226. wordWrapWidth ((float) ed.getWordWrapWidth()),
  227. passwordCharacter (ed.passwordCharacter),
  228. lineSpacing (ed.lineSpacing),
  229. underlineWhitespace (ed.underlineWhitespace)
  230. {
  231. jassert (wordWrapWidth > 0);
  232. if (! sections.isEmpty())
  233. {
  234. currentSection = sections.getUnchecked (sectionIndex);
  235. if (currentSection != nullptr)
  236. beginNewLine();
  237. }
  238. lineHeight = ed.currentFont.getHeight();
  239. }
  240. Iterator (const Iterator&) = default;
  241. Iterator& operator= (const Iterator&) = delete;
  242. //==============================================================================
  243. bool next()
  244. {
  245. if (atom == &longAtom && chunkLongAtom (true))
  246. return true;
  247. if (sectionIndex >= sections.size())
  248. {
  249. moveToEndOfLastAtom();
  250. return false;
  251. }
  252. bool forceNewLine = false;
  253. if (atomIndex >= currentSection->atoms.size() - 1)
  254. {
  255. if (atomIndex >= currentSection->atoms.size())
  256. {
  257. if (++sectionIndex >= sections.size())
  258. {
  259. moveToEndOfLastAtom();
  260. return false;
  261. }
  262. atomIndex = 0;
  263. currentSection = sections.getUnchecked (sectionIndex);
  264. }
  265. else
  266. {
  267. auto& lastAtom = currentSection->atoms.getReference (atomIndex);
  268. if (! lastAtom.isWhitespace())
  269. {
  270. // handle the case where the last atom in a section is actually part of the same
  271. // word as the first atom of the next section...
  272. float right = atomRight + lastAtom.width;
  273. float lineHeight2 = lineHeight;
  274. float maxDescent2 = maxDescent;
  275. for (int section = sectionIndex + 1; section < sections.size(); ++section)
  276. {
  277. auto* s = sections.getUnchecked (section);
  278. if (s->atoms.size() == 0)
  279. break;
  280. auto& nextAtom = s->atoms.getReference (0);
  281. if (nextAtom.isWhitespace())
  282. break;
  283. right += nextAtom.width;
  284. lineHeight2 = jmax (lineHeight2, s->font.getHeight());
  285. maxDescent2 = jmax (maxDescent2, s->font.getDescent());
  286. if (shouldWrap (right))
  287. {
  288. lineHeight = lineHeight2;
  289. maxDescent = maxDescent2;
  290. forceNewLine = true;
  291. break;
  292. }
  293. if (s->atoms.size() > 1)
  294. break;
  295. }
  296. }
  297. }
  298. }
  299. bool isInPreviousAtom = false;
  300. if (atom != nullptr)
  301. {
  302. atomX = atomRight;
  303. indexInText += atom->numChars;
  304. if (atom->isNewLine())
  305. beginNewLine();
  306. else
  307. isInPreviousAtom = true;
  308. }
  309. atom = &(currentSection->atoms.getReference (atomIndex));
  310. atomRight = atomX + atom->width;
  311. ++atomIndex;
  312. if (shouldWrap (atomRight) || forceNewLine)
  313. {
  314. if (atom->isWhitespace())
  315. {
  316. // leave whitespace at the end of a line, but truncate it to avoid scrolling
  317. atomRight = jmin (atomRight, wordWrapWidth);
  318. }
  319. else if (shouldWrap (atom->width)) // atom too big to fit on a line, so break it up..
  320. {
  321. longAtom = *atom;
  322. longAtom.numChars = 0;
  323. atom = &longAtom;
  324. chunkLongAtom (isInPreviousAtom);
  325. }
  326. else
  327. {
  328. beginNewLine();
  329. atomRight = atomX + atom->width;
  330. }
  331. }
  332. return true;
  333. }
  334. void beginNewLine()
  335. {
  336. lineY += lineHeight * lineSpacing;
  337. float lineWidth = 0;
  338. auto tempSectionIndex = sectionIndex;
  339. auto tempAtomIndex = atomIndex;
  340. auto* section = sections.getUnchecked (tempSectionIndex);
  341. lineHeight = section->font.getHeight();
  342. maxDescent = section->font.getDescent();
  343. float nextLineWidth = (atom != nullptr) ? atom->width : 0.0f;
  344. while (! shouldWrap (nextLineWidth))
  345. {
  346. lineWidth = nextLineWidth;
  347. if (tempSectionIndex >= sections.size())
  348. break;
  349. bool checkSize = false;
  350. if (tempAtomIndex >= section->atoms.size())
  351. {
  352. if (++tempSectionIndex >= sections.size())
  353. break;
  354. tempAtomIndex = 0;
  355. section = sections.getUnchecked (tempSectionIndex);
  356. checkSize = true;
  357. }
  358. if (! isPositiveAndBelow (tempAtomIndex, section->atoms.size()))
  359. break;
  360. auto& nextAtom = section->atoms.getReference (tempAtomIndex);
  361. nextLineWidth += nextAtom.width;
  362. if (shouldWrap (nextLineWidth) || nextAtom.isNewLine())
  363. break;
  364. if (checkSize)
  365. {
  366. lineHeight = jmax (lineHeight, section->font.getHeight());
  367. maxDescent = jmax (maxDescent, section->font.getDescent());
  368. }
  369. ++tempAtomIndex;
  370. }
  371. atomX = getJustificationOffsetX (lineWidth);
  372. }
  373. float getJustificationOffsetX (float lineWidth) const
  374. {
  375. if (justification.testFlags (Justification::horizontallyCentred)) return jmax (0.0f, (bottomRight.x - lineWidth) * 0.5f);
  376. if (justification.testFlags (Justification::right)) return jmax (0.0f, bottomRight.x - lineWidth);
  377. return 0;
  378. }
  379. //==============================================================================
  380. void draw (Graphics& g, const UniformTextSection*& lastSection, AffineTransform transform) const
  381. {
  382. if (atom == nullptr)
  383. return;
  384. if (passwordCharacter != 0 || (underlineWhitespace || ! atom->isWhitespace()))
  385. {
  386. if (lastSection != currentSection)
  387. {
  388. lastSection = currentSection;
  389. g.setColour (currentSection->colour);
  390. g.setFont (currentSection->font);
  391. }
  392. jassert (atom->getTrimmedText (passwordCharacter).isNotEmpty());
  393. GlyphArrangement ga;
  394. ga.addLineOfText (currentSection->font,
  395. atom->getTrimmedText (passwordCharacter),
  396. atomX, (float) roundToInt (lineY + lineHeight - maxDescent));
  397. ga.draw (g, transform);
  398. }
  399. }
  400. void drawUnderline (Graphics& g, Range<int> underline, Colour colour, AffineTransform transform) const
  401. {
  402. auto startX = roundToInt (indexToX (underline.getStart()));
  403. auto endX = roundToInt (indexToX (underline.getEnd()));
  404. auto baselineY = roundToInt (lineY + currentSection->font.getAscent() + 0.5f);
  405. Graphics::ScopedSaveState state (g);
  406. g.addTransform (transform);
  407. g.reduceClipRegion ({ startX, baselineY, endX - startX, 1 });
  408. g.fillCheckerBoard ({ (float) endX, (float) baselineY + 1.0f }, 3.0f, 1.0f, colour, Colours::transparentBlack);
  409. }
  410. void drawSelectedText (Graphics& g, Range<int> selected, Colour selectedTextColour, AffineTransform transform) const
  411. {
  412. if (atom == nullptr)
  413. return;
  414. if (passwordCharacter != 0 || ! atom->isWhitespace())
  415. {
  416. GlyphArrangement ga;
  417. ga.addLineOfText (currentSection->font,
  418. atom->getTrimmedText (passwordCharacter),
  419. atomX, (float) roundToInt (lineY + lineHeight - maxDescent));
  420. if (selected.getEnd() < indexInText + atom->numChars)
  421. {
  422. GlyphArrangement ga2 (ga);
  423. ga2.removeRangeOfGlyphs (0, selected.getEnd() - indexInText);
  424. ga.removeRangeOfGlyphs (selected.getEnd() - indexInText, -1);
  425. g.setColour (currentSection->colour);
  426. ga2.draw (g, transform);
  427. }
  428. if (selected.getStart() > indexInText)
  429. {
  430. GlyphArrangement ga2 (ga);
  431. ga2.removeRangeOfGlyphs (selected.getStart() - indexInText, -1);
  432. ga.removeRangeOfGlyphs (0, selected.getStart() - indexInText);
  433. g.setColour (currentSection->colour);
  434. ga2.draw (g, transform);
  435. }
  436. g.setColour (selectedTextColour);
  437. ga.draw (g, transform);
  438. }
  439. }
  440. //==============================================================================
  441. float indexToX (int indexToFind) const
  442. {
  443. if (indexToFind <= indexInText || atom == nullptr)
  444. return atomX;
  445. if (indexToFind >= indexInText + atom->numChars)
  446. return atomRight;
  447. GlyphArrangement g;
  448. g.addLineOfText (currentSection->font,
  449. atom->getText (passwordCharacter),
  450. atomX, 0.0f);
  451. if (indexToFind - indexInText >= g.getNumGlyphs())
  452. return atomRight;
  453. return jmin (atomRight, g.getGlyph (indexToFind - indexInText).getLeft());
  454. }
  455. int xToIndex (float xToFind) const
  456. {
  457. if (xToFind <= atomX || atom == nullptr || atom->isNewLine())
  458. return indexInText;
  459. if (xToFind >= atomRight)
  460. return indexInText + atom->numChars;
  461. GlyphArrangement g;
  462. g.addLineOfText (currentSection->font,
  463. atom->getText (passwordCharacter),
  464. atomX, 0.0f);
  465. auto numGlyphs = g.getNumGlyphs();
  466. int j;
  467. for (j = 0; j < numGlyphs; ++j)
  468. {
  469. auto& pg = g.getGlyph(j);
  470. if ((pg.getLeft() + pg.getRight()) / 2 > xToFind)
  471. break;
  472. }
  473. return indexInText + j;
  474. }
  475. //==============================================================================
  476. bool getCharPosition (int index, Point<float>& anchor, float& lineHeightFound)
  477. {
  478. while (next())
  479. {
  480. if (indexInText + atom->numChars > index)
  481. {
  482. anchor = { indexToX (index), lineY };
  483. lineHeightFound = lineHeight;
  484. return true;
  485. }
  486. }
  487. anchor = { atomX, lineY };
  488. lineHeightFound = lineHeight;
  489. return false;
  490. }
  491. float getYOffset()
  492. {
  493. if (justification.testFlags (Justification::top) || lineY >= bottomRight.y)
  494. return 0;
  495. while (next())
  496. {
  497. if (lineY >= bottomRight.y)
  498. return 0;
  499. }
  500. auto bottom = jmax (0.0f, bottomRight.y - lineY - lineHeight);
  501. if (justification.testFlags (Justification::bottom))
  502. return bottom;
  503. return bottom * 0.5f;
  504. }
  505. int getTotalTextHeight()
  506. {
  507. while (next()) {}
  508. auto height = lineY + lineHeight + getYOffset();
  509. if (atom != nullptr && atom->isNewLine())
  510. height += lineHeight;
  511. return roundToInt (height);
  512. }
  513. int getTextRight()
  514. {
  515. float maxWidth = 0.0f;
  516. while (next())
  517. maxWidth = jmax (maxWidth, atomRight);
  518. return roundToInt (maxWidth);
  519. }
  520. Rectangle<int> getTextBounds (Range<int> range) const
  521. {
  522. auto startX = indexToX (range.getStart());
  523. auto endX = indexToX (range.getEnd());
  524. return Rectangle<float> (startX, lineY, endX - startX, lineHeight * lineSpacing).getSmallestIntegerContainer();
  525. }
  526. //==============================================================================
  527. int indexInText = 0;
  528. float lineY = 0, lineHeight = 0, maxDescent = 0;
  529. float atomX = 0, atomRight = 0;
  530. const TextAtom* atom = nullptr;
  531. private:
  532. const OwnedArray<UniformTextSection>& sections;
  533. const UniformTextSection* currentSection = nullptr;
  534. int sectionIndex = 0, atomIndex = 0;
  535. Justification justification;
  536. const Point<float> bottomRight;
  537. const float wordWrapWidth;
  538. const juce_wchar passwordCharacter;
  539. const float lineSpacing;
  540. const bool underlineWhitespace;
  541. TextAtom longAtom;
  542. bool chunkLongAtom (bool shouldStartNewLine)
  543. {
  544. const auto numRemaining = longAtom.atomText.length() - longAtom.numChars;
  545. if (numRemaining <= 0)
  546. return false;
  547. longAtom.atomText = longAtom.atomText.substring (longAtom.numChars);
  548. indexInText += longAtom.numChars;
  549. GlyphArrangement g;
  550. g.addLineOfText (currentSection->font, atom->getText (passwordCharacter), 0.0f, 0.0f);
  551. int split;
  552. for (split = 0; split < g.getNumGlyphs(); ++split)
  553. if (shouldWrap (g.getGlyph (split).getRight()))
  554. break;
  555. const auto numChars = jmax (1, split);
  556. longAtom.numChars = (uint16) numChars;
  557. longAtom.width = g.getGlyph (numChars - 1).getRight();
  558. atomX = getJustificationOffsetX (longAtom.width);
  559. if (shouldStartNewLine)
  560. {
  561. if (split == numRemaining)
  562. beginNewLine();
  563. else
  564. lineY += lineHeight * lineSpacing;
  565. }
  566. atomRight = atomX + longAtom.width;
  567. return true;
  568. }
  569. void moveToEndOfLastAtom()
  570. {
  571. if (atom != nullptr)
  572. {
  573. atomX = atomRight;
  574. if (atom->isNewLine())
  575. {
  576. atomX = getJustificationOffsetX (0);
  577. lineY += lineHeight * lineSpacing;
  578. }
  579. }
  580. }
  581. bool shouldWrap (const float x) const noexcept
  582. {
  583. return (x - 0.0001f) >= wordWrapWidth;
  584. }
  585. JUCE_LEAK_DETECTOR (Iterator)
  586. };
  587. //==============================================================================
  588. struct TextEditor::InsertAction : public UndoableAction
  589. {
  590. InsertAction (TextEditor& ed, const String& newText, int insertPos,
  591. const Font& newFont, Colour newColour, int oldCaret, int newCaret)
  592. : owner (ed),
  593. text (newText),
  594. insertIndex (insertPos),
  595. oldCaretPos (oldCaret),
  596. newCaretPos (newCaret),
  597. font (newFont),
  598. colour (newColour)
  599. {
  600. }
  601. bool perform() override
  602. {
  603. owner.insert (text, insertIndex, font, colour, nullptr, newCaretPos);
  604. return true;
  605. }
  606. bool undo() override
  607. {
  608. owner.remove ({ insertIndex, insertIndex + text.length() }, nullptr, oldCaretPos);
  609. return true;
  610. }
  611. int getSizeInUnits() override
  612. {
  613. return text.length() + 16;
  614. }
  615. private:
  616. TextEditor& owner;
  617. const String text;
  618. const int insertIndex, oldCaretPos, newCaretPos;
  619. const Font font;
  620. const Colour colour;
  621. JUCE_DECLARE_NON_COPYABLE (InsertAction)
  622. };
  623. //==============================================================================
  624. struct TextEditor::RemoveAction : public UndoableAction
  625. {
  626. RemoveAction (TextEditor& ed, Range<int> rangeToRemove, int oldCaret, int newCaret,
  627. const Array<UniformTextSection*>& oldSections)
  628. : owner (ed),
  629. range (rangeToRemove),
  630. oldCaretPos (oldCaret),
  631. newCaretPos (newCaret)
  632. {
  633. removedSections.addArray (oldSections);
  634. }
  635. bool perform() override
  636. {
  637. owner.remove (range, nullptr, newCaretPos);
  638. return true;
  639. }
  640. bool undo() override
  641. {
  642. owner.reinsert (range.getStart(), removedSections);
  643. owner.moveCaretTo (oldCaretPos, false);
  644. return true;
  645. }
  646. int getSizeInUnits() override
  647. {
  648. int n = 16;
  649. for (auto* s : removedSections)
  650. n += s->getTotalLength();
  651. return n;
  652. }
  653. private:
  654. TextEditor& owner;
  655. const Range<int> range;
  656. const int oldCaretPos, newCaretPos;
  657. OwnedArray<UniformTextSection> removedSections;
  658. JUCE_DECLARE_NON_COPYABLE (RemoveAction)
  659. };
  660. //==============================================================================
  661. struct TextEditor::TextHolderComponent : public Component,
  662. public Timer,
  663. public Value::Listener
  664. {
  665. TextHolderComponent (TextEditor& ed) : owner (ed)
  666. {
  667. setWantsKeyboardFocus (false);
  668. setInterceptsMouseClicks (false, true);
  669. setMouseCursor (MouseCursor::ParentCursor);
  670. owner.getTextValue().addListener (this);
  671. }
  672. ~TextHolderComponent() override
  673. {
  674. owner.getTextValue().removeListener (this);
  675. }
  676. void paint (Graphics& g) override
  677. {
  678. owner.drawContent (g);
  679. }
  680. void restartTimer()
  681. {
  682. startTimer (350);
  683. }
  684. void timerCallback() override
  685. {
  686. owner.timerCallbackInt();
  687. }
  688. void valueChanged (Value&) override
  689. {
  690. owner.textWasChangedByValue();
  691. }
  692. TextEditor& owner;
  693. JUCE_DECLARE_NON_COPYABLE (TextHolderComponent)
  694. };
  695. //==============================================================================
  696. struct TextEditor::TextEditorViewport : public Viewport
  697. {
  698. TextEditorViewport (TextEditor& ed) : owner (ed) {}
  699. void visibleAreaChanged (const Rectangle<int>&) override
  700. {
  701. if (! reentrant) // it's rare, but possible to get into a feedback loop as the viewport's scrollbars
  702. // appear and disappear, causing the wrap width to change.
  703. {
  704. auto wordWrapWidth = owner.getWordWrapWidth();
  705. if (wordWrapWidth != lastWordWrapWidth)
  706. {
  707. lastWordWrapWidth = wordWrapWidth;
  708. ScopedValueSetter<bool> svs (reentrant, true);
  709. owner.checkLayout();
  710. }
  711. }
  712. }
  713. private:
  714. TextEditor& owner;
  715. int lastWordWrapWidth = 0;
  716. bool reentrant = false;
  717. JUCE_DECLARE_NON_COPYABLE (TextEditorViewport)
  718. };
  719. //==============================================================================
  720. namespace TextEditorDefs
  721. {
  722. const int textChangeMessageId = 0x10003001;
  723. const int returnKeyMessageId = 0x10003002;
  724. const int escapeKeyMessageId = 0x10003003;
  725. const int focusLossMessageId = 0x10003004;
  726. const int maxActionsPerTransaction = 100;
  727. static int getCharacterCategory (juce_wchar character) noexcept
  728. {
  729. return CharacterFunctions::isLetterOrDigit (character)
  730. ? 2 : (CharacterFunctions::isWhitespace (character) ? 0 : 1);
  731. }
  732. }
  733. //==============================================================================
  734. TextEditor::TextEditor (const String& name, juce_wchar passwordChar)
  735. : Component (name),
  736. passwordCharacter (passwordChar)
  737. {
  738. setMouseCursor (MouseCursor::IBeamCursor);
  739. viewport.reset (new TextEditorViewport (*this));
  740. addAndMakeVisible (viewport.get());
  741. viewport->setViewedComponent (textHolder = new TextHolderComponent (*this));
  742. viewport->setWantsKeyboardFocus (false);
  743. viewport->setScrollBarsShown (false, false);
  744. setWantsKeyboardFocus (true);
  745. recreateCaret();
  746. juce::Desktop::getInstance().addGlobalMouseListener (this);
  747. }
  748. TextEditor::~TextEditor()
  749. {
  750. juce::Desktop::getInstance().removeGlobalMouseListener (this);
  751. textValue.removeListener (textHolder);
  752. textValue.referTo (Value());
  753. viewport.reset();
  754. textHolder = nullptr;
  755. }
  756. //==============================================================================
  757. void TextEditor::newTransaction()
  758. {
  759. lastTransactionTime = Time::getApproximateMillisecondCounter();
  760. undoManager.beginNewTransaction();
  761. }
  762. bool TextEditor::undoOrRedo (const bool shouldUndo)
  763. {
  764. if (! isReadOnly())
  765. {
  766. newTransaction();
  767. if (shouldUndo ? undoManager.undo()
  768. : undoManager.redo())
  769. {
  770. repaint();
  771. textChanged();
  772. scrollToMakeSureCursorIsVisible();
  773. return true;
  774. }
  775. }
  776. return false;
  777. }
  778. bool TextEditor::undo() { return undoOrRedo (true); }
  779. bool TextEditor::redo() { return undoOrRedo (false); }
  780. //==============================================================================
  781. void TextEditor::setMultiLine (const bool shouldBeMultiLine,
  782. const bool shouldWordWrap)
  783. {
  784. if (multiline != shouldBeMultiLine
  785. || wordWrap != (shouldWordWrap && shouldBeMultiLine))
  786. {
  787. multiline = shouldBeMultiLine;
  788. wordWrap = shouldWordWrap && shouldBeMultiLine;
  789. checkLayout();
  790. viewport->setViewPosition (0, 0);
  791. resized();
  792. scrollToMakeSureCursorIsVisible();
  793. }
  794. }
  795. bool TextEditor::isMultiLine() const
  796. {
  797. return multiline;
  798. }
  799. void TextEditor::setScrollbarsShown (bool shown)
  800. {
  801. if (scrollbarVisible != shown)
  802. {
  803. scrollbarVisible = shown;
  804. checkLayout();
  805. }
  806. }
  807. void TextEditor::setReadOnly (bool shouldBeReadOnly)
  808. {
  809. if (readOnly != shouldBeReadOnly)
  810. {
  811. readOnly = shouldBeReadOnly;
  812. enablementChanged();
  813. invalidateAccessibilityHandler();
  814. if (auto* peer = getPeer())
  815. peer->refreshTextInputTarget();
  816. }
  817. }
  818. void TextEditor::setClicksOutsideDismissVirtualKeyboard (bool newValue)
  819. {
  820. clicksOutsideDismissVirtualKeyboard = newValue;
  821. }
  822. bool TextEditor::isReadOnly() const noexcept
  823. {
  824. return readOnly || ! isEnabled();
  825. }
  826. bool TextEditor::isTextInputActive() const
  827. {
  828. return ! isReadOnly() && (! clicksOutsideDismissVirtualKeyboard || mouseDownInEditor);
  829. }
  830. void TextEditor::setReturnKeyStartsNewLine (bool shouldStartNewLine)
  831. {
  832. returnKeyStartsNewLine = shouldStartNewLine;
  833. }
  834. void TextEditor::setTabKeyUsedAsCharacter (bool shouldTabKeyBeUsed)
  835. {
  836. tabKeyUsed = shouldTabKeyBeUsed;
  837. }
  838. void TextEditor::setPopupMenuEnabled (bool b)
  839. {
  840. popupMenuEnabled = b;
  841. }
  842. void TextEditor::setSelectAllWhenFocused (bool b)
  843. {
  844. selectAllTextWhenFocused = b;
  845. }
  846. void TextEditor::setJustification (Justification j)
  847. {
  848. if (justification != j)
  849. {
  850. justification = j;
  851. resized();
  852. repaint();
  853. }
  854. }
  855. //==============================================================================
  856. void TextEditor::setFont (const Font& newFont)
  857. {
  858. currentFont = newFont;
  859. scrollToMakeSureCursorIsVisible();
  860. }
  861. void TextEditor::applyFontToAllText (const Font& newFont, bool changeCurrentFont)
  862. {
  863. if (changeCurrentFont)
  864. currentFont = newFont;
  865. auto overallColour = findColour (textColourId);
  866. for (auto* uts : sections)
  867. {
  868. uts->setFont (newFont, passwordCharacter);
  869. uts->colour = overallColour;
  870. }
  871. coalesceSimilarSections();
  872. checkLayout();
  873. scrollToMakeSureCursorIsVisible();
  874. repaint();
  875. }
  876. void TextEditor::applyColourToAllText (const Colour& newColour, bool changeCurrentTextColour)
  877. {
  878. for (auto* uts : sections)
  879. uts->colour = newColour;
  880. if (changeCurrentTextColour)
  881. setColour (TextEditor::textColourId, newColour);
  882. else
  883. repaint();
  884. }
  885. void TextEditor::lookAndFeelChanged()
  886. {
  887. caret.reset();
  888. recreateCaret();
  889. repaint();
  890. }
  891. void TextEditor::parentHierarchyChanged()
  892. {
  893. lookAndFeelChanged();
  894. }
  895. void TextEditor::enablementChanged()
  896. {
  897. recreateCaret();
  898. repaint();
  899. }
  900. void TextEditor::setCaretVisible (bool shouldCaretBeVisible)
  901. {
  902. if (caretVisible != shouldCaretBeVisible)
  903. {
  904. caretVisible = shouldCaretBeVisible;
  905. recreateCaret();
  906. }
  907. }
  908. void TextEditor::recreateCaret()
  909. {
  910. if (isCaretVisible())
  911. {
  912. if (caret == nullptr)
  913. {
  914. caret.reset (getLookAndFeel().createCaretComponent (this));
  915. textHolder->addChildComponent (caret.get());
  916. updateCaretPosition();
  917. }
  918. }
  919. else
  920. {
  921. caret.reset();
  922. }
  923. }
  924. void TextEditor::updateCaretPosition()
  925. {
  926. if (caret != nullptr
  927. && getWidth() > 0 && getHeight() > 0)
  928. {
  929. Iterator i (*this);
  930. caret->setCaretPosition (getCaretRectangle().translated (leftIndent,
  931. topIndent + roundToInt (i.getYOffset())));
  932. if (auto* handler = getAccessibilityHandler())
  933. handler->notifyAccessibilityEvent (AccessibilityEvent::textSelectionChanged);
  934. }
  935. }
  936. TextEditor::LengthAndCharacterRestriction::LengthAndCharacterRestriction (int maxLen, const String& chars)
  937. : allowedCharacters (chars), maxLength (maxLen)
  938. {
  939. }
  940. String TextEditor::LengthAndCharacterRestriction::filterNewText (TextEditor& ed, const String& newInput)
  941. {
  942. String t (newInput);
  943. if (allowedCharacters.isNotEmpty())
  944. t = t.retainCharacters (allowedCharacters);
  945. if (maxLength > 0)
  946. t = t.substring (0, maxLength - (ed.getTotalNumChars() - ed.getHighlightedRegion().getLength()));
  947. return t;
  948. }
  949. void TextEditor::setInputFilter (InputFilter* newFilter, bool takeOwnership)
  950. {
  951. inputFilter.set (newFilter, takeOwnership);
  952. }
  953. void TextEditor::setInputRestrictions (int maxLen, const String& chars)
  954. {
  955. setInputFilter (new LengthAndCharacterRestriction (maxLen, chars), true);
  956. }
  957. void TextEditor::setTextToShowWhenEmpty (const String& text, Colour colourToUse)
  958. {
  959. textToShowWhenEmpty = text;
  960. colourForTextWhenEmpty = colourToUse;
  961. }
  962. void TextEditor::setPasswordCharacter (juce_wchar newPasswordCharacter)
  963. {
  964. if (passwordCharacter != newPasswordCharacter)
  965. {
  966. passwordCharacter = newPasswordCharacter;
  967. applyFontToAllText (currentFont);
  968. }
  969. }
  970. void TextEditor::setScrollBarThickness (int newThicknessPixels)
  971. {
  972. viewport->setScrollBarThickness (newThicknessPixels);
  973. }
  974. //==============================================================================
  975. void TextEditor::clear()
  976. {
  977. clearInternal (nullptr);
  978. checkLayout();
  979. undoManager.clearUndoHistory();
  980. }
  981. void TextEditor::setText (const String& newText, bool sendTextChangeMessage)
  982. {
  983. auto newLength = newText.length();
  984. if (newLength != getTotalNumChars() || getText() != newText)
  985. {
  986. if (! sendTextChangeMessage)
  987. textValue.removeListener (textHolder);
  988. textValue = newText;
  989. auto oldCursorPos = caretPosition;
  990. bool cursorWasAtEnd = oldCursorPos >= getTotalNumChars();
  991. clearInternal (nullptr);
  992. insert (newText, 0, currentFont, findColour (textColourId), nullptr, caretPosition);
  993. // if you're adding text with line-feeds to a single-line text editor, it
  994. // ain't gonna look right!
  995. jassert (multiline || ! newText.containsAnyOf ("\r\n"));
  996. if (cursorWasAtEnd && ! isMultiLine())
  997. oldCursorPos = getTotalNumChars();
  998. moveCaretTo (oldCursorPos, false);
  999. if (sendTextChangeMessage)
  1000. textChanged();
  1001. else
  1002. textValue.addListener (textHolder);
  1003. checkLayout();
  1004. scrollToMakeSureCursorIsVisible();
  1005. undoManager.clearUndoHistory();
  1006. repaint();
  1007. }
  1008. }
  1009. //==============================================================================
  1010. void TextEditor::updateValueFromText()
  1011. {
  1012. if (valueTextNeedsUpdating)
  1013. {
  1014. valueTextNeedsUpdating = false;
  1015. textValue = getText();
  1016. }
  1017. }
  1018. Value& TextEditor::getTextValue()
  1019. {
  1020. updateValueFromText();
  1021. return textValue;
  1022. }
  1023. void TextEditor::textWasChangedByValue()
  1024. {
  1025. if (textValue.getValueSource().getReferenceCount() > 1)
  1026. setText (textValue.getValue());
  1027. }
  1028. //==============================================================================
  1029. void TextEditor::textChanged()
  1030. {
  1031. checkLayout();
  1032. if (listeners.size() != 0 || onTextChange != nullptr)
  1033. postCommandMessage (TextEditorDefs::textChangeMessageId);
  1034. if (textValue.getValueSource().getReferenceCount() > 1)
  1035. {
  1036. valueTextNeedsUpdating = false;
  1037. textValue = getText();
  1038. }
  1039. if (auto* handler = getAccessibilityHandler())
  1040. handler->notifyAccessibilityEvent (AccessibilityEvent::textChanged);
  1041. }
  1042. void TextEditor::setSelection (Range<int> newSelection) noexcept
  1043. {
  1044. if (newSelection != selection)
  1045. {
  1046. selection = newSelection;
  1047. if (auto* handler = getAccessibilityHandler())
  1048. handler->notifyAccessibilityEvent (AccessibilityEvent::textSelectionChanged);
  1049. }
  1050. }
  1051. void TextEditor::returnPressed() { postCommandMessage (TextEditorDefs::returnKeyMessageId); }
  1052. void TextEditor::escapePressed() { postCommandMessage (TextEditorDefs::escapeKeyMessageId); }
  1053. void TextEditor::addListener (Listener* l) { listeners.add (l); }
  1054. void TextEditor::removeListener (Listener* l) { listeners.remove (l); }
  1055. //==============================================================================
  1056. void TextEditor::timerCallbackInt()
  1057. {
  1058. checkFocus();
  1059. auto now = Time::getApproximateMillisecondCounter();
  1060. if (now > lastTransactionTime + 200)
  1061. newTransaction();
  1062. }
  1063. void TextEditor::checkFocus()
  1064. {
  1065. if (! wasFocused && hasKeyboardFocus (false) && ! isCurrentlyBlockedByAnotherModalComponent())
  1066. wasFocused = true;
  1067. }
  1068. void TextEditor::repaintText (Range<int> range)
  1069. {
  1070. if (! range.isEmpty())
  1071. {
  1072. if (range.getEnd() >= getTotalNumChars())
  1073. {
  1074. textHolder->repaint();
  1075. return;
  1076. }
  1077. Iterator i (*this);
  1078. Point<float> anchor;
  1079. auto lh = currentFont.getHeight();
  1080. i.getCharPosition (range.getStart(), anchor, lh);
  1081. auto y1 = std::trunc (anchor.y);
  1082. int y2 = 0;
  1083. if (range.getEnd() >= getTotalNumChars())
  1084. {
  1085. y2 = textHolder->getHeight();
  1086. }
  1087. else
  1088. {
  1089. i.getCharPosition (range.getEnd(), anchor, lh);
  1090. y2 = (int) (anchor.y + lh * 2.0f);
  1091. }
  1092. auto offset = i.getYOffset();
  1093. textHolder->repaint (0, roundToInt (y1 + offset), textHolder->getWidth(), roundToInt ((float) y2 - y1 + offset));
  1094. }
  1095. }
  1096. //==============================================================================
  1097. void TextEditor::moveCaret (int newCaretPos)
  1098. {
  1099. if (newCaretPos < 0)
  1100. newCaretPos = 0;
  1101. else
  1102. newCaretPos = jmin (newCaretPos, getTotalNumChars());
  1103. if (newCaretPos != getCaretPosition())
  1104. {
  1105. caretPosition = newCaretPos;
  1106. if (hasKeyboardFocus (false))
  1107. textHolder->restartTimer();
  1108. scrollToMakeSureCursorIsVisible();
  1109. updateCaretPosition();
  1110. if (auto* handler = getAccessibilityHandler())
  1111. handler->notifyAccessibilityEvent (AccessibilityEvent::textChanged);
  1112. }
  1113. }
  1114. int TextEditor::getCaretPosition() const
  1115. {
  1116. return caretPosition;
  1117. }
  1118. void TextEditor::setCaretPosition (const int newIndex)
  1119. {
  1120. moveCaretTo (newIndex, false);
  1121. }
  1122. void TextEditor::moveCaretToEnd()
  1123. {
  1124. setCaretPosition (std::numeric_limits<int>::max());
  1125. }
  1126. void TextEditor::scrollEditorToPositionCaret (const int desiredCaretX,
  1127. const int desiredCaretY)
  1128. {
  1129. updateCaretPosition();
  1130. auto caretRect = getCaretRectangle().translated (leftIndent, topIndent);
  1131. auto vx = caretRect.getX() - desiredCaretX;
  1132. auto vy = caretRect.getY() - desiredCaretY;
  1133. if (desiredCaretX < jmax (1, proportionOfWidth (0.05f)))
  1134. vx += desiredCaretX - proportionOfWidth (0.2f);
  1135. else if (desiredCaretX > jmax (0, viewport->getMaximumVisibleWidth() - (wordWrap ? 2 : 10)))
  1136. vx += desiredCaretX + (isMultiLine() ? proportionOfWidth (0.2f) : 10) - viewport->getMaximumVisibleWidth();
  1137. vx = jlimit (0, jmax (0, textHolder->getWidth() + 8 - viewport->getMaximumVisibleWidth()), vx);
  1138. if (! isMultiLine())
  1139. {
  1140. vy = viewport->getViewPositionY();
  1141. }
  1142. else
  1143. {
  1144. vy = jlimit (0, jmax (0, textHolder->getHeight() - viewport->getMaximumVisibleHeight()), vy);
  1145. if (desiredCaretY < 0)
  1146. vy = jmax (0, desiredCaretY + vy);
  1147. else if (desiredCaretY > jmax (0, viewport->getMaximumVisibleHeight() - caretRect.getHeight()))
  1148. vy += desiredCaretY + 2 + caretRect.getHeight() - viewport->getMaximumVisibleHeight();
  1149. }
  1150. viewport->setViewPosition (vx, vy);
  1151. }
  1152. Rectangle<int> TextEditor::getCaretRectangle()
  1153. {
  1154. return getCaretRectangleFloat().getSmallestIntegerContainer();
  1155. }
  1156. Rectangle<float> TextEditor::getCaretRectangleFloat() const
  1157. {
  1158. Point<float> anchor;
  1159. auto cursorHeight = currentFont.getHeight(); // (in case the text is empty and the call below doesn't set this value)
  1160. getCharPosition (caretPosition, anchor, cursorHeight);
  1161. return { anchor.x, anchor.y, 2.0f, cursorHeight };
  1162. }
  1163. Point<int> TextEditor::getTextOffset() const noexcept
  1164. {
  1165. Iterator i (*this);
  1166. auto yOffset = i.getYOffset();
  1167. return { getLeftIndent() + borderSize.getLeft() - viewport->getViewPositionX(),
  1168. roundToInt ((float) getTopIndent() + (float) borderSize.getTop() + yOffset) - viewport->getViewPositionY() };
  1169. }
  1170. RectangleList<int> TextEditor::getTextBounds (Range<int> textRange)
  1171. {
  1172. RectangleList<int> boundingBox;
  1173. Iterator i (*this);
  1174. while (i.next())
  1175. {
  1176. if (textRange.intersects ({ i.indexInText,
  1177. i.indexInText + i.atom->numChars }))
  1178. {
  1179. boundingBox.add (i.getTextBounds (textRange));
  1180. }
  1181. }
  1182. boundingBox.offsetAll (getTextOffset());
  1183. return boundingBox;
  1184. }
  1185. //==============================================================================
  1186. // Extra space for the cursor at the right-hand-edge
  1187. constexpr int rightEdgeSpace = 2;
  1188. int TextEditor::getWordWrapWidth() const
  1189. {
  1190. return wordWrap ? getMaximumTextWidth()
  1191. : std::numeric_limits<int>::max();
  1192. }
  1193. int TextEditor::getMaximumTextWidth() const
  1194. {
  1195. return jmax (1, viewport->getMaximumVisibleWidth() - leftIndent - rightEdgeSpace);
  1196. }
  1197. int TextEditor::getMaximumTextHeight() const
  1198. {
  1199. return jmax (1, viewport->getMaximumVisibleHeight() - topIndent);
  1200. }
  1201. void TextEditor::checkLayout()
  1202. {
  1203. if (getWordWrapWidth() > 0)
  1204. {
  1205. const auto textBottom = Iterator (*this).getTotalTextHeight() + topIndent;
  1206. const auto textRight = jmax (viewport->getMaximumVisibleWidth(),
  1207. Iterator (*this).getTextRight() + leftIndent + rightEdgeSpace);
  1208. textHolder->setSize (textRight, textBottom);
  1209. viewport->setScrollBarsShown (scrollbarVisible && multiline && textBottom > viewport->getMaximumVisibleHeight(),
  1210. scrollbarVisible && multiline && ! wordWrap && textRight > viewport->getMaximumVisibleWidth());
  1211. }
  1212. }
  1213. int TextEditor::getTextWidth() const { return textHolder->getWidth(); }
  1214. int TextEditor::getTextHeight() const { return textHolder->getHeight(); }
  1215. void TextEditor::setIndents (int newLeftIndent, int newTopIndent)
  1216. {
  1217. if (leftIndent != newLeftIndent || topIndent != newTopIndent)
  1218. {
  1219. leftIndent = newLeftIndent;
  1220. topIndent = newTopIndent;
  1221. resized();
  1222. repaint();
  1223. }
  1224. }
  1225. void TextEditor::setBorder (BorderSize<int> border)
  1226. {
  1227. borderSize = border;
  1228. resized();
  1229. }
  1230. BorderSize<int> TextEditor::getBorder() const
  1231. {
  1232. return borderSize;
  1233. }
  1234. void TextEditor::setScrollToShowCursor (const bool shouldScrollToShowCursor)
  1235. {
  1236. keepCaretOnScreen = shouldScrollToShowCursor;
  1237. }
  1238. void TextEditor::scrollToMakeSureCursorIsVisible()
  1239. {
  1240. updateCaretPosition();
  1241. if (keepCaretOnScreen)
  1242. {
  1243. auto viewPos = viewport->getViewPosition();
  1244. auto caretRect = getCaretRectangle().translated (leftIndent, topIndent);
  1245. auto relativeCursor = caretRect.getPosition() - viewPos;
  1246. if (relativeCursor.x < jmax (1, proportionOfWidth (0.05f)))
  1247. {
  1248. viewPos.x += relativeCursor.x - proportionOfWidth (0.2f);
  1249. }
  1250. else if (relativeCursor.x > jmax (0, viewport->getMaximumVisibleWidth() - (wordWrap ? 2 : 10)))
  1251. {
  1252. viewPos.x += relativeCursor.x + (isMultiLine() ? proportionOfWidth (0.2f) : 10) - viewport->getMaximumVisibleWidth();
  1253. }
  1254. viewPos.x = jlimit (0, jmax (0, textHolder->getWidth() + 8 - viewport->getMaximumVisibleWidth()), viewPos.x);
  1255. if (! isMultiLine())
  1256. {
  1257. viewPos.y = (getHeight() - textHolder->getHeight() - topIndent) / -2;
  1258. }
  1259. else if (relativeCursor.y < 0)
  1260. {
  1261. viewPos.y = jmax (0, relativeCursor.y + viewPos.y);
  1262. }
  1263. else if (relativeCursor.y > jmax (0, viewport->getMaximumVisibleHeight() - caretRect.getHeight()))
  1264. {
  1265. viewPos.y += relativeCursor.y + 2 + caretRect.getHeight() - viewport->getMaximumVisibleHeight();
  1266. }
  1267. viewport->setViewPosition (viewPos);
  1268. }
  1269. }
  1270. void TextEditor::moveCaretTo (const int newPosition, const bool isSelecting)
  1271. {
  1272. if (isSelecting)
  1273. {
  1274. moveCaret (newPosition);
  1275. auto oldSelection = selection;
  1276. if (dragType == notDragging)
  1277. {
  1278. if (std::abs (getCaretPosition() - selection.getStart()) < std::abs (getCaretPosition() - selection.getEnd()))
  1279. dragType = draggingSelectionStart;
  1280. else
  1281. dragType = draggingSelectionEnd;
  1282. }
  1283. if (dragType == draggingSelectionStart)
  1284. {
  1285. if (getCaretPosition() >= selection.getEnd())
  1286. dragType = draggingSelectionEnd;
  1287. setSelection (Range<int>::between (getCaretPosition(), selection.getEnd()));
  1288. }
  1289. else
  1290. {
  1291. if (getCaretPosition() < selection.getStart())
  1292. dragType = draggingSelectionStart;
  1293. setSelection (Range<int>::between (getCaretPosition(), selection.getStart()));
  1294. }
  1295. repaintText (selection.getUnionWith (oldSelection));
  1296. }
  1297. else
  1298. {
  1299. dragType = notDragging;
  1300. repaintText (selection);
  1301. moveCaret (newPosition);
  1302. setSelection (Range<int>::emptyRange (getCaretPosition()));
  1303. }
  1304. }
  1305. int TextEditor::getTextIndexAt (const int x, const int y) const
  1306. {
  1307. const auto offset = getTextOffset();
  1308. return indexAtPosition ((float) (x - offset.x),
  1309. (float) (y - offset.y));
  1310. }
  1311. void TextEditor::insertTextAtCaret (const String& t)
  1312. {
  1313. String newText (inputFilter != nullptr ? inputFilter->filterNewText (*this, t) : t);
  1314. if (isMultiLine())
  1315. newText = newText.replace ("\r\n", "\n");
  1316. else
  1317. newText = newText.replaceCharacters ("\r\n", " ");
  1318. const int insertIndex = selection.getStart();
  1319. const int newCaretPos = insertIndex + newText.length();
  1320. remove (selection, getUndoManager(),
  1321. newText.isNotEmpty() ? newCaretPos - 1 : newCaretPos);
  1322. insert (newText, insertIndex, currentFont, findColour (textColourId),
  1323. getUndoManager(), newCaretPos);
  1324. textChanged();
  1325. }
  1326. void TextEditor::setHighlightedRegion (const Range<int>& newSelection)
  1327. {
  1328. moveCaretTo (newSelection.getStart(), false);
  1329. moveCaretTo (newSelection.getEnd(), true);
  1330. }
  1331. //==============================================================================
  1332. void TextEditor::copy()
  1333. {
  1334. if (passwordCharacter == 0)
  1335. {
  1336. auto selectedText = getHighlightedText();
  1337. if (selectedText.isNotEmpty())
  1338. SystemClipboard::copyTextToClipboard (selectedText);
  1339. }
  1340. }
  1341. void TextEditor::paste()
  1342. {
  1343. if (! isReadOnly())
  1344. {
  1345. auto clip = SystemClipboard::getTextFromClipboard();
  1346. if (clip.isNotEmpty())
  1347. insertTextAtCaret (clip);
  1348. }
  1349. }
  1350. void TextEditor::cut()
  1351. {
  1352. if (! isReadOnly())
  1353. {
  1354. moveCaret (selection.getEnd());
  1355. insertTextAtCaret (String());
  1356. }
  1357. }
  1358. //==============================================================================
  1359. void TextEditor::drawContent (Graphics& g)
  1360. {
  1361. if (getWordWrapWidth() > 0)
  1362. {
  1363. g.setOrigin (leftIndent, topIndent);
  1364. auto clip = g.getClipBounds();
  1365. auto yOffset = Iterator (*this).getYOffset();
  1366. AffineTransform transform;
  1367. if (yOffset > 0)
  1368. {
  1369. transform = AffineTransform::translation (0.0f, yOffset);
  1370. clip.setY (roundToInt ((float) clip.getY() - yOffset));
  1371. }
  1372. Iterator i (*this);
  1373. Colour selectedTextColour;
  1374. if (! selection.isEmpty())
  1375. {
  1376. selectedTextColour = findColour (highlightedTextColourId);
  1377. g.setColour (findColour (highlightColourId).withMultipliedAlpha (hasKeyboardFocus (true) ? 1.0f : 0.5f));
  1378. auto boundingBox = getTextBounds (selection);
  1379. boundingBox.offsetAll (-getTextOffset());
  1380. g.fillPath (boundingBox.toPath(), transform);
  1381. }
  1382. const UniformTextSection* lastSection = nullptr;
  1383. while (i.next() && i.lineY < (float) clip.getBottom())
  1384. {
  1385. if (i.lineY + i.lineHeight >= (float) clip.getY())
  1386. {
  1387. if (selection.intersects ({ i.indexInText, i.indexInText + i.atom->numChars }))
  1388. {
  1389. i.drawSelectedText (g, selection, selectedTextColour, transform);
  1390. lastSection = nullptr;
  1391. }
  1392. else
  1393. {
  1394. i.draw (g, lastSection, transform);
  1395. }
  1396. }
  1397. }
  1398. for (auto& underlinedSection : underlinedSections)
  1399. {
  1400. Iterator i2 (*this);
  1401. while (i2.next() && i2.lineY < (float) clip.getBottom())
  1402. {
  1403. if (i2.lineY + i2.lineHeight >= (float) clip.getY()
  1404. && underlinedSection.intersects ({ i2.indexInText, i2.indexInText + i2.atom->numChars }))
  1405. {
  1406. i2.drawUnderline (g, underlinedSection, findColour (textColourId), transform);
  1407. }
  1408. }
  1409. }
  1410. }
  1411. }
  1412. void TextEditor::paint (Graphics& g)
  1413. {
  1414. getLookAndFeel().fillTextEditorBackground (g, getWidth(), getHeight(), *this);
  1415. }
  1416. void TextEditor::paintOverChildren (Graphics& g)
  1417. {
  1418. if (textToShowWhenEmpty.isNotEmpty()
  1419. && (! hasKeyboardFocus (false))
  1420. && getTotalNumChars() == 0)
  1421. {
  1422. g.setColour (colourForTextWhenEmpty);
  1423. g.setFont (getFont());
  1424. Rectangle<int> textBounds (leftIndent,
  1425. topIndent,
  1426. viewport->getWidth() - leftIndent,
  1427. getHeight() - topIndent);
  1428. if (! textBounds.isEmpty())
  1429. g.drawText (textToShowWhenEmpty, textBounds, justification, true);
  1430. }
  1431. getLookAndFeel().drawTextEditorOutline (g, getWidth(), getHeight(), *this);
  1432. }
  1433. //==============================================================================
  1434. void TextEditor::addPopupMenuItems (PopupMenu& m, const MouseEvent*)
  1435. {
  1436. const bool writable = ! isReadOnly();
  1437. if (passwordCharacter == 0)
  1438. {
  1439. m.addItem (StandardApplicationCommandIDs::cut, TRANS("Cut"), writable);
  1440. m.addItem (StandardApplicationCommandIDs::copy, TRANS("Copy"), ! selection.isEmpty());
  1441. }
  1442. m.addItem (StandardApplicationCommandIDs::paste, TRANS("Paste"), writable);
  1443. m.addItem (StandardApplicationCommandIDs::del, TRANS("Delete"), writable);
  1444. m.addSeparator();
  1445. m.addItem (StandardApplicationCommandIDs::selectAll, TRANS("Select All"));
  1446. m.addSeparator();
  1447. if (getUndoManager() != nullptr)
  1448. {
  1449. m.addItem (StandardApplicationCommandIDs::undo, TRANS("Undo"), undoManager.canUndo());
  1450. m.addItem (StandardApplicationCommandIDs::redo, TRANS("Redo"), undoManager.canRedo());
  1451. }
  1452. }
  1453. void TextEditor::performPopupMenuAction (const int menuItemID)
  1454. {
  1455. switch (menuItemID)
  1456. {
  1457. case StandardApplicationCommandIDs::cut: cutToClipboard(); break;
  1458. case StandardApplicationCommandIDs::copy: copyToClipboard(); break;
  1459. case StandardApplicationCommandIDs::paste: pasteFromClipboard(); break;
  1460. case StandardApplicationCommandIDs::del: cut(); break;
  1461. case StandardApplicationCommandIDs::selectAll: selectAll(); break;
  1462. case StandardApplicationCommandIDs::undo: undo(); break;
  1463. case StandardApplicationCommandIDs::redo: redo(); break;
  1464. default: break;
  1465. }
  1466. }
  1467. //==============================================================================
  1468. void TextEditor::mouseDown (const MouseEvent& e)
  1469. {
  1470. mouseDownInEditor = e.originalComponent == this;
  1471. if (! mouseDownInEditor)
  1472. return;
  1473. beginDragAutoRepeat (100);
  1474. newTransaction();
  1475. if (wasFocused || ! selectAllTextWhenFocused)
  1476. {
  1477. if (! (popupMenuEnabled && e.mods.isPopupMenu()))
  1478. {
  1479. moveCaretTo (getTextIndexAt (e.x, e.y),
  1480. e.mods.isShiftDown());
  1481. if (auto* peer = getPeer())
  1482. peer->closeInputMethodContext();
  1483. }
  1484. else
  1485. {
  1486. PopupMenu m;
  1487. m.setLookAndFeel (&getLookAndFeel());
  1488. addPopupMenuItems (m, &e);
  1489. menuActive = true;
  1490. m.showMenuAsync (PopupMenu::Options(),
  1491. [safeThis = SafePointer<TextEditor> { this }] (int menuResult)
  1492. {
  1493. if (auto* editor = safeThis.getComponent())
  1494. {
  1495. editor->menuActive = false;
  1496. if (menuResult != 0)
  1497. editor->performPopupMenuAction (menuResult);
  1498. }
  1499. });
  1500. }
  1501. }
  1502. }
  1503. void TextEditor::mouseDrag (const MouseEvent& e)
  1504. {
  1505. if (! mouseDownInEditor)
  1506. return;
  1507. if (wasFocused || ! selectAllTextWhenFocused)
  1508. if (! (popupMenuEnabled && e.mods.isPopupMenu()))
  1509. moveCaretTo (getTextIndexAt (e.x, e.y), true);
  1510. }
  1511. void TextEditor::mouseUp (const MouseEvent& e)
  1512. {
  1513. if (! mouseDownInEditor)
  1514. return;
  1515. newTransaction();
  1516. textHolder->restartTimer();
  1517. if (wasFocused || ! selectAllTextWhenFocused)
  1518. if (e.mouseWasClicked() && ! (popupMenuEnabled && e.mods.isPopupMenu()))
  1519. moveCaret (getTextIndexAt (e.x, e.y));
  1520. wasFocused = true;
  1521. }
  1522. void TextEditor::mouseDoubleClick (const MouseEvent& e)
  1523. {
  1524. if (! mouseDownInEditor)
  1525. return;
  1526. int tokenEnd = getTextIndexAt (e.x, e.y);
  1527. int tokenStart = 0;
  1528. if (e.getNumberOfClicks() > 3)
  1529. {
  1530. tokenEnd = getTotalNumChars();
  1531. }
  1532. else
  1533. {
  1534. auto t = getText();
  1535. auto totalLength = getTotalNumChars();
  1536. while (tokenEnd < totalLength)
  1537. {
  1538. auto c = t[tokenEnd];
  1539. // (note the slight bodge here - it's because iswalnum only checks for alphabetic chars in the current locale)
  1540. if (CharacterFunctions::isLetterOrDigit (c) || c > 128)
  1541. ++tokenEnd;
  1542. else
  1543. break;
  1544. }
  1545. tokenStart = tokenEnd;
  1546. while (tokenStart > 0)
  1547. {
  1548. auto c = t[tokenStart - 1];
  1549. // (note the slight bodge here - it's because iswalnum only checks for alphabetic chars in the current locale)
  1550. if (CharacterFunctions::isLetterOrDigit (c) || c > 128)
  1551. --tokenStart;
  1552. else
  1553. break;
  1554. }
  1555. if (e.getNumberOfClicks() > 2)
  1556. {
  1557. while (tokenEnd < totalLength)
  1558. {
  1559. auto c = t[tokenEnd];
  1560. if (c != '\r' && c != '\n')
  1561. ++tokenEnd;
  1562. else
  1563. break;
  1564. }
  1565. while (tokenStart > 0)
  1566. {
  1567. auto c = t[tokenStart - 1];
  1568. if (c != '\r' && c != '\n')
  1569. --tokenStart;
  1570. else
  1571. break;
  1572. }
  1573. }
  1574. }
  1575. moveCaretTo (tokenEnd, false);
  1576. moveCaretTo (tokenStart, true);
  1577. }
  1578. void TextEditor::mouseWheelMove (const MouseEvent& e, const MouseWheelDetails& wheel)
  1579. {
  1580. if (! mouseDownInEditor)
  1581. return;
  1582. if (! viewport->useMouseWheelMoveIfNeeded (e, wheel))
  1583. Component::mouseWheelMove (e, wheel);
  1584. }
  1585. //==============================================================================
  1586. bool TextEditor::moveCaretWithTransaction (const int newPos, const bool selecting)
  1587. {
  1588. newTransaction();
  1589. moveCaretTo (newPos, selecting);
  1590. if (auto* peer = getPeer())
  1591. peer->closeInputMethodContext();
  1592. return true;
  1593. }
  1594. bool TextEditor::moveCaretLeft (bool moveInWholeWordSteps, bool selecting)
  1595. {
  1596. auto pos = getCaretPosition();
  1597. if (moveInWholeWordSteps)
  1598. pos = findWordBreakBefore (pos);
  1599. else
  1600. --pos;
  1601. return moveCaretWithTransaction (pos, selecting);
  1602. }
  1603. bool TextEditor::moveCaretRight (bool moveInWholeWordSteps, bool selecting)
  1604. {
  1605. auto pos = getCaretPosition();
  1606. if (moveInWholeWordSteps)
  1607. pos = findWordBreakAfter (pos);
  1608. else
  1609. ++pos;
  1610. return moveCaretWithTransaction (pos, selecting);
  1611. }
  1612. bool TextEditor::moveCaretUp (bool selecting)
  1613. {
  1614. if (! isMultiLine())
  1615. return moveCaretToStartOfLine (selecting);
  1616. auto caretPos = getCaretRectangleFloat();
  1617. return moveCaretWithTransaction (indexAtPosition (caretPos.getX(), caretPos.getY() - 1.0f), selecting);
  1618. }
  1619. bool TextEditor::moveCaretDown (bool selecting)
  1620. {
  1621. if (! isMultiLine())
  1622. return moveCaretToEndOfLine (selecting);
  1623. auto caretPos = getCaretRectangleFloat();
  1624. return moveCaretWithTransaction (indexAtPosition (caretPos.getX(), caretPos.getBottom() + 1.0f), selecting);
  1625. }
  1626. bool TextEditor::pageUp (bool selecting)
  1627. {
  1628. if (! isMultiLine())
  1629. return moveCaretToStartOfLine (selecting);
  1630. auto caretPos = getCaretRectangleFloat();
  1631. return moveCaretWithTransaction (indexAtPosition (caretPos.getX(), caretPos.getY() - (float) viewport->getViewHeight()), selecting);
  1632. }
  1633. bool TextEditor::pageDown (bool selecting)
  1634. {
  1635. if (! isMultiLine())
  1636. return moveCaretToEndOfLine (selecting);
  1637. auto caretPos = getCaretRectangleFloat();
  1638. return moveCaretWithTransaction (indexAtPosition (caretPos.getX(), caretPos.getBottom() + (float) viewport->getViewHeight()), selecting);
  1639. }
  1640. void TextEditor::scrollByLines (int deltaLines)
  1641. {
  1642. viewport->getVerticalScrollBar().moveScrollbarInSteps (deltaLines);
  1643. }
  1644. bool TextEditor::scrollDown()
  1645. {
  1646. scrollByLines (-1);
  1647. return true;
  1648. }
  1649. bool TextEditor::scrollUp()
  1650. {
  1651. scrollByLines (1);
  1652. return true;
  1653. }
  1654. bool TextEditor::moveCaretToTop (bool selecting)
  1655. {
  1656. return moveCaretWithTransaction (0, selecting);
  1657. }
  1658. bool TextEditor::moveCaretToStartOfLine (bool selecting)
  1659. {
  1660. auto caretPos = getCaretRectangleFloat();
  1661. return moveCaretWithTransaction (indexAtPosition (0.0f, caretPos.getY()), selecting);
  1662. }
  1663. bool TextEditor::moveCaretToEnd (bool selecting)
  1664. {
  1665. return moveCaretWithTransaction (getTotalNumChars(), selecting);
  1666. }
  1667. bool TextEditor::moveCaretToEndOfLine (bool selecting)
  1668. {
  1669. auto caretPos = getCaretRectangleFloat();
  1670. return moveCaretWithTransaction (indexAtPosition ((float) textHolder->getWidth(), caretPos.getY()), selecting);
  1671. }
  1672. bool TextEditor::deleteBackwards (bool moveInWholeWordSteps)
  1673. {
  1674. if (moveInWholeWordSteps)
  1675. moveCaretTo (findWordBreakBefore (getCaretPosition()), true);
  1676. else if (selection.isEmpty() && selection.getStart() > 0)
  1677. setSelection ({ selection.getEnd() - 1, selection.getEnd() });
  1678. cut();
  1679. return true;
  1680. }
  1681. bool TextEditor::deleteForwards (bool /*moveInWholeWordSteps*/)
  1682. {
  1683. if (selection.isEmpty() && selection.getStart() < getTotalNumChars())
  1684. setSelection ({ selection.getStart(), selection.getStart() + 1 });
  1685. cut();
  1686. return true;
  1687. }
  1688. bool TextEditor::copyToClipboard()
  1689. {
  1690. newTransaction();
  1691. copy();
  1692. return true;
  1693. }
  1694. bool TextEditor::cutToClipboard()
  1695. {
  1696. newTransaction();
  1697. copy();
  1698. cut();
  1699. return true;
  1700. }
  1701. bool TextEditor::pasteFromClipboard()
  1702. {
  1703. newTransaction();
  1704. paste();
  1705. return true;
  1706. }
  1707. bool TextEditor::selectAll()
  1708. {
  1709. newTransaction();
  1710. moveCaretTo (getTotalNumChars(), false);
  1711. moveCaretTo (0, true);
  1712. return true;
  1713. }
  1714. //==============================================================================
  1715. void TextEditor::setEscapeAndReturnKeysConsumed (bool shouldBeConsumed) noexcept
  1716. {
  1717. consumeEscAndReturnKeys = shouldBeConsumed;
  1718. }
  1719. bool TextEditor::keyPressed (const KeyPress& key)
  1720. {
  1721. if (isReadOnly() && key != KeyPress ('c', ModifierKeys::commandModifier, 0)
  1722. && key != KeyPress ('a', ModifierKeys::commandModifier, 0))
  1723. return false;
  1724. if (! TextEditorKeyMapper<TextEditor>::invokeKeyFunction (*this, key))
  1725. {
  1726. if (key == KeyPress::returnKey)
  1727. {
  1728. newTransaction();
  1729. if (returnKeyStartsNewLine)
  1730. {
  1731. insertTextAtCaret ("\n");
  1732. }
  1733. else
  1734. {
  1735. returnPressed();
  1736. return consumeEscAndReturnKeys;
  1737. }
  1738. }
  1739. else if (key.isKeyCode (KeyPress::escapeKey))
  1740. {
  1741. newTransaction();
  1742. moveCaretTo (getCaretPosition(), false);
  1743. escapePressed();
  1744. return consumeEscAndReturnKeys;
  1745. }
  1746. else if (key.getTextCharacter() >= ' '
  1747. || (tabKeyUsed && (key.getTextCharacter() == '\t')))
  1748. {
  1749. insertTextAtCaret (String::charToString (key.getTextCharacter()));
  1750. lastTransactionTime = Time::getApproximateMillisecondCounter();
  1751. }
  1752. else
  1753. {
  1754. return false;
  1755. }
  1756. }
  1757. return true;
  1758. }
  1759. bool TextEditor::keyStateChanged (const bool isKeyDown)
  1760. {
  1761. if (! isKeyDown)
  1762. return false;
  1763. #if JUCE_WINDOWS
  1764. if (KeyPress (KeyPress::F4Key, ModifierKeys::altModifier, 0).isCurrentlyDown())
  1765. return false; // We need to explicitly allow alt-F4 to pass through on Windows
  1766. #endif
  1767. if ((! consumeEscAndReturnKeys)
  1768. && (KeyPress (KeyPress::escapeKey).isCurrentlyDown()
  1769. || KeyPress (KeyPress::returnKey).isCurrentlyDown()))
  1770. return false;
  1771. // (overridden to avoid forwarding key events to the parent)
  1772. return ! ModifierKeys::currentModifiers.isCommandDown();
  1773. }
  1774. //==============================================================================
  1775. void TextEditor::focusGained (FocusChangeType cause)
  1776. {
  1777. newTransaction();
  1778. if (selectAllTextWhenFocused)
  1779. {
  1780. moveCaretTo (0, false);
  1781. moveCaretTo (getTotalNumChars(), true);
  1782. }
  1783. checkFocus();
  1784. if (cause == FocusChangeType::focusChangedByMouseClick && selectAllTextWhenFocused)
  1785. wasFocused = false;
  1786. repaint();
  1787. updateCaretPosition();
  1788. }
  1789. void TextEditor::focusLost (FocusChangeType)
  1790. {
  1791. newTransaction();
  1792. wasFocused = false;
  1793. textHolder->stopTimer();
  1794. underlinedSections.clear();
  1795. updateCaretPosition();
  1796. postCommandMessage (TextEditorDefs::focusLossMessageId);
  1797. repaint();
  1798. }
  1799. //==============================================================================
  1800. void TextEditor::resized()
  1801. {
  1802. viewport->setBoundsInset (borderSize);
  1803. viewport->setSingleStepSizes (16, roundToInt (currentFont.getHeight()));
  1804. checkLayout();
  1805. if (isMultiLine())
  1806. updateCaretPosition();
  1807. else
  1808. scrollToMakeSureCursorIsVisible();
  1809. }
  1810. void TextEditor::handleCommandMessage (const int commandId)
  1811. {
  1812. Component::BailOutChecker checker (this);
  1813. switch (commandId)
  1814. {
  1815. case TextEditorDefs::textChangeMessageId:
  1816. listeners.callChecked (checker, [this] (Listener& l) { l.textEditorTextChanged (*this); });
  1817. if (! checker.shouldBailOut() && onTextChange != nullptr)
  1818. onTextChange();
  1819. break;
  1820. case TextEditorDefs::returnKeyMessageId:
  1821. listeners.callChecked (checker, [this] (Listener& l) { l.textEditorReturnKeyPressed (*this); });
  1822. if (! checker.shouldBailOut() && onReturnKey != nullptr)
  1823. onReturnKey();
  1824. break;
  1825. case TextEditorDefs::escapeKeyMessageId:
  1826. listeners.callChecked (checker, [this] (Listener& l) { l.textEditorEscapeKeyPressed (*this); });
  1827. if (! checker.shouldBailOut() && onEscapeKey != nullptr)
  1828. onEscapeKey();
  1829. break;
  1830. case TextEditorDefs::focusLossMessageId:
  1831. updateValueFromText();
  1832. listeners.callChecked (checker, [this] (Listener& l) { l.textEditorFocusLost (*this); });
  1833. if (! checker.shouldBailOut() && onFocusLost != nullptr)
  1834. onFocusLost();
  1835. break;
  1836. default:
  1837. jassertfalse;
  1838. break;
  1839. }
  1840. }
  1841. void TextEditor::setTemporaryUnderlining (const Array<Range<int>>& newUnderlinedSections)
  1842. {
  1843. underlinedSections = newUnderlinedSections;
  1844. repaint();
  1845. }
  1846. //==============================================================================
  1847. UndoManager* TextEditor::getUndoManager() noexcept
  1848. {
  1849. return readOnly ? nullptr : &undoManager;
  1850. }
  1851. void TextEditor::clearInternal (UndoManager* const um)
  1852. {
  1853. remove ({ 0, getTotalNumChars() }, um, caretPosition);
  1854. }
  1855. void TextEditor::insert (const String& text, int insertIndex, const Font& font,
  1856. Colour colour, UndoManager* um, int caretPositionToMoveTo)
  1857. {
  1858. if (text.isNotEmpty())
  1859. {
  1860. if (um != nullptr)
  1861. {
  1862. if (um->getNumActionsInCurrentTransaction() > TextEditorDefs::maxActionsPerTransaction)
  1863. newTransaction();
  1864. um->perform (new InsertAction (*this, text, insertIndex, font, colour,
  1865. caretPosition, caretPositionToMoveTo));
  1866. }
  1867. else
  1868. {
  1869. repaintText ({ insertIndex, getTotalNumChars() }); // must do this before and after changing the data, in case
  1870. // a line gets moved due to word wrap
  1871. int index = 0;
  1872. int nextIndex = 0;
  1873. for (int i = 0; i < sections.size(); ++i)
  1874. {
  1875. nextIndex = index + sections.getUnchecked (i)->getTotalLength();
  1876. if (insertIndex == index)
  1877. {
  1878. sections.insert (i, new UniformTextSection (text, font, colour, passwordCharacter));
  1879. break;
  1880. }
  1881. if (insertIndex > index && insertIndex < nextIndex)
  1882. {
  1883. splitSection (i, insertIndex - index);
  1884. sections.insert (i + 1, new UniformTextSection (text, font, colour, passwordCharacter));
  1885. break;
  1886. }
  1887. index = nextIndex;
  1888. }
  1889. if (nextIndex == insertIndex)
  1890. sections.add (new UniformTextSection (text, font, colour, passwordCharacter));
  1891. coalesceSimilarSections();
  1892. totalNumChars = -1;
  1893. valueTextNeedsUpdating = true;
  1894. checkLayout();
  1895. moveCaretTo (caretPositionToMoveTo, false);
  1896. repaintText ({ insertIndex, getTotalNumChars() });
  1897. }
  1898. }
  1899. }
  1900. void TextEditor::reinsert (int insertIndex, const OwnedArray<UniformTextSection>& sectionsToInsert)
  1901. {
  1902. int index = 0;
  1903. int nextIndex = 0;
  1904. for (int i = 0; i < sections.size(); ++i)
  1905. {
  1906. nextIndex = index + sections.getUnchecked (i)->getTotalLength();
  1907. if (insertIndex == index)
  1908. {
  1909. for (int j = sectionsToInsert.size(); --j >= 0;)
  1910. sections.insert (i, new UniformTextSection (*sectionsToInsert.getUnchecked(j)));
  1911. break;
  1912. }
  1913. if (insertIndex > index && insertIndex < nextIndex)
  1914. {
  1915. splitSection (i, insertIndex - index);
  1916. for (int j = sectionsToInsert.size(); --j >= 0;)
  1917. sections.insert (i + 1, new UniformTextSection (*sectionsToInsert.getUnchecked(j)));
  1918. break;
  1919. }
  1920. index = nextIndex;
  1921. }
  1922. if (nextIndex == insertIndex)
  1923. for (auto* s : sectionsToInsert)
  1924. sections.add (new UniformTextSection (*s));
  1925. coalesceSimilarSections();
  1926. totalNumChars = -1;
  1927. valueTextNeedsUpdating = true;
  1928. }
  1929. void TextEditor::remove (Range<int> range, UndoManager* const um, const int caretPositionToMoveTo)
  1930. {
  1931. if (! range.isEmpty())
  1932. {
  1933. int index = 0;
  1934. for (int i = 0; i < sections.size(); ++i)
  1935. {
  1936. auto nextIndex = index + sections.getUnchecked(i)->getTotalLength();
  1937. if (range.getStart() > index && range.getStart() < nextIndex)
  1938. {
  1939. splitSection (i, range.getStart() - index);
  1940. --i;
  1941. }
  1942. else if (range.getEnd() > index && range.getEnd() < nextIndex)
  1943. {
  1944. splitSection (i, range.getEnd() - index);
  1945. --i;
  1946. }
  1947. else
  1948. {
  1949. index = nextIndex;
  1950. if (index > range.getEnd())
  1951. break;
  1952. }
  1953. }
  1954. index = 0;
  1955. if (um != nullptr)
  1956. {
  1957. Array<UniformTextSection*> removedSections;
  1958. for (auto* section : sections)
  1959. {
  1960. if (range.getEnd() <= range.getStart())
  1961. break;
  1962. auto nextIndex = index + section->getTotalLength();
  1963. if (range.getStart() <= index && range.getEnd() >= nextIndex)
  1964. removedSections.add (new UniformTextSection (*section));
  1965. index = nextIndex;
  1966. }
  1967. if (um->getNumActionsInCurrentTransaction() > TextEditorDefs::maxActionsPerTransaction)
  1968. newTransaction();
  1969. um->perform (new RemoveAction (*this, range, caretPosition,
  1970. caretPositionToMoveTo, removedSections));
  1971. }
  1972. else
  1973. {
  1974. auto remainingRange = range;
  1975. for (int i = 0; i < sections.size(); ++i)
  1976. {
  1977. auto* section = sections.getUnchecked (i);
  1978. auto nextIndex = index + section->getTotalLength();
  1979. if (remainingRange.getStart() <= index && remainingRange.getEnd() >= nextIndex)
  1980. {
  1981. sections.remove (i);
  1982. remainingRange.setEnd (remainingRange.getEnd() - (nextIndex - index));
  1983. if (remainingRange.isEmpty())
  1984. break;
  1985. --i;
  1986. }
  1987. else
  1988. {
  1989. index = nextIndex;
  1990. }
  1991. }
  1992. coalesceSimilarSections();
  1993. totalNumChars = -1;
  1994. valueTextNeedsUpdating = true;
  1995. checkLayout();
  1996. moveCaretTo (caretPositionToMoveTo, false);
  1997. repaintText ({ range.getStart(), getTotalNumChars() });
  1998. }
  1999. }
  2000. }
  2001. //==============================================================================
  2002. String TextEditor::getText() const
  2003. {
  2004. MemoryOutputStream mo;
  2005. mo.preallocate ((size_t) getTotalNumChars());
  2006. for (auto* s : sections)
  2007. s->appendAllText (mo);
  2008. return mo.toUTF8();
  2009. }
  2010. String TextEditor::getTextInRange (const Range<int>& range) const
  2011. {
  2012. if (range.isEmpty())
  2013. return {};
  2014. MemoryOutputStream mo;
  2015. mo.preallocate ((size_t) jmin (getTotalNumChars(), range.getLength()));
  2016. int index = 0;
  2017. for (auto* s : sections)
  2018. {
  2019. auto nextIndex = index + s->getTotalLength();
  2020. if (range.getStart() < nextIndex)
  2021. {
  2022. if (range.getEnd() <= index)
  2023. break;
  2024. s->appendSubstring (mo, range - index);
  2025. }
  2026. index = nextIndex;
  2027. }
  2028. return mo.toUTF8();
  2029. }
  2030. String TextEditor::getHighlightedText() const
  2031. {
  2032. return getTextInRange (selection);
  2033. }
  2034. int TextEditor::getTotalNumChars() const
  2035. {
  2036. if (totalNumChars < 0)
  2037. {
  2038. totalNumChars = 0;
  2039. for (auto* s : sections)
  2040. totalNumChars += s->getTotalLength();
  2041. }
  2042. return totalNumChars;
  2043. }
  2044. bool TextEditor::isEmpty() const
  2045. {
  2046. return getTotalNumChars() == 0;
  2047. }
  2048. void TextEditor::getCharPosition (int index, Point<float>& anchor, float& lineHeight) const
  2049. {
  2050. if (getWordWrapWidth() <= 0)
  2051. {
  2052. anchor = {};
  2053. lineHeight = currentFont.getHeight();
  2054. }
  2055. else
  2056. {
  2057. Iterator i (*this);
  2058. if (sections.isEmpty())
  2059. {
  2060. anchor = { i.getJustificationOffsetX (0), 0 };
  2061. lineHeight = currentFont.getHeight();
  2062. }
  2063. else
  2064. {
  2065. i.getCharPosition (index, anchor, lineHeight);
  2066. }
  2067. }
  2068. }
  2069. int TextEditor::indexAtPosition (const float x, const float y) const
  2070. {
  2071. if (getWordWrapWidth() > 0)
  2072. {
  2073. for (Iterator i (*this); i.next();)
  2074. {
  2075. if (y < i.lineY + i.lineHeight)
  2076. {
  2077. if (y < i.lineY)
  2078. return jmax (0, i.indexInText - 1);
  2079. if (x <= i.atomX || i.atom->isNewLine())
  2080. return i.indexInText;
  2081. if (x < i.atomRight)
  2082. return i.xToIndex (x);
  2083. }
  2084. }
  2085. }
  2086. return getTotalNumChars();
  2087. }
  2088. //==============================================================================
  2089. int TextEditor::findWordBreakAfter (const int position) const
  2090. {
  2091. auto t = getTextInRange ({ position, position + 512 });
  2092. auto totalLength = t.length();
  2093. int i = 0;
  2094. while (i < totalLength && CharacterFunctions::isWhitespace (t[i]))
  2095. ++i;
  2096. auto type = TextEditorDefs::getCharacterCategory (t[i]);
  2097. while (i < totalLength && type == TextEditorDefs::getCharacterCategory (t[i]))
  2098. ++i;
  2099. while (i < totalLength && CharacterFunctions::isWhitespace (t[i]))
  2100. ++i;
  2101. return position + i;
  2102. }
  2103. int TextEditor::findWordBreakBefore (const int position) const
  2104. {
  2105. if (position <= 0)
  2106. return 0;
  2107. auto startOfBuffer = jmax (0, position - 512);
  2108. auto t = getTextInRange ({ startOfBuffer, position });
  2109. int i = position - startOfBuffer;
  2110. while (i > 0 && CharacterFunctions::isWhitespace (t [i - 1]))
  2111. --i;
  2112. if (i > 0)
  2113. {
  2114. auto type = TextEditorDefs::getCharacterCategory (t [i - 1]);
  2115. while (i > 0 && type == TextEditorDefs::getCharacterCategory (t [i - 1]))
  2116. --i;
  2117. }
  2118. jassert (startOfBuffer + i >= 0);
  2119. return startOfBuffer + i;
  2120. }
  2121. //==============================================================================
  2122. void TextEditor::splitSection (const int sectionIndex, const int charToSplitAt)
  2123. {
  2124. jassert (sections[sectionIndex] != nullptr);
  2125. sections.insert (sectionIndex + 1,
  2126. sections.getUnchecked (sectionIndex)->split (charToSplitAt));
  2127. }
  2128. void TextEditor::coalesceSimilarSections()
  2129. {
  2130. for (int i = 0; i < sections.size() - 1; ++i)
  2131. {
  2132. auto* s1 = sections.getUnchecked (i);
  2133. auto* s2 = sections.getUnchecked (i + 1);
  2134. if (s1->font == s2->font
  2135. && s1->colour == s2->colour)
  2136. {
  2137. s1->append (*s2);
  2138. sections.remove (i + 1);
  2139. --i;
  2140. }
  2141. }
  2142. }
  2143. //==============================================================================
  2144. class TextEditorAccessibilityHandler : public AccessibilityHandler
  2145. {
  2146. public:
  2147. explicit TextEditorAccessibilityHandler (TextEditor& textEditorToWrap)
  2148. : AccessibilityHandler (textEditorToWrap,
  2149. textEditorToWrap.isReadOnly() ? AccessibilityRole::staticText : AccessibilityRole::editableText,
  2150. {},
  2151. { std::make_unique<TextEditorTextInterface> (textEditorToWrap) }),
  2152. textEditor (textEditorToWrap)
  2153. {
  2154. }
  2155. String getHelp() const override { return textEditor.getTooltip(); }
  2156. private:
  2157. class TextEditorTextInterface : public AccessibilityTextInterface
  2158. {
  2159. public:
  2160. explicit TextEditorTextInterface (TextEditor& editor)
  2161. : textEditor (editor)
  2162. {
  2163. }
  2164. bool isDisplayingProtectedText() const override { return textEditor.getPasswordCharacter() != 0; }
  2165. bool isReadOnly() const override { return textEditor.isReadOnly(); }
  2166. int getTotalNumCharacters() const override { return textEditor.getText().length(); }
  2167. Range<int> getSelection() const override { return textEditor.getHighlightedRegion(); }
  2168. void setSelection (Range<int> r) override
  2169. {
  2170. if (r.isEmpty())
  2171. textEditor.setCaretPosition (r.getStart());
  2172. else
  2173. textEditor.setHighlightedRegion (r);
  2174. }
  2175. String getText (Range<int> r) const override
  2176. {
  2177. if (isDisplayingProtectedText())
  2178. return String::repeatedString (String::charToString (textEditor.getPasswordCharacter()),
  2179. getTotalNumCharacters());
  2180. return textEditor.getTextInRange (r);
  2181. }
  2182. void setText (const String& newText) override
  2183. {
  2184. textEditor.setText (newText);
  2185. }
  2186. int getTextInsertionOffset() const override { return textEditor.getCaretPosition(); }
  2187. RectangleList<int> getTextBounds (Range<int> textRange) const override
  2188. {
  2189. auto localRects = textEditor.getTextBounds (textRange);
  2190. RectangleList<int> globalRects;
  2191. std::for_each (localRects.begin(), localRects.end(),
  2192. [&] (const Rectangle<int>& r) { globalRects.add (textEditor.localAreaToGlobal (r)); });
  2193. return globalRects;
  2194. }
  2195. int getOffsetAtPoint (Point<int> point) const override
  2196. {
  2197. auto localPoint = textEditor.getLocalPoint (nullptr, point);
  2198. return textEditor.getTextIndexAt (localPoint.x, localPoint.y);
  2199. }
  2200. private:
  2201. TextEditor& textEditor;
  2202. //==============================================================================
  2203. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (TextEditorTextInterface)
  2204. };
  2205. TextEditor& textEditor;
  2206. //==============================================================================
  2207. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (TextEditorAccessibilityHandler)
  2208. };
  2209. std::unique_ptr<AccessibilityHandler> TextEditor::createAccessibilityHandler()
  2210. {
  2211. return std::make_unique<TextEditorAccessibilityHandler> (*this);
  2212. }
  2213. } // namespace juce