2021-05-07 20:57:51 +00:00
|
|
|
#include <cairo.h>
|
2018-03-29 03:04:20 +00:00
|
|
|
#include <pango/pangocairo.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2021-05-07 20:57:51 +00:00
|
|
|
#include "cairo_util.h"
|
2018-04-02 15:53:56 +00:00
|
|
|
#include "log.h"
|
2018-09-21 11:27:36 +00:00
|
|
|
#include "stringop.h"
|
2018-03-29 03:04:20 +00:00
|
|
|
|
2018-09-21 11:27:36 +00:00
|
|
|
size_t escape_markup_text(const char *src, char *dest) {
|
|
|
|
size_t length = 0;
|
|
|
|
if (dest) {
|
|
|
|
dest[0] = '\0';
|
|
|
|
}
|
2018-05-07 16:30:45 +00:00
|
|
|
|
|
|
|
while (src[0]) {
|
|
|
|
switch (src[0]) {
|
|
|
|
case '&':
|
|
|
|
length += 5;
|
2018-09-21 11:27:36 +00:00
|
|
|
lenient_strcat(dest, "&");
|
2018-05-07 16:30:45 +00:00
|
|
|
break;
|
|
|
|
case '<':
|
|
|
|
length += 4;
|
2018-09-21 11:27:36 +00:00
|
|
|
lenient_strcat(dest, "<");
|
2018-05-07 16:30:45 +00:00
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
length += 4;
|
2018-09-21 11:27:36 +00:00
|
|
|
lenient_strcat(dest, ">");
|
2018-05-07 16:30:45 +00:00
|
|
|
break;
|
|
|
|
case '\'':
|
|
|
|
length += 6;
|
2018-09-21 11:27:36 +00:00
|
|
|
lenient_strcat(dest, "'");
|
2018-05-07 16:30:45 +00:00
|
|
|
break;
|
|
|
|
case '"':
|
|
|
|
length += 6;
|
2018-09-21 11:27:36 +00:00
|
|
|
lenient_strcat(dest, """);
|
2018-05-07 16:30:45 +00:00
|
|
|
break;
|
|
|
|
default:
|
2018-09-21 11:27:36 +00:00
|
|
|
if (dest) {
|
|
|
|
dest[length] = *src;
|
|
|
|
dest[length + 1] = '\0';
|
2018-05-07 16:30:45 +00:00
|
|
|
}
|
2018-09-21 11:27:36 +00:00
|
|
|
length += 1;
|
2018-05-07 16:30:45 +00:00
|
|
|
}
|
|
|
|
src++;
|
|
|
|
}
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2022-07-01 10:23:04 +00:00
|
|
|
PangoLayout *get_pango_layout(cairo_t *cairo, const PangoFontDescription *desc,
|
2018-05-16 16:01:04 +00:00
|
|
|
const char *text, double scale, bool markup) {
|
2018-03-29 03:04:20 +00:00
|
|
|
PangoLayout *layout = pango_cairo_create_layout(cairo);
|
2024-07-10 22:33:19 +00:00
|
|
|
pango_context_set_round_glyph_positions(pango_layout_get_context(layout), false);
|
|
|
|
|
2018-03-29 03:04:20 +00:00
|
|
|
PangoAttrList *attrs;
|
|
|
|
if (markup) {
|
2018-09-22 08:40:19 +00:00
|
|
|
char *buf;
|
2018-04-02 15:53:56 +00:00
|
|
|
GError *error = NULL;
|
2018-09-22 08:40:19 +00:00
|
|
|
if (pango_parse_markup(text, -1, 0, &attrs, &buf, NULL, &error)) {
|
|
|
|
pango_layout_set_text(layout, buf, -1);
|
|
|
|
free(buf);
|
2018-05-13 15:52:02 +00:00
|
|
|
} else {
|
2019-01-20 18:51:12 +00:00
|
|
|
sway_log(SWAY_ERROR, "pango_parse_markup '%s' -> error %s", text,
|
2018-05-07 16:30:45 +00:00
|
|
|
error->message);
|
2018-05-13 15:52:02 +00:00
|
|
|
g_error_free(error);
|
|
|
|
markup = false; // fallback to plain text
|
2018-04-02 15:53:56 +00:00
|
|
|
}
|
2018-05-13 15:52:02 +00:00
|
|
|
}
|
|
|
|
if (!markup) {
|
2018-03-29 03:04:20 +00:00
|
|
|
attrs = pango_attr_list_new();
|
|
|
|
pango_layout_set_text(layout, text, -1);
|
|
|
|
}
|
2018-05-13 15:52:02 +00:00
|
|
|
|
2018-03-29 03:04:20 +00:00
|
|
|
pango_attr_list_insert(attrs, pango_attr_scale_new(scale));
|
|
|
|
pango_layout_set_font_description(layout, desc);
|
|
|
|
pango_layout_set_single_paragraph_mode(layout, 1);
|
|
|
|
pango_layout_set_attributes(layout, attrs);
|
|
|
|
pango_attr_list_unref(attrs);
|
|
|
|
return layout;
|
|
|
|
}
|
|
|
|
|
2022-07-01 10:23:04 +00:00
|
|
|
void get_text_size(cairo_t *cairo, const PangoFontDescription *desc, int *width, int *height,
|
2018-09-08 06:19:31 +00:00
|
|
|
int *baseline, double scale, bool markup, const char *fmt, ...) {
|
2018-03-29 03:04:20 +00:00
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
2023-02-28 15:43:05 +00:00
|
|
|
char *buf = vformat_str(fmt, args);
|
2019-01-20 14:03:30 +00:00
|
|
|
va_end(args);
|
|
|
|
if (buf == NULL) {
|
|
|
|
return;
|
2018-03-29 03:04:20 +00:00
|
|
|
}
|
|
|
|
|
2022-07-01 10:23:04 +00:00
|
|
|
PangoLayout *layout = get_pango_layout(cairo, desc, buf, scale, markup);
|
2018-03-29 03:04:20 +00:00
|
|
|
pango_cairo_update_layout(cairo, layout);
|
|
|
|
pango_layout_get_pixel_size(layout, width, height);
|
2018-09-08 06:19:31 +00:00
|
|
|
if (baseline) {
|
|
|
|
*baseline = pango_layout_get_baseline(layout) / PANGO_SCALE;
|
|
|
|
}
|
2018-03-29 03:04:20 +00:00
|
|
|
g_object_unref(layout);
|
2023-02-28 15:43:05 +00:00
|
|
|
|
2019-01-20 14:03:30 +00:00
|
|
|
free(buf);
|
2018-03-29 03:04:20 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 19:38:24 +00:00
|
|
|
void get_text_metrics(const PangoFontDescription *description, int *height, int *baseline) {
|
2021-08-18 21:27:01 +00:00
|
|
|
cairo_t *cairo = cairo_create(NULL);
|
|
|
|
PangoContext *pango = pango_cairo_create_context(cairo);
|
2024-07-10 22:33:19 +00:00
|
|
|
pango_context_set_round_glyph_positions(pango, false);
|
2021-08-18 21:27:01 +00:00
|
|
|
// When passing NULL as a language, pango uses the current locale.
|
2021-09-17 15:32:29 +00:00
|
|
|
PangoFontMetrics *metrics = pango_context_get_metrics(pango, description, NULL);
|
2021-08-18 21:27:01 +00:00
|
|
|
|
|
|
|
*baseline = pango_font_metrics_get_ascent(metrics) / PANGO_SCALE;
|
|
|
|
*height = *baseline + pango_font_metrics_get_descent(metrics) / PANGO_SCALE;
|
|
|
|
|
|
|
|
pango_font_metrics_unref(metrics);
|
|
|
|
g_object_unref(pango);
|
|
|
|
cairo_destroy(cairo);
|
|
|
|
}
|
|
|
|
|
2022-07-01 10:23:04 +00:00
|
|
|
void render_text(cairo_t *cairo, const PangoFontDescription *desc,
|
2018-05-16 16:01:04 +00:00
|
|
|
double scale, bool markup, const char *fmt, ...) {
|
2018-03-29 03:04:20 +00:00
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
2023-02-28 15:43:05 +00:00
|
|
|
char *buf = vformat_str(fmt, args);
|
2019-01-20 14:03:30 +00:00
|
|
|
va_end(args);
|
|
|
|
if (buf == NULL) {
|
|
|
|
return;
|
2018-03-29 03:04:20 +00:00
|
|
|
}
|
|
|
|
|
2022-07-01 10:23:04 +00:00
|
|
|
PangoLayout *layout = get_pango_layout(cairo, desc, buf, scale, markup);
|
2018-09-22 22:33:01 +00:00
|
|
|
cairo_font_options_t *fo = cairo_font_options_create();
|
|
|
|
cairo_get_font_options(cairo, fo);
|
|
|
|
pango_cairo_context_set_font_options(pango_layout_get_context(layout), fo);
|
|
|
|
cairo_font_options_destroy(fo);
|
2018-03-29 03:04:20 +00:00
|
|
|
pango_cairo_update_layout(cairo, layout);
|
|
|
|
pango_cairo_show_layout(cairo, layout);
|
|
|
|
g_object_unref(layout);
|
2023-02-28 15:43:05 +00:00
|
|
|
|
2019-01-20 14:03:30 +00:00
|
|
|
free(buf);
|
2018-03-29 03:04:20 +00:00
|
|
|
}
|