labwc/src/common/font.c

181 lines
5.2 KiB
C
Raw Normal View History

2021-11-13 21:56:53 +00:00
// SPDX-License-Identifier: GPL-2.0-only
#include <cairo.h>
#include <drm_fourcc.h>
#include <pango/pangocairo.h>
#include <wlr/render/wlr_renderer.h>
#include <wlr/util/box.h>
#include <wlr/util/log.h>
#include "common/font.h"
#include "common/graphic-helpers.h"
2024-01-19 19:06:07 +00:00
#include "common/string-helpers.h"
#include "labwc.h"
#include "buffer.h"
PangoFontDescription *
font_to_pango_desc(struct font *font)
{
PangoFontDescription *desc = pango_font_description_new();
pango_font_description_set_family(desc, font->name);
pango_font_description_set_size(desc, font->size * PANGO_SCALE);
if (font->slant == FONT_SLANT_ITALIC) {
pango_font_description_set_style(desc, PANGO_STYLE_ITALIC);
}
if (font->slant == FONT_SLANT_OBLIQUE) {
pango_font_description_set_style(desc, PANGO_STYLE_OBLIQUE);
}
if (font->weight == FONT_WEIGHT_BOLD) {
pango_font_description_set_weight(desc, PANGO_WEIGHT_BOLD);
}
return desc;
}
static PangoRectangle
font_extents(struct font *font, const char *string)
{
2022-08-02 22:00:24 +01:00
PangoRectangle rect = { 0 };
if (!string) {
return rect;
}
cairo_surface_t *surface;
cairo_t *c;
PangoLayout *layout;
surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 1, 1);
c = cairo_create(surface);
layout = pango_cairo_create_layout(c);
pango_context_set_round_glyph_positions(pango_layout_get_context(layout), false);
PangoFontDescription *desc = font_to_pango_desc(font);
pango_layout_set_font_description(layout, desc);
pango_layout_set_text(layout, string, -1);
pango_layout_set_single_paragraph_mode(layout, TRUE);
pango_layout_set_width(layout, -1);
pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_MIDDLE);
pango_layout_get_extents(layout, NULL, &rect);
pango_extents_to_pixels(&rect, NULL);
/* we put a 2 px edge on each side - because Openbox does it :) */
2023-08-17 18:59:29 +02:00
/* TODO: remove the 4 pixel addition and always do the padding by the caller */
rect.width += 4;
2020-08-14 17:57:18 +01:00
cairo_destroy(c);
cairo_surface_destroy(surface);
pango_font_description_free(desc);
2020-08-14 17:57:18 +01:00
g_object_unref(layout);
return rect;
}
int
font_height(struct font *font)
{
PangoRectangle rectangle = font_extents(font, "abcdefg");
return rectangle.height;
}
2022-06-15 01:16:32 +02:00
int
font_width(struct font *font, const char *string)
{
PangoRectangle rectangle = font_extents(font, string);
return rectangle.width;
}
void
font_buffer_create(struct lab_data_buffer **buffer, int max_width,
const char *text, struct font *font, const float *color,
const float *bg_color, const char *arrow, double scale)
{
2022-08-02 22:00:24 +01:00
/* Allow a minimum of one pixel each for text and arrow */
if (max_width < 2) {
max_width = 2;
}
2024-01-19 19:06:07 +00:00
if (string_null_or_empty(text)) {
return;
}
2022-08-02 22:00:24 +01:00
PangoRectangle text_extents = font_extents(font, text);
PangoRectangle arrow_extents = font_extents(font, arrow);
if (arrow) {
if (arrow_extents.width >= max_width - 1) {
/* It would be weird to get here, but just in case */
arrow_extents.width = max_width - 1;
text_extents.width = 1;
} else {
text_extents.width = max_width - arrow_extents.width;
}
} else if (text_extents.width > max_width) {
text_extents.width = max_width;
}
2022-08-02 22:00:24 +01:00
*buffer = buffer_create_cairo(text_extents.width + arrow_extents.width,
text_extents.height, scale);
if (!*buffer) {
2022-08-02 22:00:24 +01:00
wlr_log(WLR_ERROR, "Failed to create font buffer");
return;
}
cairo_t *cairo = (*buffer)->cairo;
cairo_surface_t *surf = cairo_get_target(cairo);
/*
* Fill with the background color first IF the background color
* is opaque. This is necessary for subpixel rendering to work
* properly (it does not work on top of transparency).
*
* However, if the background color is not opaque, leave the
* buffer unfilled (completely transparent) since the background
* is already rendered by the scene element underneath. In this
* case we have to disable subpixel rendering.
*
* Note: the 0.999 cutoff was chosen to be greater than 254/255
* (about 0.996) but leave some margin for rounding errors.
*/
bool opaque_bg = (bg_color[3] > 0.999f);
if (opaque_bg) {
set_cairo_color(cairo, bg_color);
cairo_paint(cairo);
}
set_cairo_color(cairo, color);
cairo_move_to(cairo, 0, 0);
PangoLayout *layout = pango_cairo_create_layout(cairo);
pango_context_set_round_glyph_positions(pango_layout_get_context(layout), false);
2022-08-02 22:00:24 +01:00
pango_layout_set_width(layout, text_extents.width * PANGO_SCALE);
pango_layout_set_text(layout, text, -1);
pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_END);
if (!opaque_bg) {
/* disable subpixel rendering */
cairo_font_options_t *opts = cairo_font_options_create();
cairo_font_options_set_antialias(opts, CAIRO_ANTIALIAS_GRAY);
PangoContext *ctx = pango_layout_get_context(layout);
pango_cairo_context_set_font_options(ctx, opts);
cairo_font_options_destroy(opts);
}
PangoFontDescription *desc = font_to_pango_desc(font);
pango_layout_set_font_description(layout, desc);
pango_font_description_free(desc);
pango_cairo_update_layout(cairo, layout);
pango_cairo_show_layout(cairo, layout);
2022-08-02 22:00:24 +01:00
if (arrow) {
cairo_move_to(cairo, text_extents.width, 0);
pango_layout_set_width(layout, arrow_extents.width * PANGO_SCALE);
pango_layout_set_text(layout, arrow, -1);
pango_cairo_show_layout(cairo, layout);
}
g_object_unref(layout);
cairo_surface_flush(surf);
}
void
font_finish(void)
{
pango_cairo_font_map_set_default(NULL);
}