-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPangoCairoTextImage.h
137 lines (104 loc) · 4.47 KB
/
PangoCairoTextImage.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#pragma once
#include "TextImage.h"
#include <pango/pangocairo.h>
namespace dawn
{
class PangoCairoTextImage : public TextImage
{
public:
PangoCairoTextImage(std::string text, TextStyle *style) : TextImage(text, style) {
cairo_surface_t *temp_surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 0, 0);
m_cairoContext = cairo_create (temp_surface);
cairo_surface_destroy (temp_surface);
m_pangoLayout = pango_cairo_create_layout(m_cairoContext);
}
virtual ~PangoCairoTextImage() {
g_object_unref (m_pangoLayout);
cairo_destroy (m_cairoContext);
}
virtual BufferPtr buffer() {
std::cout << "Rendering text " << m_text << std::endl;
int width;
int height;
setupContext(&width, &height);
int stride = width * 4;
size_t raw_length = stride * height;
uint8_t *raw = new uint8_t[raw_length]();
uint8_t *flippedRaw = new uint8_t[raw_length];
cairo_surface_t *surface = cairo_image_surface_create_for_data((unsigned char *)raw,
CAIRO_FORMAT_ARGB32,
width,
height,
stride);
cairo_t *render_context = cairo_create(surface);
vec4f foreground = m_style->foreground();
cairo_set_source_rgba (render_context, foreground[0], foreground[1], foreground[2], foreground[3]); // TODO Move to setup?
pango_cairo_show_layout (render_context, m_pangoLayout);
cairo_surface_destroy(surface);
cairo_destroy (render_context);
for (unsigned i = 0; i < height; ++i) {
const uint8_t *srcBeg = raw + (stride * (height - i - 1));
const uint8_t *srcEnd = srcBeg + stride;
std::copy(srcBeg, srcEnd, flippedRaw + stride * i);
}
BufferPtr buffer = BufferPtr(new Buffer(flippedRaw, raw_length));
delete [] raw;
delete [] flippedRaw;
return buffer;
}
virtual unsigned int width() {
int width;
int height;
setupContext(&width, &height);
return width;
}
virtual unsigned int height() {
int width;
int height;
setupContext(&width, &height);
return height;
}
virtual CONSTANTS::PixelFormat format() { return CONSTANTS::BGRAFormat; }
private:
void setupContext(int *w, int *h) {
//pango_layout_set_text (layout, text, -1);
pango_layout_set_markup(m_pangoLayout, m_text.c_str(), -1);
/* Load the font */
PangoFontDescription *desc = pango_font_description_from_string (m_style->font().c_str());
pango_layout_set_font_description (m_pangoLayout, desc);
pango_font_description_free (desc);
int layout_width = m_style->maxWidth();
int layout_height = m_style->maxHeight();
if (layout_width > 0) {
pango_layout_set_width(m_pangoLayout, layout_width * PANGO_SCALE);
}
if (layout_height > 0) {
pango_layout_set_height(m_pangoLayout, layout_height * PANGO_SCALE);
}
switch (m_style->align()) {
case CONSTANTS::TextAlign::Left:
pango_layout_set_alignment (m_pangoLayout, PANGO_ALIGN_LEFT);
break;
case CONSTANTS::TextAlign::Right:
pango_layout_set_alignment (m_pangoLayout, PANGO_ALIGN_RIGHT);
break;
case CONSTANTS::TextAlign::Center:
pango_layout_set_alignment (m_pangoLayout, PANGO_ALIGN_CENTER);
break;
}
int content_width = 0;
int content_height = 0;
pango_layout_get_pixel_size(m_pangoLayout, &content_width, &content_height);
if (layout_width < 0) {
layout_width = content_width;
}
if (layout_height < 0) {
layout_height = content_height;
}
*w = layout_width;
*h = layout_height;
}
cairo_t *m_cairoContext;
PangoLayout *m_pangoLayout;
};
}