X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fcfg_gfx.h;fp=bertos%2Fcfg%2Fcfg_gfx.h;h=63454016fd4e13d72ac8a53bd3ad9c31c8e460dc;hb=6e0b59dab1ec92a0911eb5e8ebde34d96bb4739d;hp=8d8b6fa2758102388c7fb036b53e05279cdab854;hpb=09a3f9313415b1a6faa1ffddec075e3cea6ba090;p=bertos.git diff --git a/bertos/cfg/cfg_gfx.h b/bertos/cfg/cfg_gfx.h index 8d8b6fa2..63454016 100644 --- a/bertos/cfg/cfg_gfx.h +++ b/bertos/cfg/cfg_gfx.h @@ -32,43 +32,37 @@ * * \brief Configuration file for GFX module. * - * \version $Id$ - * * \author Daniele Basile */ #ifndef CFG_GFX_H #define CFG_GFX_H -/// Enable line clipping algorithm. + +/** + * Enable line clipping algorithm. + * $WIZ$ type = "boolean" + */ #define CONFIG_GFX_CLIPPING 1 -/// Enable text rendering in bitmaps. +/** + * Enable text rendering in bitmaps. + * $WIZ$ type = "boolean" + */ #define CONFIG_GFX_TEXT 1 -/// Enable virtual coordinate system. +/** + * Enable virtual coordinate system. + * $WIZ$ type = "boolean" + */ #define CONFIG_GFX_VCOORDS 1 -/// Select bitmap pixel format. +/** + * Select bitmap pixel format. + * $WIZ$ type = "enum" + * $WIZ$ value_list = "bitmap_format" + */ #define CONFIG_BITMAP_FMT BITMAP_FMT_PLANAR_V_LSB - -#define CONFIG_CHART_TYPE_X uint8_t ///< Type for the chart dataset -#define CONFIG_CHART_TYPE_Y uint8_t ///< Type for the chart dataset - - -/// Enable button bar behind menus -#define CONFIG_MENU_MENUBAR 0 - -/// Level Edit Timeout -#define CONFIG_LEVELEDIT_TIMEOUT 0 - -/// Menu timeout -#define CONFIG_MENU_TIMEOUT 0 - -/// Enable smooth scrolling in menus -#define CONFIG_MENU_SMOOTH 1 - - #endif /* CFG_GFX_H */