mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added a DrawableText::getText() method.
This commit is contained in:
parent
ee4618d863
commit
321931c21c
1 changed files with 4 additions and 1 deletions
|
|
@ -51,11 +51,14 @@ public:
|
|||
/** Sets the text to display.*/
|
||||
void setText (const String& newText);
|
||||
|
||||
/** Returns the currently displayed text */
|
||||
const String& getText() const noexcept { return text;}
|
||||
|
||||
/** Sets the colour of the text. */
|
||||
void setColour (const Colour& newColour);
|
||||
|
||||
/** Returns the current text colour. */
|
||||
const Colour& getColour() const noexcept { return colour; }
|
||||
const Colour& getColour() const noexcept { return colour; }
|
||||
|
||||
/** Sets the font to use.
|
||||
Note that the font height and horizontal scale are set as RelativeCoordinates using
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue