touchgfx::TextArea::typedText is only used within TouchGFX.
 
Symbols
loading...
Files
loading...

touchgfx::TextArea::typedText field

Syntax

TypedText typedText;

References

LocationReferrerScopeText
TextArea.hpp:422
TypedText typedText; ///< The TypedText to display
TextArea.hpp:57touchgfx::TextArea::TextArea()touchgfx::TextArea
TextArea.hpp:298touchgfx::TextArea::getTypedText() consttouchgfx::TextArea
return typedText;
TextAreaWithWildcard.hpp:103touchgfx::TextAreaWithOneWildcard::getTextHeight()touchgfx::TextAreaWithOneWildcard
return typedText.hasValidId() ? calculateTextHeight(typedText.getText(), wildcard) : 0;
TextAreaWithWildcard.hpp:118touchgfx::TextAreaWithOneWildcard::draw() consttouchgfx::TextAreaWithOneWildcard
if (typedText.hasValidId())
TextAreaWithWildcard.hpp:120touchgfx::TextAreaWithOneWildcard::draw() consttouchgfx::TextAreaWithOneWildcard
const Font* fontToDraw = typedText.getFont();
TextAreaWithWildcard.hpp:123touchgfx::TextAreaWithOneWildcard::draw() consttouchgfx::TextAreaWithOneWildcard
TextAreaWithWildcard.hpp:124touchgfx::TextAreaWithOneWildcard::draw() consttouchgfx::TextAreaWithOneWildcard
HAL::lcd().drawString(getAbsoluteRect(), area, visuals, typedText.getText(), wildcard);
TextAreaWithWildcard.hpp:169touchgfx::TextAreaWithOneWildcard::getTextWidth() consttouchgfx::TextAreaWithOneWildcard
return typedText.hasValidId() ? typedText.getFont()->getStringWidth(typedText.getTextDirection(), typedText.getText(), wildcard) : 0;
TextAreaWithWildcard.hpp:228touchgfx::TextAreaWithTwoWildcards::getTextHeight()touchgfx::TextAreaWithTwoWildcards
return typedText.hasValidId() ? calculateTextHeight(typedText.getText(), wc1, wc2) : 0;
TextAreaWithWildcard.hpp:243touchgfx::TextAreaWithTwoWildcards::draw() consttouchgfx::TextAreaWithTwoWildcards
if (typedText.hasValidId())
TextAreaWithWildcard.hpp:245touchgfx::TextAreaWithTwoWildcards::draw() consttouchgfx::TextAreaWithTwoWildcards
const Font* fontToDraw = typedText.getFont();
TextAreaWithWildcard.hpp:248touchgfx::TextAreaWithTwoWildcards::draw() consttouchgfx::TextAreaWithTwoWildcards
TextAreaWithWildcard.hpp:249touchgfx::TextAreaWithTwoWildcards::draw() consttouchgfx::TextAreaWithTwoWildcards
HAL::lcd().drawString(getAbsoluteRect(), area, visuals, typedText.getText(), wc1, wc2);
TextAreaWithWildcard.hpp:323touchgfx::TextAreaWithTwoWildcards::getTextWidth() consttouchgfx::TextAreaWithTwoWildcards
return typedText.hasValidId() ? typedText.getFont()->getStringWidth(typedText.getTextDirection(), typedText.getText(), wc1, wc2) : 0;