Specific the directory for all hw and cfg module. Use double quote for cfg and hw...
[bertos.git] / bertos / gfx / charts.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 1999, 2000, 2001, 2003 Bernardo Innocenti <bernie@develer.com>
31  *
32  * -->
33  *
34  * \brief Simple charts on top of mware/gfx routines (interface).
35  *
36  * Configuration:
37  *  - \c CONFIG_CHART_TYPE_X: type for the input dataset of X-coordinates
38  *  - \c CONFIG_CHART_TYPE_Y: type for the input dataset of Y-coordinates
39  *
40  * \version $Id$
41  * \author Bernardo Innocenti <bernie@develer.com>
42  */
43
44 #ifndef GFX_CHARTS_H
45 #define GFX_CHARTS_H
46
47 #include "cfg/cfg_gfx.h" /* CONFIG_ stuff */
48
49 #include <gfx/gfx.h>   /* vcoord_t */
50
51 /**
52  * \name Width/height of the small ticks drawn over the axes
53  * \{
54  */
55 #define TICKS_HEIGHT     2
56 #define TICKS_WIDTH      2
57 /*\}*/
58
59 /**
60  * \name Chart frame dimensions
61  * \{
62  */
63 #define CHART_BORDERTOP       0
64 #define CHART_BORDERBOTTOM    0
65 #define CHART_BORDERLEFT      0
66 #define CHART_BORDERRIGHT     0
67 /*\}*/
68
69 #ifndef CONFIG_CHART_TYPE_X
70 #define CONFIG_CHART_TYPE_X vcoord_t
71 #endif
72 #ifndef CONFIG_CHART_TYPE_Y
73 #define CONFIG_CHART_TYPE_Y vcoord_t
74 #endif
75
76
77 typedef CONFIG_CHART_TYPE_X chart_x_t;
78 typedef CONFIG_CHART_TYPE_Y chart_y_t;
79
80
81 /* Public function protos */
82 void chart_init(Bitmap *bm, coord_t xmin, coord_t ymin, coord_t xmax, coord_t ymax);
83 void chart_setScale(Bitmap *bm, chart_x_t xmin, chart_y_t ymin, chart_x_t xmax, chart_y_t ymax);
84 void chart_drawAxis(Bitmap *bm);
85 void chart_drawCurve(Bitmap *bm, const chart_y_t *curve_y, int curve_cnt);
86 void chart_drawDots(Bitmap *bm, const chart_x_t *dots_x, const chart_y_t *dots_y, int cnt);
87
88 #endif /* GFX_CHARTS_H */