2015-11-29 20:27:28 +00:00
|
|
|
#ifndef _SWAY_CLIENT_PANGO_H
|
|
|
|
#define _SWAY_CLIENT_PANGO_H
|
|
|
|
|
2016-03-28 20:22:46 +00:00
|
|
|
#include <cairo/cairo.h>
|
|
|
|
#include <pango/pangocairo.h>
|
2015-11-29 20:27:28 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2016-03-28 20:22:46 +00:00
|
|
|
PangoLayout *get_pango_layout(cairo_t *cairo, const char *font, const char *text);
|
|
|
|
void get_text_size(cairo_t *cairo, const char *font, int *width, int *height, const char *fmt, ...);
|
|
|
|
void pango_printf(cairo_t *cairo, const char *font, const char *fmt, ...);
|
2015-11-29 20:27:28 +00:00
|
|
|
|
|
|
|
#endif
|