diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-04-12 20:19:54 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-04-12 20:19:54 -0400 |
| commit | e62f2f43e2b428a4066fc43e5d2739940f7aa5e9 (patch) | |
| tree | c653c6d525b471914c01a9d7ae543f521b6138ed /include/pango.h | |
| parent | 816bb9d54d2e9e3cbf5e14d7237dc8c8737d6b82 (diff) | |
| parent | 0cb0c52663a8e27f632988da0f91e4cfb6afddf8 (diff) | |
Merge branch 'wlroots'
Diffstat (limited to 'include/pango.h')
| -rw-r--r-- | include/pango.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/pango.h b/include/pango.h new file mode 100644 index 00000000..f6325f28 --- /dev/null +++ b/include/pango.h @@ -0,0 +1,16 @@ +#ifndef _SWAY_PANGO_H +#define _SWAY_PANGO_H +#include <stdarg.h> +#include <stdbool.h> +#include <stdint.h> +#include <cairo/cairo.h> +#include <pango/pangocairo.h> + +PangoLayout *get_pango_layout(cairo_t *cairo, const char *font, + const char *text, int32_t scale, bool markup); +void get_text_size(cairo_t *cairo, const char *font, int *width, int *height, + int32_t scale, bool markup, const char *fmt, ...); +void pango_printf(cairo_t *cairo, const char *font, + int32_t scale, bool markup, const char *fmt, ...); + +#endif |
