summaryrefslogtreecommitdiff
path: root/render/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/font.h')
-rw-r--r--render/font.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/render/font.h b/render/font.h
index acfd7c727..9a80af329 100644
--- a/render/font.h
+++ b/render/font.h
@@ -35,23 +35,25 @@
#include <stdbool.h>
#include <stddef.h>
-
-struct css_style;
-
+#include "css/css.h"
+#include "desktop/plot_style.h"
struct font_functions
{
- bool (*font_width)(const struct css_style *style,
+ bool (*font_width)(const plot_font_style_t *fstyle,
const char *string, size_t length,
int *width);
- bool (*font_position_in_string)(const struct css_style *style,
+ bool (*font_position_in_string)(const plot_font_style_t *fstyle,
const char *string, size_t length,
int x, size_t *char_offset, int *actual_x);
- bool (*font_split)(const struct css_style *style,
+ bool (*font_split)(const plot_font_style_t *fstyle,
const char *string, size_t length,
int x, size_t *char_offset, int *actual_x);
};
extern const struct font_functions nsfont;
+void font_plot_style_from_css(const struct css_style *css,
+ plot_font_style_t *fstyle);
+
#endif