compatible with 0.3.x branch.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@872 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong@gmail.com
2010-08-21 05:30:50 +00:00
parent 63917c7287
commit ffc3f02fca
4 changed files with 26 additions and 2 deletions

View File

@@ -51,11 +51,17 @@ static void workbench_entry(void* parameter)
rtgui_widget_set_event_handler(RTGUI_WIDGET(workbench), demo_workbench_event_handler);
/* 初始化各个例子的视图 */
#if RT_VERSION == 4
demo_view_benchmark(workbench);
#endif
demo_view_dc(workbench);
#if RT_VERSION == 4
#ifdef RTGUI_USING_TTF
demo_view_ttf(workbench);
#endif
#endif
demo_view_dc_buffer(workbench);
demo_view_animation(workbench);
demo_view_buffer_animation(workbench);
@@ -64,7 +70,9 @@ static void workbench_entry(void* parameter)
demo_view_button(workbench);
demo_view_checkbox(workbench);
demo_view_progressbar(workbench);
#if RT_VERSION == 4
demo_view_scrollbar(workbench);
#endif
demo_view_radiobox(workbench);
demo_view_textbox(workbench);
demo_view_listbox(workbench);