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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
#include <cairo/cairo.h>
#include <math.h>
#include <unistd.h>
#include "entry.h"
#include "log.h"
#include "nelem.h"
#undef MAX
#define MAX(a, b) ((a) > (b) ? (a) : (b))
static void rounded_rectangle(cairo_t *cr, uint32_t width, uint32_t height, uint32_t r)
{
cairo_new_path(cr);
/* Top-left */
cairo_arc(cr, r, r, r, -M_PI, -M_PI_2);
/* Top-right */
cairo_arc(cr, width - r, r, r, -M_PI_2, 0);
/* Bottom-right */
cairo_arc(cr, width - r, height - r, r, 0, M_PI_2);
/* Bottom-left */
cairo_arc(cr, r, height - r, r, M_PI_2, M_PI);
cairo_close_path(cr);
}
static void apply_text_theme_fallback(struct text_theme *theme, const struct text_theme *fallback)
{
if (!theme->foreground_specified) {
theme->foreground_color = fallback->foreground_color;
}
if (!theme->background_specified) {
theme->background_color = fallback->background_color;
}
if (!theme->padding_specified) {
theme->padding = fallback->padding;
}
if (!theme->radius_specified) {
theme->background_corner_radius = fallback->background_corner_radius;
}
}
void entry_init(struct entry *entry, uint8_t *restrict buffer, uint32_t width, uint32_t height, uint32_t scale)
{
entry->image.width = width;
entry->image.height = height;
/*
* Create the cairo surfaces and contexts we'll be using.
*
* In order to avoid an unnecessary copy when passing the image to the
* Wayland server, we accept a pointer to the mmap-ed file that our
* Wayland buffers are created from. This is assumed to be
* (width * height * (sizeof(uint32_t) == 4) * 2) bytes,
* to allow for double buffering.
*/
cairo_surface_t *surface = cairo_image_surface_create_for_data(
buffer,
CAIRO_FORMAT_ARGB32,
width,
height,
width * sizeof(uint32_t)
);
cairo_t *cr = cairo_create(surface);
entry->cairo[0].surface = surface;
entry->cairo[0].cr = cr;
entry->cairo[1].surface = cairo_image_surface_create_for_data(
&buffer[width * height * sizeof(uint32_t)],
CAIRO_FORMAT_ARGB32,
width,
height,
width * sizeof(uint32_t)
);
entry->cairo[1].cr = cairo_create(entry->cairo[1].surface);
log_debug("Drawing window.\n");
/* Draw the background */
struct color color = entry->background_color;
cairo_set_source_rgba(cr, color.r, color.g, color.b, color.a);
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
cairo_paint(cr);
/* Draw the border with outlines */
cairo_set_line_width(cr, 4 * entry->outline_width + 2 * entry->border_width);
rounded_rectangle(cr, width, height, entry->corner_radius);
color = entry->outline_color;
cairo_set_source_rgba(cr, color.r, color.g, color.b, color.a);
cairo_stroke_preserve(cr);
color = entry->border_color;
cairo_set_source_rgba(cr, color.r, color.g, color.b, color.a);
cairo_set_line_width(cr, 2 * entry->outline_width + 2 * entry->border_width);
cairo_stroke_preserve(cr);
color = entry->outline_color;
cairo_set_source_rgba(cr, color.r, color.g, color.b, color.a);
cairo_set_line_width(cr, 2 * entry->outline_width);
cairo_stroke_preserve(cr);
/* Clear the overdrawn bits outside of the rounded corners */
cairo_rectangle(cr, 0, 0, width, height);
cairo_set_source_rgba(cr, 0, 0, 0, 0.5);
cairo_save(cr);
cairo_set_fill_rule(cr, CAIRO_FILL_RULE_EVEN_ODD);
cairo_set_operator(cr, CAIRO_OPERATOR_CLEAR);
cairo_fill(cr);
cairo_restore(cr);
cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
/* Move and clip following draws to be within this outline */
double dx = 2.0 * entry->outline_width + entry->border_width;
cairo_translate(cr, dx, dx);
width -= 2 * dx;
height -= 2 * dx;
/* If we're clipping to the padding, account for that as well here */
if (entry->clip_to_padding) {
cairo_translate(cr, entry->padding_left, entry->padding_top);
width -= entry->padding_left + entry->padding_right;
height -= entry->padding_top + entry->padding_bottom;
}
/* Account for rounded corners */
double inner_radius = (double)entry->corner_radius - dx;
inner_radius = MAX(inner_radius, 0);
dx = ceil(inner_radius * (1.0 - 1.0 / M_SQRT2));
cairo_translate(cr, dx, dx);
width -= 2 * dx;
height -= 2 * dx;
cairo_rectangle(cr, 0, 0, width, height);
cairo_clip(cr);
/* Store the clip rectangle width and height. */
cairo_matrix_t mat;
cairo_get_matrix(cr, &mat);
entry->clip_x = mat.x0;
entry->clip_y = mat.y0;
entry->clip_width = width;
entry->clip_height = height;
/*
* If we're not clipping to the padding, we didn't account for it
* before.
*/
if (!entry->clip_to_padding) {
cairo_translate(cr, entry->padding_left, entry->padding_top);
}
/* Setup the backend. */
if (access(entry->font_name, R_OK) != 0) {
/*
* We've been given a font name rather than path,
* so fallback to Pango
*/
entry->use_pango = true;
}
if (entry->use_pango) {
entry_backend_pango_init(entry, &width, &height);
} else {
entry_backend_harfbuzz_init(entry, &width, &height);
}
/*
* Before we render any text, ensure all text themes are fully
* specified.
*/
const struct text_theme default_theme = {
.foreground_color = entry->foreground_color,
.background_color = (struct color) { .a = 0 },
.padding = (struct directional) {0},
.background_corner_radius = 0
};
apply_text_theme_fallback(&entry->prompt_theme, &default_theme);
apply_text_theme_fallback(&entry->input_theme, &default_theme);
apply_text_theme_fallback(&entry->placeholder_theme, &default_theme);
apply_text_theme_fallback(&entry->default_result_theme, &default_theme);
apply_text_theme_fallback(&entry->alternate_result_theme, &entry->default_result_theme);
apply_text_theme_fallback(&entry->selection_theme, &default_theme);
/* The cursor is a special case, as it just needs the input colours. */
if (!entry->cursor_theme.color_specified) {
entry->cursor_theme.color = entry->input_theme.foreground_color;
}
if (!entry->cursor_theme.text_color_specified) {
entry->cursor_theme.text_color = entry->background_color;
}
/*
* TODO:
* This is a dirty hack. The proper thing to do is probably just to
* stop scaling everything manually, set cairo_scale and have done
* with. The reason that isn't how things are currently done is due to
* historic scaling behaviour of tofi.
*/
if (!entry->cursor_theme.thickness_specified) {
entry->cursor_theme.thickness *= scale;
}
/*
* Perform an initial render of the text.
* This is done here rather than by calling entry_update to avoid the
* unnecessary cairo_paint() of the background for the first frame,
* which can be slow for large (e.g. fullscreen) windows.
*/
log_debug("Initial text render.\n");
if (entry->use_pango) {
entry_backend_pango_update(entry);
} else {
entry_backend_harfbuzz_update(entry);
}
entry->index = !entry->index;
/*
* To avoid performing all this drawing twice, we take a small
* shortcut. After performing all the drawing as normal on our first
* Cairo context, we can copy over just the important state (the
* transformation matrix and clip rectangle) and perform a memcpy()
* to initialise the other context.
*
* This memcpy can pretty expensive however, and isn't needed until
* we need to draw our second buffer (i.e. when the user presses a
* key). In order to minimise startup time, the memcpy() isn't
* performed here, but instead happens later, just after the first
* frame has been displayed on screen (and while the user is unlikely
* to press another key for the <10ms it takes to memcpy).
*/
cairo_set_matrix(entry->cairo[1].cr, &mat);
cairo_rectangle(entry->cairo[1].cr, 0, 0, width, height);
cairo_clip(entry->cairo[1].cr);
/*
* If we're not clipping to the padding, the transformation matrix
* didn't include it, so account for it here.
*/
if (!entry->clip_to_padding) {
cairo_translate(entry->cairo[1].cr, entry->padding_left, entry->padding_top);
}
}
void entry_destroy(struct entry *entry)
{
if (entry->use_pango) {
entry_backend_pango_destroy(entry);
} else {
entry_backend_harfbuzz_destroy(entry);
}
cairo_destroy(entry->cairo[0].cr);
cairo_destroy(entry->cairo[1].cr);
cairo_surface_destroy(entry->cairo[0].surface);
cairo_surface_destroy(entry->cairo[1].surface);
}
void entry_update(struct entry *entry)
{
log_debug("Start rendering entry.\n");
cairo_t *cr = entry->cairo[entry->index].cr;
/* Clear the image. */
struct color color = entry->background_color;
cairo_set_source_rgba(cr, color.r, color.g, color.b, color.a);
cairo_save(cr);
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
cairo_paint(cr);
cairo_restore(cr);
/* Draw our text. */
if (entry->use_pango) {
entry_backend_pango_update(entry);
} else {
entry_backend_harfbuzz_update(entry);
}
log_debug("Finish rendering entry.\n");
entry->index = !entry->index;
}
|