aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-09-30 22:05:41 +0200
committerdec05eba <dec05eba@protonmail.com>2020-09-30 22:05:41 +0200
commit9602603135f456d906192112288dcd84429c8fee (patch)
tree6a6dafff82f3e38b8e18b74f474ef61965917339 /include
parente1a8d10b61c5f8ca092ba3aa458b661da29ba447 (diff)
Matrix: implement message editing
Diffstat (limited to 'include')
-rw-r--r--include/Entry.hpp2
-rw-r--r--include/Text.hpp2
2 files changed, 4 insertions, 0 deletions
diff --git a/include/Entry.hpp b/include/Entry.hpp
index 6f96e58..18a860c 100644
--- a/include/Entry.hpp
+++ b/include/Entry.hpp
@@ -22,8 +22,10 @@ namespace QuickMedia {
void draw(sf::RenderWindow &window);
void set_editable(bool editable);
+ void set_text(std::string text);
void set_position(const sf::Vector2f &pos);
void set_max_width(float width);
+ void move_caret_to_end();
float get_height();
diff --git a/include/Text.hpp b/include/Text.hpp
index 0244ba1..59693a2 100644
--- a/include/Text.hpp
+++ b/include/Text.hpp
@@ -80,6 +80,8 @@ namespace QuickMedia
void setCharacterSpacing(float characterSpacing);
void setEditable(bool editable);
bool isEditable() const;
+ // Note: only call after initial updateGeometry or draw. TODO: Automatically do this internally
+ void moveCaretToEnd();
// Note: won't update until @draw is called
float getWidth() const;