35 #ifndef CONTIKI_CONF_H_
36 #define CONTIKI_CONF_H_
40 #define CTK_CONF_MENU_KEY CH_F1
41 #define CTK_CONF_WINDOWSWITCH_KEY CH_F3
42 #define CTK_CONF_WIDGETUP_KEY CH_F5
43 #define CTK_CONF_WIDGETDOWN_KEY CH_F7
46 #define MOUSE_CONF_XTOC(x) ((x) / 4)
48 #define MOUSE_CONF_XTOC(x) ((x) / 8)
50 #define MOUSE_CONF_YTOC(y) ((y) / 8)
52 #define BORDERCOLOR COLOR_BLACK
53 #define SCREENCOLOR COLOR_BLACK
54 #define BACKGROUNDCOLOR COLOR_BLACK
55 #define WINDOWCOLOR COLOR_GRAY3
56 #define WINDOWCOLOR_FOCUS COLOR_GRAY3
57 #define WIDGETCOLOR COLOR_GRAY3
58 #define WIDGETCOLOR_FOCUS COLOR_YELLOW
59 #define WIDGETCOLOR_FWIN COLOR_GRAY3
60 #define WIDGETCOLOR_HLINK COLOR_CYAN
63 #define IRC_CONF_WIDTH 80
65 #define IRC_CONF_WIDTH 40
67 #define IRC_CONF_HEIGHT 24
69 #ifndef TELNETD_CONF_MAX_IDLE_TIME
70 #define TELNETD_CONF_MAX_IDLE_TIME 300
74 #define WWW_CONF_WEBPAGE_WIDTH 80
76 #define WWW_CONF_WEBPAGE_WIDTH 40
78 #define WWW_CONF_WEBPAGE_HEIGHT 20
79 #define WWW_CONF_HISTORY_SIZE 4
80 #define WWW_CONF_WGET_EXEC(url) exec("wget", url)