Use debug.h instead of kdebug.h.
[bertos.git] / mware / text.h
1 /*!
2  * \file
3  * Copyright 1999 Bernardo Innocenti <bernie@develer.com>
4  * Copyright 2003,2004 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See devlib/README for information.
6  *
7  * \version $Id$
8  *
9  * \author Bernardo Innocenti <bernie@develer.com>
10  * \author Stefano Fedrigo <aleph@develer.com>
11  *
12  * \brief Text graphic routines
13  */
14
15 /*#*
16  *#* $Log$
17  *#* Revision 1.5  2004/09/06 21:51:26  bernie
18  *#* Extend interface to allow any algorithmic style.
19  *#*
20  *#* Revision 1.4  2004/08/25 14:12:09  rasky
21  *#* Aggiornato il comment block dei log RCS
22  *#*
23  *#* Revision 1.3  2004/08/05 18:46:44  bernie
24  *#* Documentation improvements.
25  *#*
26  *#* Revision 1.2  2004/06/03 11:27:09  bernie
27  *#* Add dual-license information.
28  *#*
29  *#*/
30
31 #ifndef TEXT_H
32 #define TEXT_H
33
34 #include "compiler.h"
35 #include <stdarg.h>
36
37 /*!
38  * \name Style flags
39  * \see text_style()
40  * \{
41  */
42 #define STYLEF_BOLD        BV(0)
43 #define STYLEF_ITALIC      BV(1)
44 #define STYLEF_UNDERLINE   BV(2)
45 #define STYLEF_INVERT      BV(3)
46 #define STYLEF_EXPANDED    BV(4)
47 #define STYLEF_CONDENSED   BV(5)
48 #define STYLEF_STRIKEOUT   BV(6)  /*<! Not implemented */
49
50 #define STYLEF_MASK \
51         (STYLEF_BOLD | STYLEF_ITALIC | STYLEF_UNDERLINE | \
52         STYLEF_EXPANDED | STYLEF_CONDENSED | STYLEF_INVERT)
53 /*\}*/
54
55 /*!
56  * \name Formatting flags for text rendering
57  * \see text_xprintf()
58  * \{
59  */
60 #define TEXT_NORMAL   0       /*!< Normal mode */
61 #define TEXT_FILL     BV(7)   /*!< Fill rest of line with spaces */
62 #define TEXT_CENTER   BV(8)   /*!< Center string in line */
63 #define TEXT_RIGHT    BV(9)   /*!< Right aligned */
64 /*\}*/
65
66 /*! Escape sequences codes */
67 #define ANSI_ESC_CLEARSCREEN 'c'
68
69
70
71 /* Fwd decl */
72 struct Bitmap;
73
74 void text_moveto(struct Bitmap *bm, int row, int col);
75 void text_setcoord(struct Bitmap *bm, int x, int y);
76 int text_putchar(char c, struct Bitmap *bm);
77 int text_puts(const char *str, struct Bitmap *bm);
78 int text_vprintf(struct Bitmap *bm, const char *fmt, va_list ap);
79 int text_printf(struct Bitmap *bm, const char *fmt, ...) FORMAT(__printf__, 2, 3);
80 int text_xprintf(struct Bitmap *bm, uint8_t row, uint8_t col, uint16_t mode, const char *fmt, ...) FORMAT(__printf__, 5, 6);
81 uint8_t text_style(uint8_t flags, uint8_t mask);
82 void text_clear(struct Bitmap *bm);
83 void text_clearLine(struct Bitmap *bm, int line);
84
85 int text_puts_P(const char * PROGMEM str, struct Bitmap *bm);
86 int text_vprintf_P(struct Bitmap *bm, const char * PROGMEM fmt, va_list ap);
87 int text_printf_P(struct Bitmap *bm, const char * PROGMEM fmt, ...) FORMAT(__printf__, 2, 3);
88 int text_xprintf_P(struct Bitmap *bm, uint8_t row, uint8_t col, uint16_t mode, const char * PROGMEM fmt, ...) FORMAT(__printf__, 5, 6);
89
90 #endif /* TEXT_H */