2022-06-13 21:33:32 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
#define _POSIX_C_SOURCE 200809L
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <wayland-server-core.h>
|
|
|
|
|
#include <wlr/util/log.h>
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "common/font.h"
|
2022-09-16 18:41:02 -04:00
|
|
|
#include "common/mem.h"
|
2022-06-13 21:33:32 +02:00
|
|
|
#include "common/scaled_scene_buffer.h"
|
|
|
|
|
#include "common/scaled_font_buffer.h"
|
|
|
|
|
|
|
|
|
|
static struct lab_data_buffer *
|
|
|
|
|
_create_buffer(struct scaled_scene_buffer *scaled_buffer, double scale)
|
|
|
|
|
{
|
|
|
|
|
struct lab_data_buffer *buffer;
|
|
|
|
|
struct scaled_font_buffer *self = scaled_buffer->data;
|
|
|
|
|
|
|
|
|
|
/* Buffer gets free'd automatically along the backing wlr_buffer */
|
|
|
|
|
font_buffer_create(&buffer, self->max_width, self->text,
|
2022-08-02 22:00:24 +01:00
|
|
|
&self->font, self->color, self->arrow, scale);
|
2022-06-13 21:33:32 +02:00
|
|
|
|
|
|
|
|
self->width = buffer ? buffer->unscaled_width : 0;
|
|
|
|
|
self->height = buffer ? buffer->unscaled_height : 0;
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
_destroy(struct scaled_scene_buffer *scaled_buffer)
|
|
|
|
|
{
|
|
|
|
|
struct scaled_font_buffer *self = scaled_buffer->data;
|
2022-08-02 22:01:51 +01:00
|
|
|
zfree(self->text);
|
|
|
|
|
zfree(self->font.name);
|
2022-08-02 22:00:24 +01:00
|
|
|
zfree(self->arrow);
|
2022-06-13 21:33:32 +02:00
|
|
|
zfree(scaled_buffer->data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct scaled_scene_buffer_impl impl = {
|
|
|
|
|
.create_buffer = _create_buffer,
|
|
|
|
|
.destroy = _destroy
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Public API */
|
|
|
|
|
struct scaled_font_buffer *
|
|
|
|
|
scaled_font_buffer_create(struct wlr_scene_tree *parent)
|
|
|
|
|
{
|
|
|
|
|
assert(parent);
|
2022-09-18 15:22:26 -04:00
|
|
|
struct scaled_font_buffer *self = znew(*self);
|
2022-11-03 19:58:21 +00:00
|
|
|
struct scaled_scene_buffer *scaled_buffer =
|
|
|
|
|
scaled_scene_buffer_create(parent, &impl);
|
2022-06-13 21:33:32 +02:00
|
|
|
if (!scaled_buffer) {
|
|
|
|
|
free(self);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scaled_buffer->data = self;
|
|
|
|
|
self->scaled_buffer = scaled_buffer;
|
|
|
|
|
self->scene_buffer = scaled_buffer->scene_buffer;
|
|
|
|
|
return self;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2022-08-02 22:00:24 +01:00
|
|
|
scaled_font_buffer_update(struct scaled_font_buffer *self, const char *text,
|
|
|
|
|
int max_width, struct font *font, float *color,
|
|
|
|
|
const char *arrow)
|
2022-06-13 21:33:32 +02:00
|
|
|
{
|
|
|
|
|
assert(self);
|
|
|
|
|
assert(text);
|
|
|
|
|
assert(font);
|
|
|
|
|
assert(color);
|
|
|
|
|
|
|
|
|
|
/* Clean up old internal state */
|
2022-08-02 22:01:51 +01:00
|
|
|
zfree(self->text);
|
|
|
|
|
zfree(self->font.name);
|
2022-08-02 22:00:24 +01:00
|
|
|
zfree(self->arrow);
|
2022-06-13 21:33:32 +02:00
|
|
|
|
|
|
|
|
/* Update internal state */
|
2022-09-16 18:41:02 -04:00
|
|
|
self->text = xstrdup(text);
|
2022-06-13 21:33:32 +02:00
|
|
|
self->max_width = max_width;
|
|
|
|
|
if (font->name) {
|
2022-09-16 18:41:02 -04:00
|
|
|
self->font.name = xstrdup(font->name);
|
2022-06-13 21:33:32 +02:00
|
|
|
}
|
|
|
|
|
self->font.size = font->size;
|
2022-09-15 10:53:49 -04:00
|
|
|
self->font.slant = font->slant;
|
|
|
|
|
self->font.weight = font->weight;
|
2022-06-13 21:33:32 +02:00
|
|
|
memcpy(self->color, color, sizeof(self->color));
|
2022-09-16 18:41:02 -04:00
|
|
|
self->arrow = arrow ? xstrdup(arrow) : NULL;
|
2022-06-13 21:33:32 +02:00
|
|
|
|
|
|
|
|
/* Invalidate cache and force a new render */
|
|
|
|
|
scaled_scene_buffer_invalidate_cache(self->scaled_buffer);
|
|
|
|
|
}
|
2022-12-05 14:38:16 +01:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
scaled_font_buffer_set_max_width(struct scaled_font_buffer *self, int max_width)
|
|
|
|
|
{
|
|
|
|
|
self->max_width = max_width;
|
|
|
|
|
scaled_scene_buffer_invalidate_cache(self->scaled_buffer);
|
|
|
|
|
}
|