From 2a91f0dca320f6be061224cb42ceb31c32a51b6c Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 10 Sep 2024 22:14:18 +0200 Subject: Add mgl_text_set_max_width and mgl_text_set_max_rows --- include/mgl/graphics/text.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include') diff --git a/include/mgl/graphics/text.h b/include/mgl/graphics/text.h index 89ae541..4dd0219 100644 --- a/include/mgl/graphics/text.h +++ b/include/mgl/graphics/text.h @@ -23,6 +23,8 @@ typedef struct { mgl_vec2f position; mgl_vec2f bounds; bool bounds_dirty; + float max_width; + unsigned int max_rows; } mgl_text; /* @@ -41,6 +43,10 @@ void mgl_text_set_string(mgl_text *self, const char *str, size_t str_size); void mgl_text_set_font(mgl_text *self, mgl_font *font); void mgl_text_set_position(mgl_text *self, mgl_vec2f position); void mgl_text_set_color(mgl_text *self, mgl_color color); +/* If |max_width| is 0 then the text has no max width */ +void mgl_text_set_max_width(mgl_text *self, float max_width); +/* If |max_rows| is 0 then the text can display an unlimited amount of rows */ +void mgl_text_set_max_rows(mgl_text *self, unsigned int max_rows); mgl_vec2f mgl_text_get_bounds(mgl_text *self); /* Returns the position of the character on the screen (relative to the current mgl_view) */ mgl_vec2f mgl_text_find_character_pos(mgl_text *self, size_t index); -- cgit v1.2.3