Audio plugin host https://kx.studio/carla
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.

2797 lines
81KB

  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. private:
  694. std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override
  695. {
  696. return createIgnoredAccessibilityHandler (*this);
  697. }
  698. JUCE_DECLARE_NON_COPYABLE (TextHolderComponent)
  699. };
  700. //==============================================================================
  701. struct TextEditor::TextEditorViewport : public Viewport
  702. {
  703. TextEditorViewport (TextEditor& ed) : owner (ed) {}
  704. void visibleAreaChanged (const Rectangle<int>&) override
  705. {
  706. if (! reentrant) // it's rare, but possible to get into a feedback loop as the viewport's scrollbars
  707. // appear and disappear, causing the wrap width to change.
  708. {
  709. auto wordWrapWidth = owner.getWordWrapWidth();
  710. if (wordWrapWidth != lastWordWrapWidth)
  711. {
  712. lastWordWrapWidth = wordWrapWidth;
  713. ScopedValueSetter<bool> svs (reentrant, true);
  714. owner.checkLayout();
  715. }
  716. }
  717. }
  718. private:
  719. std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override
  720. {
  721. return createIgnoredAccessibilityHandler (*this);
  722. }
  723. TextEditor& owner;
  724. int lastWordWrapWidth = 0;
  725. bool reentrant = false;
  726. JUCE_DECLARE_NON_COPYABLE (TextEditorViewport)
  727. };
  728. //==============================================================================
  729. namespace TextEditorDefs
  730. {
  731. const int textChangeMessageId = 0x10003001;
  732. const int returnKeyMessageId = 0x10003002;
  733. const int escapeKeyMessageId = 0x10003003;
  734. const int focusLossMessageId = 0x10003004;
  735. const int maxActionsPerTransaction = 100;
  736. static int getCharacterCategory (juce_wchar character) noexcept
  737. {
  738. return CharacterFunctions::isLetterOrDigit (character)
  739. ? 2 : (CharacterFunctions::isWhitespace (character) ? 0 : 1);
  740. }
  741. }
  742. //==============================================================================
  743. TextEditor::TextEditor (const String& name, juce_wchar passwordChar)
  744. : Component (name),
  745. passwordCharacter (passwordChar)
  746. {
  747. setMouseCursor (MouseCursor::IBeamCursor);
  748. viewport.reset (new TextEditorViewport (*this));
  749. addAndMakeVisible (viewport.get());
  750. viewport->setViewedComponent (textHolder = new TextHolderComponent (*this));
  751. viewport->setWantsKeyboardFocus (false);
  752. viewport->setScrollBarsShown (false, false);
  753. setWantsKeyboardFocus (true);
  754. recreateCaret();
  755. juce::Desktop::getInstance().addGlobalMouseListener (this);
  756. }
  757. TextEditor::~TextEditor()
  758. {
  759. juce::Desktop::getInstance().removeGlobalMouseListener (this);
  760. textValue.removeListener (textHolder);
  761. textValue.referTo (Value());
  762. viewport.reset();
  763. textHolder = nullptr;
  764. }
  765. //==============================================================================
  766. void TextEditor::newTransaction()
  767. {
  768. lastTransactionTime = Time::getApproximateMillisecondCounter();
  769. undoManager.beginNewTransaction();
  770. }
  771. bool TextEditor::undoOrRedo (const bool shouldUndo)
  772. {
  773. if (! isReadOnly())
  774. {
  775. newTransaction();
  776. if (shouldUndo ? undoManager.undo()
  777. : undoManager.redo())
  778. {
  779. repaint();
  780. textChanged();
  781. scrollToMakeSureCursorIsVisible();
  782. return true;
  783. }
  784. }
  785. return false;
  786. }
  787. bool TextEditor::undo() { return undoOrRedo (true); }
  788. bool TextEditor::redo() { return undoOrRedo (false); }
  789. //==============================================================================
  790. void TextEditor::setMultiLine (const bool shouldBeMultiLine,
  791. const bool shouldWordWrap)
  792. {
  793. if (multiline != shouldBeMultiLine
  794. || wordWrap != (shouldWordWrap && shouldBeMultiLine))
  795. {
  796. multiline = shouldBeMultiLine;
  797. wordWrap = shouldWordWrap && shouldBeMultiLine;
  798. checkLayout();
  799. viewport->setViewPosition (0, 0);
  800. resized();
  801. scrollToMakeSureCursorIsVisible();
  802. }
  803. }
  804. bool TextEditor::isMultiLine() const
  805. {
  806. return multiline;
  807. }
  808. void TextEditor::setScrollbarsShown (bool shown)
  809. {
  810. if (scrollbarVisible != shown)
  811. {
  812. scrollbarVisible = shown;
  813. checkLayout();
  814. }
  815. }
  816. void TextEditor::setReadOnly (bool shouldBeReadOnly)
  817. {
  818. if (readOnly != shouldBeReadOnly)
  819. {
  820. readOnly = shouldBeReadOnly;
  821. enablementChanged();
  822. invalidateAccessibilityHandler();
  823. if (auto* peer = getPeer())
  824. peer->refreshTextInputTarget();
  825. }
  826. }
  827. void TextEditor::setClicksOutsideDismissVirtualKeyboard (bool newValue)
  828. {
  829. clicksOutsideDismissVirtualKeyboard = newValue;
  830. }
  831. bool TextEditor::isReadOnly() const noexcept
  832. {
  833. return readOnly || ! isEnabled();
  834. }
  835. bool TextEditor::isTextInputActive() const
  836. {
  837. return ! isReadOnly() && (! clicksOutsideDismissVirtualKeyboard || mouseDownInEditor);
  838. }
  839. void TextEditor::setReturnKeyStartsNewLine (bool shouldStartNewLine)
  840. {
  841. returnKeyStartsNewLine = shouldStartNewLine;
  842. }
  843. void TextEditor::setTabKeyUsedAsCharacter (bool shouldTabKeyBeUsed)
  844. {
  845. tabKeyUsed = shouldTabKeyBeUsed;
  846. }
  847. void TextEditor::setPopupMenuEnabled (bool b)
  848. {
  849. popupMenuEnabled = b;
  850. }
  851. void TextEditor::setSelectAllWhenFocused (bool b)
  852. {
  853. selectAllTextWhenFocused = b;
  854. }
  855. void TextEditor::setJustification (Justification j)
  856. {
  857. if (justification != j)
  858. {
  859. justification = j;
  860. resized();
  861. repaint();
  862. }
  863. }
  864. //==============================================================================
  865. void TextEditor::setFont (const Font& newFont)
  866. {
  867. currentFont = newFont;
  868. scrollToMakeSureCursorIsVisible();
  869. }
  870. void TextEditor::applyFontToAllText (const Font& newFont, bool changeCurrentFont)
  871. {
  872. if (changeCurrentFont)
  873. currentFont = newFont;
  874. auto overallColour = findColour (textColourId);
  875. for (auto* uts : sections)
  876. {
  877. uts->setFont (newFont, passwordCharacter);
  878. uts->colour = overallColour;
  879. }
  880. coalesceSimilarSections();
  881. checkLayout();
  882. scrollToMakeSureCursorIsVisible();
  883. repaint();
  884. }
  885. void TextEditor::applyColourToAllText (const Colour& newColour, bool changeCurrentTextColour)
  886. {
  887. for (auto* uts : sections)
  888. uts->colour = newColour;
  889. if (changeCurrentTextColour)
  890. setColour (TextEditor::textColourId, newColour);
  891. else
  892. repaint();
  893. }
  894. void TextEditor::lookAndFeelChanged()
  895. {
  896. caret.reset();
  897. recreateCaret();
  898. repaint();
  899. }
  900. void TextEditor::parentHierarchyChanged()
  901. {
  902. lookAndFeelChanged();
  903. }
  904. void TextEditor::enablementChanged()
  905. {
  906. recreateCaret();
  907. repaint();
  908. }
  909. void TextEditor::setCaretVisible (bool shouldCaretBeVisible)
  910. {
  911. if (caretVisible != shouldCaretBeVisible)
  912. {
  913. caretVisible = shouldCaretBeVisible;
  914. recreateCaret();
  915. }
  916. }
  917. void TextEditor::recreateCaret()
  918. {
  919. if (isCaretVisible())
  920. {
  921. if (caret == nullptr)
  922. {
  923. caret.reset (getLookAndFeel().createCaretComponent (this));
  924. textHolder->addChildComponent (caret.get());
  925. updateCaretPosition();
  926. }
  927. }
  928. else
  929. {
  930. caret.reset();
  931. }
  932. }
  933. void TextEditor::updateCaretPosition()
  934. {
  935. if (caret != nullptr
  936. && getWidth() > 0 && getHeight() > 0)
  937. {
  938. Iterator i (*this);
  939. caret->setCaretPosition (getCaretRectangle().translated (leftIndent,
  940. topIndent + roundToInt (i.getYOffset())));
  941. if (auto* handler = getAccessibilityHandler())
  942. handler->notifyAccessibilityEvent (AccessibilityEvent::textSelectionChanged);
  943. }
  944. }
  945. TextEditor::LengthAndCharacterRestriction::LengthAndCharacterRestriction (int maxLen, const String& chars)
  946. : allowedCharacters (chars), maxLength (maxLen)
  947. {
  948. }
  949. String TextEditor::LengthAndCharacterRestriction::filterNewText (TextEditor& ed, const String& newInput)
  950. {
  951. String t (newInput);
  952. if (allowedCharacters.isNotEmpty())
  953. t = t.retainCharacters (allowedCharacters);
  954. if (maxLength > 0)
  955. t = t.substring (0, maxLength - (ed.getTotalNumChars() - ed.getHighlightedRegion().getLength()));
  956. return t;
  957. }
  958. void TextEditor::setInputFilter (InputFilter* newFilter, bool takeOwnership)
  959. {
  960. inputFilter.set (newFilter, takeOwnership);
  961. }
  962. void TextEditor::setInputRestrictions (int maxLen, const String& chars)
  963. {
  964. setInputFilter (new LengthAndCharacterRestriction (maxLen, chars), true);
  965. }
  966. void TextEditor::setTextToShowWhenEmpty (const String& text, Colour colourToUse)
  967. {
  968. textToShowWhenEmpty = text;
  969. colourForTextWhenEmpty = colourToUse;
  970. }
  971. void TextEditor::setPasswordCharacter (juce_wchar newPasswordCharacter)
  972. {
  973. if (passwordCharacter != newPasswordCharacter)
  974. {
  975. passwordCharacter = newPasswordCharacter;
  976. applyFontToAllText (currentFont);
  977. }
  978. }
  979. void TextEditor::setScrollBarThickness (int newThicknessPixels)
  980. {
  981. viewport->setScrollBarThickness (newThicknessPixels);
  982. }
  983. //==============================================================================
  984. void TextEditor::clear()
  985. {
  986. clearInternal (nullptr);
  987. checkLayout();
  988. undoManager.clearUndoHistory();
  989. }
  990. void TextEditor::setText (const String& newText, bool sendTextChangeMessage)
  991. {
  992. auto newLength = newText.length();
  993. if (newLength != getTotalNumChars() || getText() != newText)
  994. {
  995. if (! sendTextChangeMessage)
  996. textValue.removeListener (textHolder);
  997. textValue = newText;
  998. auto oldCursorPos = caretPosition;
  999. bool cursorWasAtEnd = oldCursorPos >= getTotalNumChars();
  1000. clearInternal (nullptr);
  1001. insert (newText, 0, currentFont, findColour (textColourId), nullptr, caretPosition);
  1002. // if you're adding text with line-feeds to a single-line text editor, it
  1003. // ain't gonna look right!
  1004. jassert (multiline || ! newText.containsAnyOf ("\r\n"));
  1005. if (cursorWasAtEnd && ! isMultiLine())
  1006. oldCursorPos = getTotalNumChars();
  1007. moveCaretTo (oldCursorPos, false);
  1008. if (sendTextChangeMessage)
  1009. textChanged();
  1010. else
  1011. textValue.addListener (textHolder);
  1012. checkLayout();
  1013. scrollToMakeSureCursorIsVisible();
  1014. undoManager.clearUndoHistory();
  1015. repaint();
  1016. }
  1017. }
  1018. //==============================================================================
  1019. void TextEditor::updateValueFromText()
  1020. {
  1021. if (valueTextNeedsUpdating)
  1022. {
  1023. valueTextNeedsUpdating = false;
  1024. textValue = getText();
  1025. }
  1026. }
  1027. Value& TextEditor::getTextValue()
  1028. {
  1029. updateValueFromText();
  1030. return textValue;
  1031. }
  1032. void TextEditor::textWasChangedByValue()
  1033. {
  1034. if (textValue.getValueSource().getReferenceCount() > 1)
  1035. setText (textValue.getValue());
  1036. }
  1037. //==============================================================================
  1038. void TextEditor::textChanged()
  1039. {
  1040. checkLayout();
  1041. if (listeners.size() != 0 || onTextChange != nullptr)
  1042. postCommandMessage (TextEditorDefs::textChangeMessageId);
  1043. if (textValue.getValueSource().getReferenceCount() > 1)
  1044. {
  1045. valueTextNeedsUpdating = false;
  1046. textValue = getText();
  1047. }
  1048. if (auto* handler = getAccessibilityHandler())
  1049. handler->notifyAccessibilityEvent (AccessibilityEvent::textChanged);
  1050. }
  1051. void TextEditor::setSelection (Range<int> newSelection) noexcept
  1052. {
  1053. if (newSelection != selection)
  1054. {
  1055. selection = newSelection;
  1056. if (auto* handler = getAccessibilityHandler())
  1057. handler->notifyAccessibilityEvent (AccessibilityEvent::textSelectionChanged);
  1058. }
  1059. }
  1060. void TextEditor::returnPressed() { postCommandMessage (TextEditorDefs::returnKeyMessageId); }
  1061. void TextEditor::escapePressed() { postCommandMessage (TextEditorDefs::escapeKeyMessageId); }
  1062. void TextEditor::addListener (Listener* l) { listeners.add (l); }
  1063. void TextEditor::removeListener (Listener* l) { listeners.remove (l); }
  1064. //==============================================================================
  1065. void TextEditor::timerCallbackInt()
  1066. {
  1067. checkFocus();
  1068. auto now = Time::getApproximateMillisecondCounter();
  1069. if (now > lastTransactionTime + 200)
  1070. newTransaction();
  1071. }
  1072. void TextEditor::checkFocus()
  1073. {
  1074. if (! wasFocused && hasKeyboardFocus (false) && ! isCurrentlyBlockedByAnotherModalComponent())
  1075. wasFocused = true;
  1076. }
  1077. void TextEditor::repaintText (Range<int> range)
  1078. {
  1079. if (! range.isEmpty())
  1080. {
  1081. if (range.getEnd() >= getTotalNumChars())
  1082. {
  1083. textHolder->repaint();
  1084. return;
  1085. }
  1086. Iterator i (*this);
  1087. Point<float> anchor;
  1088. auto lh = currentFont.getHeight();
  1089. i.getCharPosition (range.getStart(), anchor, lh);
  1090. auto y1 = std::trunc (anchor.y);
  1091. int y2 = 0;
  1092. if (range.getEnd() >= getTotalNumChars())
  1093. {
  1094. y2 = textHolder->getHeight();
  1095. }
  1096. else
  1097. {
  1098. i.getCharPosition (range.getEnd(), anchor, lh);
  1099. y2 = (int) (anchor.y + lh * 2.0f);
  1100. }
  1101. auto offset = i.getYOffset();
  1102. textHolder->repaint (0, roundToInt (y1 + offset), textHolder->getWidth(), roundToInt ((float) y2 - y1 + offset));
  1103. }
  1104. }
  1105. //==============================================================================
  1106. void TextEditor::moveCaret (int newCaretPos)
  1107. {
  1108. if (newCaretPos < 0)
  1109. newCaretPos = 0;
  1110. else
  1111. newCaretPos = jmin (newCaretPos, getTotalNumChars());
  1112. if (newCaretPos != getCaretPosition())
  1113. {
  1114. caretPosition = newCaretPos;
  1115. if (hasKeyboardFocus (false))
  1116. textHolder->restartTimer();
  1117. scrollToMakeSureCursorIsVisible();
  1118. updateCaretPosition();
  1119. if (auto* handler = getAccessibilityHandler())
  1120. handler->notifyAccessibilityEvent (AccessibilityEvent::textChanged);
  1121. }
  1122. }
  1123. int TextEditor::getCaretPosition() const
  1124. {
  1125. return caretPosition;
  1126. }
  1127. void TextEditor::setCaretPosition (const int newIndex)
  1128. {
  1129. moveCaretTo (newIndex, false);
  1130. }
  1131. void TextEditor::moveCaretToEnd()
  1132. {
  1133. setCaretPosition (std::numeric_limits<int>::max());
  1134. }
  1135. void TextEditor::scrollEditorToPositionCaret (const int desiredCaretX,
  1136. const int desiredCaretY)
  1137. {
  1138. updateCaretPosition();
  1139. auto caretRect = getCaretRectangle().translated (leftIndent, topIndent);
  1140. auto vx = caretRect.getX() - desiredCaretX;
  1141. auto vy = caretRect.getY() - desiredCaretY;
  1142. if (desiredCaretX < jmax (1, proportionOfWidth (0.05f)))
  1143. vx += desiredCaretX - proportionOfWidth (0.2f);
  1144. else if (desiredCaretX > jmax (0, viewport->getMaximumVisibleWidth() - (wordWrap ? 2 : 10)))
  1145. vx += desiredCaretX + (isMultiLine() ? proportionOfWidth (0.2f) : 10) - viewport->getMaximumVisibleWidth();
  1146. vx = jlimit (0, jmax (0, textHolder->getWidth() + 8 - viewport->getMaximumVisibleWidth()), vx);
  1147. if (! isMultiLine())
  1148. {
  1149. vy = viewport->getViewPositionY();
  1150. }
  1151. else
  1152. {
  1153. vy = jlimit (0, jmax (0, textHolder->getHeight() - viewport->getMaximumVisibleHeight()), vy);
  1154. if (desiredCaretY < 0)
  1155. vy = jmax (0, desiredCaretY + vy);
  1156. else if (desiredCaretY > jmax (0, viewport->getMaximumVisibleHeight() - caretRect.getHeight()))
  1157. vy += desiredCaretY + 2 + caretRect.getHeight() - viewport->getMaximumVisibleHeight();
  1158. }
  1159. viewport->setViewPosition (vx, vy);
  1160. }
  1161. Rectangle<int> TextEditor::getCaretRectangle()
  1162. {
  1163. return getCaretRectangleFloat().getSmallestIntegerContainer();
  1164. }
  1165. Rectangle<float> TextEditor::getCaretRectangleFloat() const
  1166. {
  1167. Point<float> anchor;
  1168. auto cursorHeight = currentFont.getHeight(); // (in case the text is empty and the call below doesn't set this value)
  1169. getCharPosition (caretPosition, anchor, cursorHeight);
  1170. return { anchor.x, anchor.y, 2.0f, cursorHeight };
  1171. }
  1172. Point<int> TextEditor::getTextOffset() const noexcept
  1173. {
  1174. Iterator i (*this);
  1175. auto yOffset = i.getYOffset();
  1176. return { getLeftIndent() + borderSize.getLeft() - viewport->getViewPositionX(),
  1177. roundToInt ((float) getTopIndent() + (float) borderSize.getTop() + yOffset) - viewport->getViewPositionY() };
  1178. }
  1179. RectangleList<int> TextEditor::getTextBounds (Range<int> textRange)
  1180. {
  1181. RectangleList<int> boundingBox;
  1182. Iterator i (*this);
  1183. while (i.next())
  1184. {
  1185. if (textRange.intersects ({ i.indexInText,
  1186. i.indexInText + i.atom->numChars }))
  1187. {
  1188. boundingBox.add (i.getTextBounds (textRange));
  1189. }
  1190. }
  1191. boundingBox.offsetAll (getTextOffset());
  1192. return boundingBox;
  1193. }
  1194. //==============================================================================
  1195. // Extra space for the cursor at the right-hand-edge
  1196. constexpr int rightEdgeSpace = 2;
  1197. int TextEditor::getWordWrapWidth() const
  1198. {
  1199. return wordWrap ? getMaximumTextWidth()
  1200. : std::numeric_limits<int>::max();
  1201. }
  1202. int TextEditor::getMaximumTextWidth() const
  1203. {
  1204. return jmax (1, viewport->getMaximumVisibleWidth() - leftIndent - rightEdgeSpace);
  1205. }
  1206. int TextEditor::getMaximumTextHeight() const
  1207. {
  1208. return jmax (1, viewport->getMaximumVisibleHeight() - topIndent);
  1209. }
  1210. void TextEditor::checkLayout()
  1211. {
  1212. if (getWordWrapWidth() > 0)
  1213. {
  1214. const auto textBottom = Iterator (*this).getTotalTextHeight() + topIndent;
  1215. const auto textRight = jmax (viewport->getMaximumVisibleWidth(),
  1216. Iterator (*this).getTextRight() + leftIndent + rightEdgeSpace);
  1217. textHolder->setSize (textRight, textBottom);
  1218. viewport->setScrollBarsShown (scrollbarVisible && multiline && textBottom > viewport->getMaximumVisibleHeight(),
  1219. scrollbarVisible && multiline && ! wordWrap && textRight > viewport->getMaximumVisibleWidth());
  1220. }
  1221. }
  1222. int TextEditor::getTextWidth() const { return textHolder->getWidth(); }
  1223. int TextEditor::getTextHeight() const { return textHolder->getHeight(); }
  1224. void TextEditor::setIndents (int newLeftIndent, int newTopIndent)
  1225. {
  1226. if (leftIndent != newLeftIndent || topIndent != newTopIndent)
  1227. {
  1228. leftIndent = newLeftIndent;
  1229. topIndent = newTopIndent;
  1230. resized();
  1231. repaint();
  1232. }
  1233. }
  1234. void TextEditor::setBorder (BorderSize<int> border)
  1235. {
  1236. borderSize = border;
  1237. resized();
  1238. }
  1239. BorderSize<int> TextEditor::getBorder() const
  1240. {
  1241. return borderSize;
  1242. }
  1243. void TextEditor::setScrollToShowCursor (const bool shouldScrollToShowCursor)
  1244. {
  1245. keepCaretOnScreen = shouldScrollToShowCursor;
  1246. }
  1247. void TextEditor::scrollToMakeSureCursorIsVisible()
  1248. {
  1249. updateCaretPosition();
  1250. if (keepCaretOnScreen)
  1251. {
  1252. auto viewPos = viewport->getViewPosition();
  1253. auto caretRect = getCaretRectangle().translated (leftIndent, topIndent);
  1254. auto relativeCursor = caretRect.getPosition() - viewPos;
  1255. if (relativeCursor.x < jmax (1, proportionOfWidth (0.05f)))
  1256. {
  1257. viewPos.x += relativeCursor.x - proportionOfWidth (0.2f);
  1258. }
  1259. else if (relativeCursor.x > jmax (0, viewport->getMaximumVisibleWidth() - (wordWrap ? 2 : 10)))
  1260. {
  1261. viewPos.x += relativeCursor.x + (isMultiLine() ? proportionOfWidth (0.2f) : 10) - viewport->getMaximumVisibleWidth();
  1262. }
  1263. viewPos.x = jlimit (0, jmax (0, textHolder->getWidth() + 8 - viewport->getMaximumVisibleWidth()), viewPos.x);
  1264. if (! isMultiLine())
  1265. {
  1266. viewPos.y = (getHeight() - textHolder->getHeight() - topIndent) / -2;
  1267. }
  1268. else if (relativeCursor.y < 0)
  1269. {
  1270. viewPos.y = jmax (0, relativeCursor.y + viewPos.y);
  1271. }
  1272. else if (relativeCursor.y > jmax (0, viewport->getMaximumVisibleHeight() - caretRect.getHeight()))
  1273. {
  1274. viewPos.y += relativeCursor.y + 2 + caretRect.getHeight() - viewport->getMaximumVisibleHeight();
  1275. }
  1276. viewport->setViewPosition (viewPos);
  1277. }
  1278. }
  1279. void TextEditor::moveCaretTo (const int newPosition, const bool isSelecting)
  1280. {
  1281. if (isSelecting)
  1282. {
  1283. moveCaret (newPosition);
  1284. auto oldSelection = selection;
  1285. if (dragType == notDragging)
  1286. {
  1287. if (std::abs (getCaretPosition() - selection.getStart()) < std::abs (getCaretPosition() - selection.getEnd()))
  1288. dragType = draggingSelectionStart;
  1289. else
  1290. dragType = draggingSelectionEnd;
  1291. }
  1292. if (dragType == draggingSelectionStart)
  1293. {
  1294. if (getCaretPosition() >= selection.getEnd())
  1295. dragType = draggingSelectionEnd;
  1296. setSelection (Range<int>::between (getCaretPosition(), selection.getEnd()));
  1297. }
  1298. else
  1299. {
  1300. if (getCaretPosition() < selection.getStart())
  1301. dragType = draggingSelectionStart;
  1302. setSelection (Range<int>::between (getCaretPosition(), selection.getStart()));
  1303. }
  1304. repaintText (selection.getUnionWith (oldSelection));
  1305. }
  1306. else
  1307. {
  1308. dragType = notDragging;
  1309. repaintText (selection);
  1310. moveCaret (newPosition);
  1311. setSelection (Range<int>::emptyRange (getCaretPosition()));
  1312. }
  1313. }
  1314. int TextEditor::getTextIndexAt (const int x, const int y) const
  1315. {
  1316. const auto offset = getTextOffset();
  1317. return indexAtPosition ((float) (x - offset.x),
  1318. (float) (y - offset.y));
  1319. }
  1320. void TextEditor::insertTextAtCaret (const String& t)
  1321. {
  1322. String newText (inputFilter != nullptr ? inputFilter->filterNewText (*this, t) : t);
  1323. if (isMultiLine())
  1324. newText = newText.replace ("\r\n", "\n");
  1325. else
  1326. newText = newText.replaceCharacters ("\r\n", " ");
  1327. const int insertIndex = selection.getStart();
  1328. const int newCaretPos = insertIndex + newText.length();
  1329. remove (selection, getUndoManager(),
  1330. newText.isNotEmpty() ? newCaretPos - 1 : newCaretPos);
  1331. insert (newText, insertIndex, currentFont, findColour (textColourId),
  1332. getUndoManager(), newCaretPos);
  1333. textChanged();
  1334. }
  1335. void TextEditor::setHighlightedRegion (const Range<int>& newSelection)
  1336. {
  1337. moveCaretTo (newSelection.getStart(), false);
  1338. moveCaretTo (newSelection.getEnd(), true);
  1339. }
  1340. //==============================================================================
  1341. void TextEditor::copy()
  1342. {
  1343. if (passwordCharacter == 0)
  1344. {
  1345. auto selectedText = getHighlightedText();
  1346. if (selectedText.isNotEmpty())
  1347. SystemClipboard::copyTextToClipboard (selectedText);
  1348. }
  1349. }
  1350. void TextEditor::paste()
  1351. {
  1352. if (! isReadOnly())
  1353. {
  1354. auto clip = SystemClipboard::getTextFromClipboard();
  1355. if (clip.isNotEmpty())
  1356. insertTextAtCaret (clip);
  1357. }
  1358. }
  1359. void TextEditor::cut()
  1360. {
  1361. if (! isReadOnly())
  1362. {
  1363. moveCaret (selection.getEnd());
  1364. insertTextAtCaret (String());
  1365. }
  1366. }
  1367. //==============================================================================
  1368. void TextEditor::drawContent (Graphics& g)
  1369. {
  1370. if (getWordWrapWidth() > 0)
  1371. {
  1372. g.setOrigin (leftIndent, topIndent);
  1373. auto clip = g.getClipBounds();
  1374. auto yOffset = Iterator (*this).getYOffset();
  1375. AffineTransform transform;
  1376. if (yOffset > 0)
  1377. {
  1378. transform = AffineTransform::translation (0.0f, yOffset);
  1379. clip.setY (roundToInt ((float) clip.getY() - yOffset));
  1380. }
  1381. Iterator i (*this);
  1382. Colour selectedTextColour;
  1383. if (! selection.isEmpty())
  1384. {
  1385. selectedTextColour = findColour (highlightedTextColourId);
  1386. g.setColour (findColour (highlightColourId).withMultipliedAlpha (hasKeyboardFocus (true) ? 1.0f : 0.5f));
  1387. auto boundingBox = getTextBounds (selection);
  1388. boundingBox.offsetAll (-getTextOffset());
  1389. g.fillPath (boundingBox.toPath(), transform);
  1390. }
  1391. const UniformTextSection* lastSection = nullptr;
  1392. while (i.next() && i.lineY < (float) clip.getBottom())
  1393. {
  1394. if (i.lineY + i.lineHeight >= (float) clip.getY())
  1395. {
  1396. if (selection.intersects ({ i.indexInText, i.indexInText + i.atom->numChars }))
  1397. {
  1398. i.drawSelectedText (g, selection, selectedTextColour, transform);
  1399. lastSection = nullptr;
  1400. }
  1401. else
  1402. {
  1403. i.draw (g, lastSection, transform);
  1404. }
  1405. }
  1406. }
  1407. for (auto& underlinedSection : underlinedSections)
  1408. {
  1409. Iterator i2 (*this);
  1410. while (i2.next() && i2.lineY < (float) clip.getBottom())
  1411. {
  1412. if (i2.lineY + i2.lineHeight >= (float) clip.getY()
  1413. && underlinedSection.intersects ({ i2.indexInText, i2.indexInText + i2.atom->numChars }))
  1414. {
  1415. i2.drawUnderline (g, underlinedSection, findColour (textColourId), transform);
  1416. }
  1417. }
  1418. }
  1419. }
  1420. }
  1421. void TextEditor::paint (Graphics& g)
  1422. {
  1423. getLookAndFeel().fillTextEditorBackground (g, getWidth(), getHeight(), *this);
  1424. }
  1425. void TextEditor::paintOverChildren (Graphics& g)
  1426. {
  1427. if (textToShowWhenEmpty.isNotEmpty()
  1428. && (! hasKeyboardFocus (false))
  1429. && getTotalNumChars() == 0)
  1430. {
  1431. g.setColour (colourForTextWhenEmpty);
  1432. g.setFont (getFont());
  1433. Rectangle<int> textBounds (leftIndent,
  1434. topIndent,
  1435. viewport->getWidth() - leftIndent,
  1436. getHeight() - topIndent);
  1437. if (! textBounds.isEmpty())
  1438. g.drawText (textToShowWhenEmpty, textBounds, justification, true);
  1439. }
  1440. getLookAndFeel().drawTextEditorOutline (g, getWidth(), getHeight(), *this);
  1441. }
  1442. //==============================================================================
  1443. void TextEditor::addPopupMenuItems (PopupMenu& m, const MouseEvent*)
  1444. {
  1445. const bool writable = ! isReadOnly();
  1446. if (passwordCharacter == 0)
  1447. {
  1448. m.addItem (StandardApplicationCommandIDs::cut, TRANS("Cut"), writable);
  1449. m.addItem (StandardApplicationCommandIDs::copy, TRANS("Copy"), ! selection.isEmpty());
  1450. }
  1451. m.addItem (StandardApplicationCommandIDs::paste, TRANS("Paste"), writable);
  1452. m.addItem (StandardApplicationCommandIDs::del, TRANS("Delete"), writable);
  1453. m.addSeparator();
  1454. m.addItem (StandardApplicationCommandIDs::selectAll, TRANS("Select All"));
  1455. m.addSeparator();
  1456. if (getUndoManager() != nullptr)
  1457. {
  1458. m.addItem (StandardApplicationCommandIDs::undo, TRANS("Undo"), undoManager.canUndo());
  1459. m.addItem (StandardApplicationCommandIDs::redo, TRANS("Redo"), undoManager.canRedo());
  1460. }
  1461. }
  1462. void TextEditor::performPopupMenuAction (const int menuItemID)
  1463. {
  1464. switch (menuItemID)
  1465. {
  1466. case StandardApplicationCommandIDs::cut: cutToClipboard(); break;
  1467. case StandardApplicationCommandIDs::copy: copyToClipboard(); break;
  1468. case StandardApplicationCommandIDs::paste: pasteFromClipboard(); break;
  1469. case StandardApplicationCommandIDs::del: cut(); break;
  1470. case StandardApplicationCommandIDs::selectAll: selectAll(); break;
  1471. case StandardApplicationCommandIDs::undo: undo(); break;
  1472. case StandardApplicationCommandIDs::redo: redo(); break;
  1473. default: break;
  1474. }
  1475. }
  1476. //==============================================================================
  1477. void TextEditor::mouseDown (const MouseEvent& e)
  1478. {
  1479. mouseDownInEditor = e.originalComponent == this;
  1480. if (! mouseDownInEditor)
  1481. return;
  1482. beginDragAutoRepeat (100);
  1483. newTransaction();
  1484. if (wasFocused || ! selectAllTextWhenFocused)
  1485. {
  1486. if (! (popupMenuEnabled && e.mods.isPopupMenu()))
  1487. {
  1488. moveCaretTo (getTextIndexAt (e.x, e.y),
  1489. e.mods.isShiftDown());
  1490. if (auto* peer = getPeer())
  1491. peer->closeInputMethodContext();
  1492. }
  1493. else
  1494. {
  1495. PopupMenu m;
  1496. m.setLookAndFeel (&getLookAndFeel());
  1497. addPopupMenuItems (m, &e);
  1498. menuActive = true;
  1499. m.showMenuAsync (PopupMenu::Options(),
  1500. [safeThis = SafePointer<TextEditor> { this }] (int menuResult)
  1501. {
  1502. if (auto* editor = safeThis.getComponent())
  1503. {
  1504. editor->menuActive = false;
  1505. if (menuResult != 0)
  1506. editor->performPopupMenuAction (menuResult);
  1507. }
  1508. });
  1509. }
  1510. }
  1511. }
  1512. void TextEditor::mouseDrag (const MouseEvent& e)
  1513. {
  1514. if (! mouseDownInEditor)
  1515. return;
  1516. if (wasFocused || ! selectAllTextWhenFocused)
  1517. if (! (popupMenuEnabled && e.mods.isPopupMenu()))
  1518. moveCaretTo (getTextIndexAt (e.x, e.y), true);
  1519. }
  1520. void TextEditor::mouseUp (const MouseEvent& e)
  1521. {
  1522. if (! mouseDownInEditor)
  1523. return;
  1524. newTransaction();
  1525. textHolder->restartTimer();
  1526. if (wasFocused || ! selectAllTextWhenFocused)
  1527. if (e.mouseWasClicked() && ! (popupMenuEnabled && e.mods.isPopupMenu()))
  1528. moveCaret (getTextIndexAt (e.x, e.y));
  1529. wasFocused = true;
  1530. }
  1531. void TextEditor::mouseDoubleClick (const MouseEvent& e)
  1532. {
  1533. if (! mouseDownInEditor)
  1534. return;
  1535. int tokenEnd = getTextIndexAt (e.x, e.y);
  1536. int tokenStart = 0;
  1537. if (e.getNumberOfClicks() > 3)
  1538. {
  1539. tokenEnd = getTotalNumChars();
  1540. }
  1541. else
  1542. {
  1543. auto t = getText();
  1544. auto totalLength = getTotalNumChars();
  1545. while (tokenEnd < totalLength)
  1546. {
  1547. auto c = t[tokenEnd];
  1548. // (note the slight bodge here - it's because iswalnum only checks for alphabetic chars in the current locale)
  1549. if (CharacterFunctions::isLetterOrDigit (c) || c > 128)
  1550. ++tokenEnd;
  1551. else
  1552. break;
  1553. }
  1554. tokenStart = tokenEnd;
  1555. while (tokenStart > 0)
  1556. {
  1557. auto c = t[tokenStart - 1];
  1558. // (note the slight bodge here - it's because iswalnum only checks for alphabetic chars in the current locale)
  1559. if (CharacterFunctions::isLetterOrDigit (c) || c > 128)
  1560. --tokenStart;
  1561. else
  1562. break;
  1563. }
  1564. if (e.getNumberOfClicks() > 2)
  1565. {
  1566. while (tokenEnd < totalLength)
  1567. {
  1568. auto c = t[tokenEnd];
  1569. if (c != '\r' && c != '\n')
  1570. ++tokenEnd;
  1571. else
  1572. break;
  1573. }
  1574. while (tokenStart > 0)
  1575. {
  1576. auto c = t[tokenStart - 1];
  1577. if (c != '\r' && c != '\n')
  1578. --tokenStart;
  1579. else
  1580. break;
  1581. }
  1582. }
  1583. }
  1584. moveCaretTo (tokenEnd, false);
  1585. moveCaretTo (tokenStart, true);
  1586. }
  1587. void TextEditor::mouseWheelMove (const MouseEvent& e, const MouseWheelDetails& wheel)
  1588. {
  1589. if (! mouseDownInEditor)
  1590. return;
  1591. if (! viewport->useMouseWheelMoveIfNeeded (e, wheel))
  1592. Component::mouseWheelMove (e, wheel);
  1593. }
  1594. //==============================================================================
  1595. bool TextEditor::moveCaretWithTransaction (const int newPos, const bool selecting)
  1596. {
  1597. newTransaction();
  1598. moveCaretTo (newPos, selecting);
  1599. if (auto* peer = getPeer())
  1600. peer->closeInputMethodContext();
  1601. return true;
  1602. }
  1603. bool TextEditor::moveCaretLeft (bool moveInWholeWordSteps, bool selecting)
  1604. {
  1605. auto pos = getCaretPosition();
  1606. if (moveInWholeWordSteps)
  1607. pos = findWordBreakBefore (pos);
  1608. else
  1609. --pos;
  1610. return moveCaretWithTransaction (pos, selecting);
  1611. }
  1612. bool TextEditor::moveCaretRight (bool moveInWholeWordSteps, bool selecting)
  1613. {
  1614. auto pos = getCaretPosition();
  1615. if (moveInWholeWordSteps)
  1616. pos = findWordBreakAfter (pos);
  1617. else
  1618. ++pos;
  1619. return moveCaretWithTransaction (pos, selecting);
  1620. }
  1621. bool TextEditor::moveCaretUp (bool selecting)
  1622. {
  1623. if (! isMultiLine())
  1624. return moveCaretToStartOfLine (selecting);
  1625. auto caretPos = getCaretRectangleFloat();
  1626. return moveCaretWithTransaction (indexAtPosition (caretPos.getX(), caretPos.getY() - 1.0f), selecting);
  1627. }
  1628. bool TextEditor::moveCaretDown (bool selecting)
  1629. {
  1630. if (! isMultiLine())
  1631. return moveCaretToEndOfLine (selecting);
  1632. auto caretPos = getCaretRectangleFloat();
  1633. return moveCaretWithTransaction (indexAtPosition (caretPos.getX(), caretPos.getBottom() + 1.0f), selecting);
  1634. }
  1635. bool TextEditor::pageUp (bool selecting)
  1636. {
  1637. if (! isMultiLine())
  1638. return moveCaretToStartOfLine (selecting);
  1639. auto caretPos = getCaretRectangleFloat();
  1640. return moveCaretWithTransaction (indexAtPosition (caretPos.getX(), caretPos.getY() - (float) viewport->getViewHeight()), selecting);
  1641. }
  1642. bool TextEditor::pageDown (bool selecting)
  1643. {
  1644. if (! isMultiLine())
  1645. return moveCaretToEndOfLine (selecting);
  1646. auto caretPos = getCaretRectangleFloat();
  1647. return moveCaretWithTransaction (indexAtPosition (caretPos.getX(), caretPos.getBottom() + (float) viewport->getViewHeight()), selecting);
  1648. }
  1649. void TextEditor::scrollByLines (int deltaLines)
  1650. {
  1651. viewport->getVerticalScrollBar().moveScrollbarInSteps (deltaLines);
  1652. }
  1653. bool TextEditor::scrollDown()
  1654. {
  1655. scrollByLines (-1);
  1656. return true;
  1657. }
  1658. bool TextEditor::scrollUp()
  1659. {
  1660. scrollByLines (1);
  1661. return true;
  1662. }
  1663. bool TextEditor::moveCaretToTop (bool selecting)
  1664. {
  1665. return moveCaretWithTransaction (0, selecting);
  1666. }
  1667. bool TextEditor::moveCaretToStartOfLine (bool selecting)
  1668. {
  1669. auto caretPos = getCaretRectangleFloat();
  1670. return moveCaretWithTransaction (indexAtPosition (0.0f, caretPos.getY()), selecting);
  1671. }
  1672. bool TextEditor::moveCaretToEnd (bool selecting)
  1673. {
  1674. return moveCaretWithTransaction (getTotalNumChars(), selecting);
  1675. }
  1676. bool TextEditor::moveCaretToEndOfLine (bool selecting)
  1677. {
  1678. auto caretPos = getCaretRectangleFloat();
  1679. return moveCaretWithTransaction (indexAtPosition ((float) textHolder->getWidth(), caretPos.getY()), selecting);
  1680. }
  1681. bool TextEditor::deleteBackwards (bool moveInWholeWordSteps)
  1682. {
  1683. if (moveInWholeWordSteps)
  1684. moveCaretTo (findWordBreakBefore (getCaretPosition()), true);
  1685. else if (selection.isEmpty() && selection.getStart() > 0)
  1686. setSelection ({ selection.getEnd() - 1, selection.getEnd() });
  1687. cut();
  1688. return true;
  1689. }
  1690. bool TextEditor::deleteForwards (bool /*moveInWholeWordSteps*/)
  1691. {
  1692. if (selection.isEmpty() && selection.getStart() < getTotalNumChars())
  1693. setSelection ({ selection.getStart(), selection.getStart() + 1 });
  1694. cut();
  1695. return true;
  1696. }
  1697. bool TextEditor::copyToClipboard()
  1698. {
  1699. newTransaction();
  1700. copy();
  1701. return true;
  1702. }
  1703. bool TextEditor::cutToClipboard()
  1704. {
  1705. newTransaction();
  1706. copy();
  1707. cut();
  1708. return true;
  1709. }
  1710. bool TextEditor::pasteFromClipboard()
  1711. {
  1712. newTransaction();
  1713. paste();
  1714. return true;
  1715. }
  1716. bool TextEditor::selectAll()
  1717. {
  1718. newTransaction();
  1719. moveCaretTo (getTotalNumChars(), false);
  1720. moveCaretTo (0, true);
  1721. return true;
  1722. }
  1723. //==============================================================================
  1724. void TextEditor::setEscapeAndReturnKeysConsumed (bool shouldBeConsumed) noexcept
  1725. {
  1726. consumeEscAndReturnKeys = shouldBeConsumed;
  1727. }
  1728. bool TextEditor::keyPressed (const KeyPress& key)
  1729. {
  1730. if (isReadOnly() && key != KeyPress ('c', ModifierKeys::commandModifier, 0)
  1731. && key != KeyPress ('a', ModifierKeys::commandModifier, 0))
  1732. return false;
  1733. if (! TextEditorKeyMapper<TextEditor>::invokeKeyFunction (*this, key))
  1734. {
  1735. if (key == KeyPress::returnKey)
  1736. {
  1737. newTransaction();
  1738. if (returnKeyStartsNewLine)
  1739. {
  1740. insertTextAtCaret ("\n");
  1741. }
  1742. else
  1743. {
  1744. returnPressed();
  1745. return consumeEscAndReturnKeys;
  1746. }
  1747. }
  1748. else if (key.isKeyCode (KeyPress::escapeKey))
  1749. {
  1750. newTransaction();
  1751. moveCaretTo (getCaretPosition(), false);
  1752. escapePressed();
  1753. return consumeEscAndReturnKeys;
  1754. }
  1755. else if (key.getTextCharacter() >= ' '
  1756. || (tabKeyUsed && (key.getTextCharacter() == '\t')))
  1757. {
  1758. insertTextAtCaret (String::charToString (key.getTextCharacter()));
  1759. lastTransactionTime = Time::getApproximateMillisecondCounter();
  1760. }
  1761. else
  1762. {
  1763. return false;
  1764. }
  1765. }
  1766. return true;
  1767. }
  1768. bool TextEditor::keyStateChanged (const bool isKeyDown)
  1769. {
  1770. if (! isKeyDown)
  1771. return false;
  1772. #if JUCE_WINDOWS
  1773. if (KeyPress (KeyPress::F4Key, ModifierKeys::altModifier, 0).isCurrentlyDown())
  1774. return false; // We need to explicitly allow alt-F4 to pass through on Windows
  1775. #endif
  1776. if ((! consumeEscAndReturnKeys)
  1777. && (KeyPress (KeyPress::escapeKey).isCurrentlyDown()
  1778. || KeyPress (KeyPress::returnKey).isCurrentlyDown()))
  1779. return false;
  1780. // (overridden to avoid forwarding key events to the parent)
  1781. return ! ModifierKeys::currentModifiers.isCommandDown();
  1782. }
  1783. //==============================================================================
  1784. void TextEditor::focusGained (FocusChangeType cause)
  1785. {
  1786. newTransaction();
  1787. if (selectAllTextWhenFocused)
  1788. {
  1789. moveCaretTo (0, false);
  1790. moveCaretTo (getTotalNumChars(), true);
  1791. }
  1792. checkFocus();
  1793. if (cause == FocusChangeType::focusChangedByMouseClick && selectAllTextWhenFocused)
  1794. wasFocused = false;
  1795. repaint();
  1796. updateCaretPosition();
  1797. }
  1798. void TextEditor::focusLost (FocusChangeType)
  1799. {
  1800. newTransaction();
  1801. wasFocused = false;
  1802. textHolder->stopTimer();
  1803. underlinedSections.clear();
  1804. updateCaretPosition();
  1805. postCommandMessage (TextEditorDefs::focusLossMessageId);
  1806. repaint();
  1807. }
  1808. //==============================================================================
  1809. void TextEditor::resized()
  1810. {
  1811. viewport->setBoundsInset (borderSize);
  1812. viewport->setSingleStepSizes (16, roundToInt (currentFont.getHeight()));
  1813. checkLayout();
  1814. if (isMultiLine())
  1815. updateCaretPosition();
  1816. else
  1817. scrollToMakeSureCursorIsVisible();
  1818. }
  1819. void TextEditor::handleCommandMessage (const int commandId)
  1820. {
  1821. Component::BailOutChecker checker (this);
  1822. switch (commandId)
  1823. {
  1824. case TextEditorDefs::textChangeMessageId:
  1825. listeners.callChecked (checker, [this] (Listener& l) { l.textEditorTextChanged (*this); });
  1826. if (! checker.shouldBailOut() && onTextChange != nullptr)
  1827. onTextChange();
  1828. break;
  1829. case TextEditorDefs::returnKeyMessageId:
  1830. listeners.callChecked (checker, [this] (Listener& l) { l.textEditorReturnKeyPressed (*this); });
  1831. if (! checker.shouldBailOut() && onReturnKey != nullptr)
  1832. onReturnKey();
  1833. break;
  1834. case TextEditorDefs::escapeKeyMessageId:
  1835. listeners.callChecked (checker, [this] (Listener& l) { l.textEditorEscapeKeyPressed (*this); });
  1836. if (! checker.shouldBailOut() && onEscapeKey != nullptr)
  1837. onEscapeKey();
  1838. break;
  1839. case TextEditorDefs::focusLossMessageId:
  1840. updateValueFromText();
  1841. listeners.callChecked (checker, [this] (Listener& l) { l.textEditorFocusLost (*this); });
  1842. if (! checker.shouldBailOut() && onFocusLost != nullptr)
  1843. onFocusLost();
  1844. break;
  1845. default:
  1846. jassertfalse;
  1847. break;
  1848. }
  1849. }
  1850. void TextEditor::setTemporaryUnderlining (const Array<Range<int>>& newUnderlinedSections)
  1851. {
  1852. underlinedSections = newUnderlinedSections;
  1853. repaint();
  1854. }
  1855. //==============================================================================
  1856. UndoManager* TextEditor::getUndoManager() noexcept
  1857. {
  1858. return readOnly ? nullptr : &undoManager;
  1859. }
  1860. void TextEditor::clearInternal (UndoManager* const um)
  1861. {
  1862. remove ({ 0, getTotalNumChars() }, um, caretPosition);
  1863. }
  1864. void TextEditor::insert (const String& text, int insertIndex, const Font& font,
  1865. Colour colour, UndoManager* um, int caretPositionToMoveTo)
  1866. {
  1867. if (text.isNotEmpty())
  1868. {
  1869. if (um != nullptr)
  1870. {
  1871. if (um->getNumActionsInCurrentTransaction() > TextEditorDefs::maxActionsPerTransaction)
  1872. newTransaction();
  1873. um->perform (new InsertAction (*this, text, insertIndex, font, colour,
  1874. caretPosition, caretPositionToMoveTo));
  1875. }
  1876. else
  1877. {
  1878. repaintText ({ insertIndex, getTotalNumChars() }); // must do this before and after changing the data, in case
  1879. // a line gets moved due to word wrap
  1880. int index = 0;
  1881. int nextIndex = 0;
  1882. for (int i = 0; i < sections.size(); ++i)
  1883. {
  1884. nextIndex = index + sections.getUnchecked (i)->getTotalLength();
  1885. if (insertIndex == index)
  1886. {
  1887. sections.insert (i, new UniformTextSection (text, font, colour, passwordCharacter));
  1888. break;
  1889. }
  1890. if (insertIndex > index && insertIndex < nextIndex)
  1891. {
  1892. splitSection (i, insertIndex - index);
  1893. sections.insert (i + 1, new UniformTextSection (text, font, colour, passwordCharacter));
  1894. break;
  1895. }
  1896. index = nextIndex;
  1897. }
  1898. if (nextIndex == insertIndex)
  1899. sections.add (new UniformTextSection (text, font, colour, passwordCharacter));
  1900. coalesceSimilarSections();
  1901. totalNumChars = -1;
  1902. valueTextNeedsUpdating = true;
  1903. checkLayout();
  1904. moveCaretTo (caretPositionToMoveTo, false);
  1905. repaintText ({ insertIndex, getTotalNumChars() });
  1906. }
  1907. }
  1908. }
  1909. void TextEditor::reinsert (int insertIndex, const OwnedArray<UniformTextSection>& sectionsToInsert)
  1910. {
  1911. int index = 0;
  1912. int nextIndex = 0;
  1913. for (int i = 0; i < sections.size(); ++i)
  1914. {
  1915. nextIndex = index + sections.getUnchecked (i)->getTotalLength();
  1916. if (insertIndex == index)
  1917. {
  1918. for (int j = sectionsToInsert.size(); --j >= 0;)
  1919. sections.insert (i, new UniformTextSection (*sectionsToInsert.getUnchecked(j)));
  1920. break;
  1921. }
  1922. if (insertIndex > index && insertIndex < nextIndex)
  1923. {
  1924. splitSection (i, insertIndex - index);
  1925. for (int j = sectionsToInsert.size(); --j >= 0;)
  1926. sections.insert (i + 1, new UniformTextSection (*sectionsToInsert.getUnchecked(j)));
  1927. break;
  1928. }
  1929. index = nextIndex;
  1930. }
  1931. if (nextIndex == insertIndex)
  1932. for (auto* s : sectionsToInsert)
  1933. sections.add (new UniformTextSection (*s));
  1934. coalesceSimilarSections();
  1935. totalNumChars = -1;
  1936. valueTextNeedsUpdating = true;
  1937. }
  1938. void TextEditor::remove (Range<int> range, UndoManager* const um, const int caretPositionToMoveTo)
  1939. {
  1940. if (! range.isEmpty())
  1941. {
  1942. int index = 0;
  1943. for (int i = 0; i < sections.size(); ++i)
  1944. {
  1945. auto nextIndex = index + sections.getUnchecked(i)->getTotalLength();
  1946. if (range.getStart() > index && range.getStart() < nextIndex)
  1947. {
  1948. splitSection (i, range.getStart() - index);
  1949. --i;
  1950. }
  1951. else if (range.getEnd() > index && range.getEnd() < nextIndex)
  1952. {
  1953. splitSection (i, range.getEnd() - index);
  1954. --i;
  1955. }
  1956. else
  1957. {
  1958. index = nextIndex;
  1959. if (index > range.getEnd())
  1960. break;
  1961. }
  1962. }
  1963. index = 0;
  1964. if (um != nullptr)
  1965. {
  1966. Array<UniformTextSection*> removedSections;
  1967. for (auto* section : sections)
  1968. {
  1969. if (range.getEnd() <= range.getStart())
  1970. break;
  1971. auto nextIndex = index + section->getTotalLength();
  1972. if (range.getStart() <= index && range.getEnd() >= nextIndex)
  1973. removedSections.add (new UniformTextSection (*section));
  1974. index = nextIndex;
  1975. }
  1976. if (um->getNumActionsInCurrentTransaction() > TextEditorDefs::maxActionsPerTransaction)
  1977. newTransaction();
  1978. um->perform (new RemoveAction (*this, range, caretPosition,
  1979. caretPositionToMoveTo, removedSections));
  1980. }
  1981. else
  1982. {
  1983. auto remainingRange = range;
  1984. for (int i = 0; i < sections.size(); ++i)
  1985. {
  1986. auto* section = sections.getUnchecked (i);
  1987. auto nextIndex = index + section->getTotalLength();
  1988. if (remainingRange.getStart() <= index && remainingRange.getEnd() >= nextIndex)
  1989. {
  1990. sections.remove (i);
  1991. remainingRange.setEnd (remainingRange.getEnd() - (nextIndex - index));
  1992. if (remainingRange.isEmpty())
  1993. break;
  1994. --i;
  1995. }
  1996. else
  1997. {
  1998. index = nextIndex;
  1999. }
  2000. }
  2001. coalesceSimilarSections();
  2002. totalNumChars = -1;
  2003. valueTextNeedsUpdating = true;
  2004. checkLayout();
  2005. moveCaretTo (caretPositionToMoveTo, false);
  2006. repaintText ({ range.getStart(), getTotalNumChars() });
  2007. }
  2008. }
  2009. }
  2010. //==============================================================================
  2011. String TextEditor::getText() const
  2012. {
  2013. MemoryOutputStream mo;
  2014. mo.preallocate ((size_t) getTotalNumChars());
  2015. for (auto* s : sections)
  2016. s->appendAllText (mo);
  2017. return mo.toUTF8();
  2018. }
  2019. String TextEditor::getTextInRange (const Range<int>& range) const
  2020. {
  2021. if (range.isEmpty())
  2022. return {};
  2023. MemoryOutputStream mo;
  2024. mo.preallocate ((size_t) jmin (getTotalNumChars(), range.getLength()));
  2025. int index = 0;
  2026. for (auto* s : sections)
  2027. {
  2028. auto nextIndex = index + s->getTotalLength();
  2029. if (range.getStart() < nextIndex)
  2030. {
  2031. if (range.getEnd() <= index)
  2032. break;
  2033. s->appendSubstring (mo, range - index);
  2034. }
  2035. index = nextIndex;
  2036. }
  2037. return mo.toUTF8();
  2038. }
  2039. String TextEditor::getHighlightedText() const
  2040. {
  2041. return getTextInRange (selection);
  2042. }
  2043. int TextEditor::getTotalNumChars() const
  2044. {
  2045. if (totalNumChars < 0)
  2046. {
  2047. totalNumChars = 0;
  2048. for (auto* s : sections)
  2049. totalNumChars += s->getTotalLength();
  2050. }
  2051. return totalNumChars;
  2052. }
  2053. bool TextEditor::isEmpty() const
  2054. {
  2055. return getTotalNumChars() == 0;
  2056. }
  2057. void TextEditor::getCharPosition (int index, Point<float>& anchor, float& lineHeight) const
  2058. {
  2059. if (getWordWrapWidth() <= 0)
  2060. {
  2061. anchor = {};
  2062. lineHeight = currentFont.getHeight();
  2063. }
  2064. else
  2065. {
  2066. Iterator i (*this);
  2067. if (sections.isEmpty())
  2068. {
  2069. anchor = { i.getJustificationOffsetX (0), 0 };
  2070. lineHeight = currentFont.getHeight();
  2071. }
  2072. else
  2073. {
  2074. i.getCharPosition (index, anchor, lineHeight);
  2075. }
  2076. }
  2077. }
  2078. int TextEditor::indexAtPosition (const float x, const float y) const
  2079. {
  2080. if (getWordWrapWidth() > 0)
  2081. {
  2082. for (Iterator i (*this); i.next();)
  2083. {
  2084. if (y < i.lineY + i.lineHeight)
  2085. {
  2086. if (y < i.lineY)
  2087. return jmax (0, i.indexInText - 1);
  2088. if (x <= i.atomX || i.atom->isNewLine())
  2089. return i.indexInText;
  2090. if (x < i.atomRight)
  2091. return i.xToIndex (x);
  2092. }
  2093. }
  2094. }
  2095. return getTotalNumChars();
  2096. }
  2097. //==============================================================================
  2098. int TextEditor::findWordBreakAfter (const int position) const
  2099. {
  2100. auto t = getTextInRange ({ position, position + 512 });
  2101. auto totalLength = t.length();
  2102. int i = 0;
  2103. while (i < totalLength && CharacterFunctions::isWhitespace (t[i]))
  2104. ++i;
  2105. auto type = TextEditorDefs::getCharacterCategory (t[i]);
  2106. while (i < totalLength && type == TextEditorDefs::getCharacterCategory (t[i]))
  2107. ++i;
  2108. while (i < totalLength && CharacterFunctions::isWhitespace (t[i]))
  2109. ++i;
  2110. return position + i;
  2111. }
  2112. int TextEditor::findWordBreakBefore (const int position) const
  2113. {
  2114. if (position <= 0)
  2115. return 0;
  2116. auto startOfBuffer = jmax (0, position - 512);
  2117. auto t = getTextInRange ({ startOfBuffer, position });
  2118. int i = position - startOfBuffer;
  2119. while (i > 0 && CharacterFunctions::isWhitespace (t [i - 1]))
  2120. --i;
  2121. if (i > 0)
  2122. {
  2123. auto type = TextEditorDefs::getCharacterCategory (t [i - 1]);
  2124. while (i > 0 && type == TextEditorDefs::getCharacterCategory (t [i - 1]))
  2125. --i;
  2126. }
  2127. jassert (startOfBuffer + i >= 0);
  2128. return startOfBuffer + i;
  2129. }
  2130. //==============================================================================
  2131. void TextEditor::splitSection (const int sectionIndex, const int charToSplitAt)
  2132. {
  2133. jassert (sections[sectionIndex] != nullptr);
  2134. sections.insert (sectionIndex + 1,
  2135. sections.getUnchecked (sectionIndex)->split (charToSplitAt));
  2136. }
  2137. void TextEditor::coalesceSimilarSections()
  2138. {
  2139. for (int i = 0; i < sections.size() - 1; ++i)
  2140. {
  2141. auto* s1 = sections.getUnchecked (i);
  2142. auto* s2 = sections.getUnchecked (i + 1);
  2143. if (s1->font == s2->font
  2144. && s1->colour == s2->colour)
  2145. {
  2146. s1->append (*s2);
  2147. sections.remove (i + 1);
  2148. --i;
  2149. }
  2150. }
  2151. }
  2152. //==============================================================================
  2153. class TextEditor::EditorAccessibilityHandler : public AccessibilityHandler
  2154. {
  2155. public:
  2156. explicit EditorAccessibilityHandler (TextEditor& textEditorToWrap)
  2157. : AccessibilityHandler (textEditorToWrap,
  2158. textEditorToWrap.isReadOnly() ? AccessibilityRole::staticText : AccessibilityRole::editableText,
  2159. {},
  2160. { std::make_unique<TextEditorTextInterface> (textEditorToWrap) }),
  2161. textEditor (textEditorToWrap)
  2162. {
  2163. }
  2164. String getHelp() const override { return textEditor.getTooltip(); }
  2165. private:
  2166. class TextEditorTextInterface : public AccessibilityTextInterface
  2167. {
  2168. public:
  2169. explicit TextEditorTextInterface (TextEditor& editor)
  2170. : textEditor (editor)
  2171. {
  2172. }
  2173. bool isDisplayingProtectedText() const override { return textEditor.getPasswordCharacter() != 0; }
  2174. bool isReadOnly() const override { return textEditor.isReadOnly(); }
  2175. int getTotalNumCharacters() const override { return textEditor.getText().length(); }
  2176. Range<int> getSelection() const override { return textEditor.getHighlightedRegion(); }
  2177. void setSelection (Range<int> r) override
  2178. {
  2179. if (r == textEditor.getHighlightedRegion())
  2180. return;
  2181. if (r.isEmpty())
  2182. {
  2183. textEditor.setCaretPosition (r.getStart());
  2184. }
  2185. else
  2186. {
  2187. const auto cursorAtStart = r.getEnd() == textEditor.getHighlightedRegion().getStart()
  2188. || r.getEnd() == textEditor.getHighlightedRegion().getEnd();
  2189. textEditor.moveCaretTo (cursorAtStart ? r.getEnd() : r.getStart(), false);
  2190. textEditor.moveCaretTo (cursorAtStart ? r.getStart() : r.getEnd(), true);
  2191. }
  2192. }
  2193. String getText (Range<int> r) const override
  2194. {
  2195. if (isDisplayingProtectedText())
  2196. return String::repeatedString (String::charToString (textEditor.getPasswordCharacter()),
  2197. getTotalNumCharacters());
  2198. return textEditor.getTextInRange (r);
  2199. }
  2200. void setText (const String& newText) override
  2201. {
  2202. textEditor.setText (newText);
  2203. }
  2204. int getTextInsertionOffset() const override { return textEditor.getCaretPosition(); }
  2205. RectangleList<int> getTextBounds (Range<int> textRange) const override
  2206. {
  2207. auto localRects = textEditor.getTextBounds (textRange);
  2208. RectangleList<int> globalRects;
  2209. std::for_each (localRects.begin(), localRects.end(),
  2210. [&] (const Rectangle<int>& r) { globalRects.add (textEditor.localAreaToGlobal (r)); });
  2211. return globalRects;
  2212. }
  2213. int getOffsetAtPoint (Point<int> point) const override
  2214. {
  2215. auto localPoint = textEditor.getLocalPoint (nullptr, point);
  2216. return textEditor.getTextIndexAt (localPoint.x, localPoint.y);
  2217. }
  2218. private:
  2219. TextEditor& textEditor;
  2220. //==============================================================================
  2221. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (TextEditorTextInterface)
  2222. };
  2223. TextEditor& textEditor;
  2224. //==============================================================================
  2225. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (EditorAccessibilityHandler)
  2226. };
  2227. std::unique_ptr<AccessibilityHandler> TextEditor::createAccessibilityHandler()
  2228. {
  2229. return std::make_unique<EditorAccessibilityHandler> (*this);
  2230. }
  2231. } // namespace juce