X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Fcharts.h;h=ce4bd88328b1647a03915ae9e732484a00cf3ac3;hb=faed9d33b0a6bd6c2376e313fa3b73512c545caa;hp=468af79b0c96e6bcf99bb010737a3b35e5a6bd7c;hpb=41ee2287b2f2d7ec3e73e998b06076888608ed72;p=bertos.git diff --git a/gfx/charts.h b/gfx/charts.h old mode 100755 new mode 100644 index 468af79b..ce4bd883 --- a/gfx/charts.h +++ b/gfx/charts.h @@ -1,9 +1,34 @@ -/*! +/** * \file * * * \brief Simple charts on top of mware/gfx routines (interface). @@ -18,6 +43,18 @@ /*#* *#* $Log$ + *#* Revision 1.5 2006/08/01 12:23:03 bernie + *#* Indentation fix. + *#* + *#* Revision 1.4 2006/07/19 12:56:26 bernie + *#* Convert to new Doxygen style. + *#* + *#* Revision 1.3 2005/11/27 23:36:18 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* + *#* Revision 1.2 2005/11/04 18:17:45 bernie + *#* Fix header guards and includes for new location of gfx module. + *#* *#* Revision 1.1 2005/11/04 18:11:35 bernie *#* Move graphics stuff from mware/ to gfx/. *#* @@ -37,13 +74,13 @@ *#* Import simple chart drawing code. *#* *#*/ -#ifndef MWARE_CHARTS_H -#define MWARE_CHARTS_H +#ifndef GFX_CHARTS_H +#define GFX_CHARTS_H -#include /* vcoord_t */ -#include /* CONFIG_ stuff */ +#include /* vcoord_t */ +#include /* CONFIG_ stuff */ -/*! +/** * \name Width/height of the small ticks drawn over the axes * \{ */ @@ -51,7 +88,7 @@ #define TICKS_WIDTH 2 /*\}*/ -/*! +/** * \name Chart frame dimensions * \{ */ @@ -80,4 +117,4 @@ void chart_drawAxis(Bitmap *bm); void chart_drawCurve(Bitmap *bm, const chart_y_t *curve_y, int curve_cnt); void chart_drawDots(Bitmap *bm, const chart_x_t *dots_x, const chart_y_t *dots_y, int cnt); -#endif /* MWARE_CHARTS_H */ +#endif /* GFX_CHARTS_H */