Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GUI2/Canvas: fix issues with literal text #9983

Closed
wants to merge 1 commit into from

Conversation

Vultraz
Copy link
Member

@Vultraz Vultraz commented Mar 3, 2025

Resolves #9981
Resolves #9982

Bit of overkill... but it works. Really hope the use of variant doesn't cause CI issues with MacOS... I don't want to have to add compat wrappers for std::in_place_type.

@github-actions github-actions bot added the UI User interface issues, including both back-end and front-end issues. label Mar 3, 2025
@babaissarkar
Copy link
Contributor

This also works and is much simpler:

diff --git a/src/gui/core/canvas.cpp b/src/gui/core/canvas.cpp
index bfad3a05917..bdf01a5ca5b 100644
--- a/src/gui/core/canvas.cpp
+++ b/src/gui/core/canvas.cpp
@@ -395,12 +395,6 @@ image_shape::resize_mode image_shape::get_resize_mode(const std::string& resize_
 
 namespace
 {
-/** For cases where we want a string wrapped in formula parentheses. */
-auto maybe_literal(const config::attribute_value& val, bool normal_formula)
-{
-	return typed_formula<t_string>{ normal_formula ? val : "('" + val + "')" };
-}
-
 /** Populates the attribute list from the given config child range. */
 auto parse_attributes(const config::const_child_itors& range)
 {
@@ -456,7 +450,8 @@ text_shape::text_shape(const config& cfg, wfl::action_function_symbol_table& fun
 	, font_style_(decode_font_style(cfg["font_style"]))
 	, text_alignment_(cfg["text_alignment"])
 	, color_(cfg["color"])
-	, text_(maybe_literal(cfg["text"], cfg["parse_text_as_formula"].to_bool(true)))
+	, text_(cfg["text"].t_str())
+	, parse_(cfg["parse_text_as_formula"].to_bool(true))
 	, text_markup_(cfg["text_markup"], false)
 	, link_aware_(cfg["text_link_aware"], false)
 	, link_color_(cfg["text_link_color"], color_t::from_hex_string("ffff00"))
@@ -483,9 +478,11 @@ void text_shape::draw(wfl::map_formula_callable& variables)
 	// We first need to determine the size of the text which need the rendered
 	// text. So resolve and render the text first and then start to resolve
 	// the other formulas.
-	const t_string text = text_(variables);
+	if (parse_) {
+		text_ = typed_formula<t_string>(text_)(variables);
+	}
 
-	if(text.empty()) {
+	if(text_.empty()) {
 		DBG_GUI_D << "Text: no text to render, leave.";
 		return;
 	}
@@ -506,7 +503,7 @@ void text_shape::draw(wfl::map_formula_callable& variables)
 	text_renderer
 		.set_link_aware(link_aware_(variables))
 		.set_link_color(link_color_(variables))
-		.set_text(text, text_markup_(variables));
+		.set_text(text_, text_markup_(variables));
 
 	text_renderer.set_family_class(font_family_)
 		.set_font_size(font_size_(variables))
@@ -548,7 +545,7 @@ void text_shape::draw(wfl::map_formula_callable& variables)
 
 	texture tex = text_renderer.render_and_get_texture();
 	if(!tex) {
-		DBG_GUI_D << "Text: Rendering '" << text << "' resulted in an empty canvas, leave.";
+		DBG_GUI_D << "Text: Rendering '" << text_ << "' resulted in an empty canvas, leave.";
 		return;
 	}
 
diff --git a/src/gui/core/canvas_private.hpp b/src/gui/core/canvas_private.hpp
index dae84ce713a..4b03d0183b6 100644
--- a/src/gui/core/canvas_private.hpp
+++ b/src/gui/core/canvas_private.hpp
@@ -264,7 +264,8 @@ private:
 	typed_formula<color_t> color_;
 
 	/** The text to draw. */
-	typed_formula<t_string> text_;
+	t_string text_;
+	bool parse_;
 
 	/** The text markup switch of the text. */
 	typed_formula<bool> text_markup_;```

@soliton-
Copy link
Member

soliton- commented Mar 3, 2025

I cannot tell what maybe_literal is trying to do. It's definitely broken as is and seems like it can simply be removed.

@babaissarkar
Copy link
Contributor

Fixed by c9cbc9a (alternative approach).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
UI User interface issues, including both back-end and front-end issues.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

GUI2 Help Crash Help Browser: "Separate Event Files" page parses completely wrong
3 participants