The Battle for Wesnoth  1.19.5+dev
helper.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2008 - 2024
3  by Mark de Wever <koraq@xs4all.nl>
4  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY.
12 
13  See the COPYING file for more details.
14 */
15 
16 #pragma once
17 
18 #include "color.hpp"
19 #include "font/text.hpp"
20 
21 #include <pango/pango-layout.h>
22 
23 #include <string>
24 #include <string_view>
25 
26 struct point;
27 class t_string;
28 
29 namespace wfl
30 {
31 class map_formula_callable;
32 } // namespace wfl
33 
34 namespace gui2
35 {
36 /**
37  * Converts a color string to a color.
38  *
39  * @param color A color string.
40  *
41  * @returns The color.
42  */
43 color_t decode_color(const std::string& color);
44 
45 /**
46  * Converts a text alignment string to a text alignment.
47  *
48  * @param alignment An alignment string.
49  *
50  * @returns The text alignment.
51  */
52 PangoAlignment decode_text_alignment(const std::string& alignment);
53 
54 /**
55  * Converts a text weight string to a PangoWeight.
56  *
57  * @param weight A weight string, possible values: "thin", "light", "normal", "semibold", "bold", "heavy"
58  *
59  * @returns The corresponding PangoWeight.
60  */
61 PangoWeight decode_text_weight(const std::string& weight);
62 
63 /**
64  * Converts a text style string to a PangoStyle.
65  *
66  * @param style A style string, possible values: "normal", "italic", "oblique
67  *
68  * @returns The corresponding PangoStyle.
69  */
70 PangoStyle decode_text_style(const std::string& style);
71 
72 /**
73  * Converts a text alignment to its string representation.
74  *
75  * @param alignment An alignment.
76  *
77  * @returns An alignment string.
78  */
79 std::string encode_text_alignment(const PangoAlignment alignment);
80 
81 /**
82  * Converts a font style string to a font style.
83  *
84  * @param style A font style string.
85  *
86  * @returns The font style.
87  */
88 font::pango_text::FONT_STYLE decode_font_style(const std::string& style);
89 
90 /**
91  * Returns a default error message if a mandatory widget is omitted.
92  *
93  * @param id The id of the omitted widget.
94  * @returns The error message.
95  */
96 t_string missing_widget(const std::string& id);
97 
98 /**
99  * Gets a formula object with the screen size.
100  *
101  * @param variable A formula object in which the screen_width,
102  * screen_height, gamemap_width and
103  * gamemap_height variable will set to the
104  * current values of these in settings. It
105  * modifies the object send.
106  */
108 
109 /**
110  * Gets a formula object with the screen size.
111  *
112  * @returns Formula object with the screen_width,
113  * screen_height, gamemap_width and
114  * gamemap_height variable set to the current
115  * values of these in settings.
116  */
118 
119 /** Returns the current mouse position. */
121 
122 /**
123  * Returns a truncated version of the text.
124  *
125  * For debugging it's sometimes useful to get a part of the label of the
126  * widget. This function shows the first part.
127  *
128  * @param text The text to truncate.
129  *
130  * @returns The truncated text.
131  */
132 std::string_view debug_truncate(std::string_view text);
133 
134 } // namespace gui2
Generic file dialog.
void get_screen_size_variables(wfl::map_formula_callable &variable)
Gets a formula object with the screen size.
Definition: helper.cpp:125
color_t decode_color(const std::string &color)
Converts a color string to a color.
Definition: helper.cpp:48
t_string missing_widget(const std::string &id)
Returns a default error message if a mandatory widget is omitted.
Definition: helper.cpp:120
point get_mouse_position()
Returns the current mouse position.
Definition: helper.cpp:143
std::string_view debug_truncate(std::string_view text)
Returns a truncated version of the text.
Definition: helper.cpp:148
PangoWeight decode_text_weight(const std::string &weight)
Converts a text weight string to a PangoWeight.
Definition: helper.cpp:53
font::pango_text::FONT_STYLE decode_font_style(const std::string &style)
Converts a font style string to a font style.
Definition: helper.cpp:31
PangoAlignment decode_text_alignment(const std::string &alignment)
Converts a text alignment string to a text alignment.
Definition: helper.cpp:89
PangoStyle decode_text_style(const std::string &style)
Converts a text style string to a PangoStyle.
Definition: helper.cpp:74
std::string encode_text_alignment(const PangoAlignment alignment)
Converts a text alignment to its string representation.
Definition: helper.cpp:104
Definition: contexts.hpp:43
The basic class for representing 8-bit RGB or RGBA colour values.
Definition: color.hpp:59
Holds a 2D point.
Definition: point.hpp:25