From 8dabef70db5f4bf5160b19e1dec656a2f2fc5839 Mon Sep 17 00:00:00 2001 From: "bernard.xiong" Date: Mon, 8 Feb 2010 14:14:41 +0000 Subject: [PATCH] RTGUI use 16 weight font as default font. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@392 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- bsp/stm32_radio/application.c | 2 ++ bsp/stm32_radio/info.c | 1 + bsp/stm32_radio/rtconfig.h | 2 ++ 3 files changed, 5 insertions(+) diff --git a/bsp/stm32_radio/application.c b/bsp/stm32_radio/application.c index 2e32bd362a..09620a8fe0 100644 --- a/bsp/stm32_radio/application.c +++ b/bsp/stm32_radio/application.c @@ -32,6 +32,8 @@ #include /* dfs filesystem:EFS filesystem init */ #include +/* dfs filesystem:ELM FatFs filesystem init */ +#include /* dfs Filesystem APIs */ #include #endif diff --git a/bsp/stm32_radio/info.c b/bsp/stm32_radio/info.c index 8185f98705..de5ad25fa4 100644 --- a/bsp/stm32_radio/info.c +++ b/bsp/stm32_radio/info.c @@ -66,6 +66,7 @@ static void info_entry(void* parameter) if (workbench == RT_NULL) return; view = rtgui_view_create("view"); + RTGUI_WIDGET_BACKGROUND(RTGUI_WIDGET(view)) = white; rtgui_widget_set_event_handler(RTGUI_WIDGET(view), view_event_handler); rtgui_workbench_add_view(workbench, view); diff --git a/bsp/stm32_radio/rtconfig.h b/bsp/stm32_radio/rtconfig.h index d34079b6cc..20860de648 100644 --- a/bsp/stm32_radio/rtconfig.h +++ b/bsp/stm32_radio/rtconfig.h @@ -174,5 +174,7 @@ #define RTGUI_USING_SMALL_SIZE /* use mouse cursor */ /* #define RTGUI_USING_MOUSE_CURSOR */ +/* default font size in RTGUI */ +#define RTGUI_DEFAULT_FONT_SIZE 16 #endif -- GitLab