X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Ftext.h;h=cfd8086f381fda515f64644e8c95f0e1826c37f5;hb=HEAD;hp=59f65ea03e92fcc49d4918bc8795710e7452aff1;hpb=efbdba7e2814415234ef47bd10ff888559ea90af;p=bertos.git diff --git a/gfx/text.h b/gfx/text.h deleted file mode 100644 index 59f65ea0..00000000 --- a/gfx/text.h +++ /dev/null @@ -1,118 +0,0 @@ -/** - * \file - * - * - * \brief Text graphic routines (interface) - * - * \author Bernardo Innocenti - * \author Stefano Fedrigo - * \version $Id$ - */ - -#ifndef GFX_TEXT_H -#define GFX_TEXT_H - -#include -#include /* BV() */ -#include /* CPU_HARVARD */ -#include /* coord_t */ - -#include - -/** - * \name Style flags - * \see text_style() - * \{ - */ -#define STYLEF_BOLD BV(0) -#define STYLEF_ITALIC BV(1) -#define STYLEF_UNDERLINE BV(2) -#define STYLEF_INVERT BV(3) -#define STYLEF_EXPANDED BV(4) -#define STYLEF_CONDENSED BV(5) -#define STYLEF_STRIKEOUT BV(6) /* -int text_puts_P(const char * PROGMEM str, struct Bitmap *bm); -int text_vprintf_P(struct Bitmap *bm, const char * PROGMEM fmt, va_list ap); -int text_printf_P(struct Bitmap *bm, const char * PROGMEM fmt, ...) FORMAT(__printf__, 2, 3); -int text_xprintf_P(struct Bitmap *bm, uint8_t row, uint8_t col, uint16_t mode, const char * PROGMEM fmt, ...) FORMAT(__printf__, 5, 6); -int text_vwidthf_P(struct Bitmap *bm, const char * PROGMEM fmt, va_list ap); -int text_widthf_P(struct Bitmap *bm, const char * PROGMEM fmt, ...); -#endif /* CPU_HARVARD */ - -#endif /* GFX_TEXT_H */