diff options
author | adnano <me@adnano.co> | 2022-01-16 08:32:58 -0500 |
---|---|---|
committer | adnano <me@adnano.co> | 2022-01-16 08:32:58 -0500 |
commit | 2f1c189d535c2d8dce74ec44c670305f00e4a30c (patch) | |
tree | 79811ea0ebe16d28b4bd7bfe2cff1db1977919db /pango.h | |
download | wmenu-2f1c189d535c2d8dce74ec44c670305f00e4a30c.tar.gz |
Initial commit
Diffstat (limited to 'pango.h')
-rw-r--r-- | pango.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +#ifndef DMENU_PANGO_H +#define DMENU_PANGO_H +#include <stdarg.h> +#include <stdbool.h> +#include <stdint.h> +#include <cairo/cairo.h> +#include <pango/pangocairo.h> + +int get_font_height(const char *font); +PangoLayout *get_pango_layout(cairo_t *cairo, const char *font, + const char *text, double scale); +void get_text_size(cairo_t *cairo, const char *font, int *width, int *height, + int *baseline, double scale, const char *fmt, ...); +int text_width(cairo_t *cairo, const char *font, const char *text); +void pango_printf(cairo_t *cairo, const char *font, double scale, + const char *fmt, ...); + +#endif |