curses driver: new option DrawBorder (Bruno Schwander)

This commit is contained in:
marschap
2007-10-09 07:28:21 +00:00
parent f30af62574
commit f93e6dec47
5 changed files with 89 additions and 64 deletions
+9 -7
View File
@@ -22,12 +22,14 @@ MODULE_EXPORT void curses_backlight (Driver *drvthis, int on);
MODULE_EXPORT const char *curses_get_key (Driver *drvthis);
/*Default settings for config file parsing*/
#define CONF_DEF_FOREGR "blue"
#define CONF_DEF_BACKGR "cyan"
#define CONF_DEF_BACKLIGHT "red"
#define CONF_DEF_SIZE "20x4"
#define CONF_DEF_TOP_LEFT_X 7
#define CONF_DEF_TOP_LEFT_Y 7
/* Default settings for config file parsing */
#define CONF_DEF_FOREGR "blue"
#define CONF_DEF_BACKGR "cyan"
#define CONF_DEF_BACKLIGHT "red"
#define CONF_DEF_SIZE "20x4"
#define CONF_DEF_TOP_LEFT_X 7
#define CONF_DEF_TOP_LEFT_Y 7
#define CONF_DEF_USEACS 0
#define CONF_DEF_DRAWBORDER 1
#endif