diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-21 10:40:53 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-21 10:40:53 +1000 |
commit | 0ec3000536fae16ede8aa85ad22aba4d9781cc9e (patch) | |
tree | 939aeec379253d842bd6ba58935a04a79dcfd4d2 /source/windowing/StarTextBoxWidget.hpp | |
parent | bd783d319557b41b5865d51f306a74abbf7af18c (diff) |
processing directives for text box widgets
few other misc things
also fixed SDL audio on newer SDL vers
Diffstat (limited to 'source/windowing/StarTextBoxWidget.hpp')
-rw-r--r-- | source/windowing/StarTextBoxWidget.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/windowing/StarTextBoxWidget.hpp b/source/windowing/StarTextBoxWidget.hpp index 1299d78..c24923a 100644 --- a/source/windowing/StarTextBoxWidget.hpp +++ b/source/windowing/StarTextBoxWidget.hpp @@ -22,6 +22,7 @@ public: void setRegex(String const& regex); void setColor(Color const& color); + void setDirectives(String const& directives); void setFontSize(int fontSize); void setMaxWidth(int maxWidth); void setOverfillMode(bool overfillMode); @@ -61,6 +62,7 @@ private: HorizontalAnchor m_hAnchor; VerticalAnchor m_vAnchor; Color m_color; + String m_processingDirectives; int m_fontSize; int m_maxWidth; int m_cursorOffset; |