The Battle for Wesnoth  1.19.10+dev
attributes.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2025 - 2025
3  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 
15 #pragma once
16 
17 #include "font/font_options.hpp"
18 
19 #include <pango/pango-layout.h>
20 #include <utility>
21 
22 struct color_t;
23 
24 namespace font
25 {
26 /** Helper class to encapsulate the management of a PangoAttrList. */
28 {
29 public:
31  : attributes_(pango_attr_list_new())
32  {
33  }
34 
36  : attributes_(std::exchange(o.attributes_, nullptr))
37  {
38  }
39 
41  {
42  if(attributes_) {
43  pango_attr_list_unref(attributes_);
44  }
45  }
46 
47  attribute_list(const attribute_list&) = delete;
49 
51  {
52  attributes_ = std::exchange(o.attributes_, nullptr);
53  return *this;
54  };
55 
56  void insert(PangoAttribute* attr)
57  {
58  pango_attr_list_insert(attributes_, attr);
59  }
60 
61  void modify(PangoAttribute* attr)
62  {
63  pango_attr_list_change(attributes_, attr);
64  }
65 
66  void apply_to(PangoLayout* layout) const
67  {
68  pango_layout_set_attributes(layout, attributes_);
69  }
70 
71  void splice_into(PangoAttrList* target) const
72  {
73  pango_attr_list_splice(target, attributes_, 0, 0);
74  }
75 
76 private:
77  PangoAttrList* attributes_;
78 };
79 
80 //
81 // The following free functions are thin wrappers around the corresponding
82 // pango_attr_new methods. For more details, refer to the Pango docs.
83 //
84 
85 /**
86  * Add Pango font weight attribute to a specific portion of text. This changes the font weight
87  * of the corresponding part of the text.
88  *
89  * @param list The attribute list to which to append this attribute.
90  * @param offset_start Byte index of the cursor where font weight change starts
91  * @param offset_end Byte index of the cursor where font weight change ends
92  * @param weight Pango font weight
93  */
94 void add_attribute_weight(attribute_list& list, unsigned offset_start, unsigned offset_end, PangoWeight weight);
95 
96 /**
97  * Add Pango font style attribute to a specific portion of text, used to set italic/oblique text
98  *
99  * @param list The attribute list to which to append this attribute.
100  * @param offset_start Byte index of the cursor where font style change starts
101  * @param offset_end Byte index of the cursor where font style change ends
102  * @param style Pango font style (normal/italic/oblique)
103  */
104 void add_attribute_style(attribute_list& list, unsigned offset_start, unsigned offset_end, PangoStyle style);
105 
106 /**
107  * Add Pango underline attribute to a specific portion of text. This adds an underline to the
108  * corresponding part of the text.
109  *
110  * @param list The attribute list to which to append this attribute.
111  * @param offset_start Byte index of the cursor where underline starts
112  * @param offset_end Byte index of the cursor where underline change ends
113  * @param underline Pango underline style
114  */
115 void add_attribute_underline(attribute_list& list, unsigned offset_start, unsigned offset_end, PangoUnderline underline);
116 
117 /**
118  * Add Pango fg color attribute to a specific portion of text. This changes the foreground
119  * color of the corresponding part of the text.
120  *
121  * @param list The attribute list to which to append this attribute.
122  * @param offset_start Byte index of the cursor where color change starts
123  * @param offset_end Byte index of the cursor where color change ends
124  * @param color Foreground color
125  */
126 void add_attribute_fg_color(attribute_list& list, unsigned offset_start, unsigned offset_end, const color_t& color);
127 
128 /**
129  * Mark a specific portion of text for highlighting. Used for selection box.
130  * BGColor is set in set_text(), this just marks the area to be colored.
131  * Markup not used because the user may enter their own markup or special characters
132  *
133  * @param list The attribute list to which to append this attribute.
134  * @param offset_start Byte index of the cursor where selection/highlight starts
135  * @param offset_end Byte index of the cursor where selection/highlight ends
136  * @param color Highlight/Background color
137  */
138 void add_attribute_bg_color(attribute_list& list, unsigned offset_start, unsigned offset_end, const color_t& color);
139 
140 /**
141  * Add Pango font size attribute to a specific portion of text. This changes the font size
142  * of the corresponding part of the text.
143  *
144  * @param list The attribute list to which to append this attribute.
145  * @param offset_start Byte index of the cursor where size change starts
146  * @param offset_end Byte index of the cursor where size change ends
147  * @param size Font size
148  */
149 void add_attribute_size(attribute_list& list, unsigned offset_start, unsigned offset_end, int size);
150 
151 /**
152  * Add Pango font family attribute to a specific portion of text. This changes
153  * the font family of the corresponding part of the text.
154  *
155  * @param list The attribute list to which to append this attribute.
156  * @param offset_start Byte index of the cursor where size change starts
157  * @param offset_end Byte index of the cursor where size change ends
158  * @param family The font family
159  */
160 void add_attribute_font_family(attribute_list& list, unsigned offset_start, unsigned offset_end, font::family_class family);
161 
162 } // namespace font
Helper class to encapsulate the management of a PangoAttrList.
Definition: attributes.hpp:28
void splice_into(PangoAttrList *target) const
Definition: attributes.hpp:71
attribute_list(attribute_list &&o)
Definition: attributes.hpp:35
attribute_list & operator=(const attribute_list &)=delete
void modify(PangoAttribute *attr)
Definition: attributes.hpp:61
void apply_to(PangoLayout *layout) const
Definition: attributes.hpp:66
void insert(PangoAttribute *attr)
Definition: attributes.hpp:56
attribute_list(const attribute_list &)=delete
PangoAttrList * attributes_
Definition: attributes.hpp:77
attribute_list & operator=(attribute_list &&o)
Definition: attributes.hpp:50
static void layout()
Graphical text output.
void add_attribute_size(attribute_list &list, unsigned offset_start, unsigned offset_end, int size)
Add Pango font size attribute to a specific portion of text.
Definition: attributes.cpp:72
void add_attribute_bg_color(attribute_list &list, unsigned offset_start, unsigned offset_end, const color_t &color)
Mark a specific portion of text for highlighting.
Definition: attributes.cpp:143
void add_attribute_weight(attribute_list &list, unsigned offset_start, unsigned offset_end, PangoWeight weight)
Add Pango font weight attribute to a specific portion of text.
Definition: attributes.cpp:88
void add_attribute_underline(attribute_list &list, unsigned offset_start, unsigned offset_end, PangoUnderline underline)
Add Pango underline attribute to a specific portion of text.
Definition: attributes.cpp:114
void add_attribute_font_family(attribute_list &list, unsigned offset_start, unsigned offset_end, font::family_class family)
Add Pango font family attribute to a specific portion of text.
Definition: attributes.cpp:158
void add_attribute_style(attribute_list &list, unsigned offset_start, unsigned offset_end, PangoStyle style)
Add Pango font style attribute to a specific portion of text, used to set italic/oblique text.
Definition: attributes.cpp:101
void add_attribute_fg_color(attribute_list &list, unsigned offset_start, unsigned offset_end, const color_t &color)
Add Pango fg color attribute to a specific portion of text.
Definition: attributes.cpp:127
std::size_t size(std::string_view str)
Length in characters of a UTF-8 string.
Definition: unicode.cpp:85
The basic class for representing 8-bit RGB or RGBA colour values.
Definition: color.hpp:59