demo_view.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. #include <rtgui/rtgui.h>
  2. #include <rtgui/widgets/view.h>
  3. #include <rtgui/widgets/button.h>
  4. #include <rtgui/widgets/workbench.h>
  5. #include <rtgui/widgets/staticline.h>
  6. /* 用于存放演示视图的数组,最多可创建32个演示视图 */
  7. static rtgui_view_t* demo_view_list[32];
  8. /* 当前演示视图索引 */
  9. static rt_uint16_t demo_view_current = 0;
  10. /* 总共包括的演示视图数目 */
  11. static rt_uint16_t demo_view_number = 0;
  12. /* 显示下一个演示视图 */
  13. void demo_view_next(struct rtgui_widget* widget, rtgui_event_t *event)
  14. {
  15. if (demo_view_current + 1< demo_view_number)
  16. {
  17. demo_view_current ++;
  18. rtgui_view_show(demo_view_list[demo_view_current], RT_FALSE);
  19. }
  20. }
  21. /* 显示前一个演示视图 */
  22. void demo_view_prev(struct rtgui_widget* widget, rtgui_event_t *event)
  23. {
  24. if (demo_view_current != 0)
  25. {
  26. demo_view_current --;
  27. rtgui_view_show(demo_view_list[demo_view_current], RT_FALSE);
  28. }
  29. }
  30. /* 创建一个演示视图,需提供父workbench和演示用的标题 */
  31. rtgui_view_t* demo_view(rtgui_workbench_t* workbench, const char* title)
  32. {
  33. char view_name[32];
  34. struct rtgui_view* view;
  35. /* 设置视图的名称 */
  36. rt_sprintf(view_name, "view %d", demo_view_number + 1);
  37. view = rtgui_view_create(view_name);
  38. if (view == RT_NULL) return RT_NULL;
  39. /* 创建成功后,添加到数组中 */
  40. demo_view_list[demo_view_number] = view;
  41. demo_view_number ++;
  42. /* 添加到父workbench中 */
  43. rtgui_workbench_add_view(workbench, view);
  44. /* 添加下一个视图和前一个视图按钮 */
  45. {
  46. struct rtgui_rect rect;
  47. struct rtgui_button *next_btn, *prev_btn;
  48. struct rtgui_label *label;
  49. struct rtgui_staticline *line;
  50. /* 获得视图的位置信息(在加入到workbench中时,workbench会自动调整视图的大小) */
  51. rtgui_widget_get_rect(RTGUI_WIDGET(view), &rect);
  52. rect.x1 += 5; rect.y1 += 5;
  53. rect.x2 -= 5; rect.y2 = rect.y1 + 20;
  54. /* 创建标题用的标签 */
  55. label = rtgui_label_create(title);
  56. /* 设置标签位置信息 */
  57. rtgui_widget_set_rect(RTGUI_WIDGET(label), &rect);
  58. /* 添加标签到视图中 */
  59. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(label));
  60. rect.y1 += 20; rect.y2 += 20;
  61. /* 创建一个水平的staticline线 */
  62. line = rtgui_staticline_create(RTGUI_HORIZONTAL);
  63. /* 设置静态线的位置信息 */
  64. rtgui_widget_set_rect(RTGUI_WIDGET(line), &rect);
  65. /* 添加静态线到视图中 */
  66. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(line));
  67. /* 获得视图的位置信息 */
  68. rtgui_widget_get_rect(RTGUI_WIDGET(view), &rect);
  69. rect.x2 -= 5; rect.y2 -= 5;
  70. rect.x1 = rect.x2 - 50; rect.y1 = rect.y2 - 20;
  71. /* 创建"下一个"按钮 */
  72. next_btn = rtgui_button_create("Next");
  73. /* 设置onbutton动作到demo_view_next函数 */
  74. rtgui_button_set_onbutton(next_btn, demo_view_next);
  75. /* 设置按钮的位置信息 */
  76. rtgui_widget_set_rect(RTGUI_WIDGET(next_btn), &rect);
  77. /* 添加按钮到视图中 */
  78. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(next_btn));
  79. /* 获得视图的位置信息 */
  80. rtgui_widget_get_rect(RTGUI_WIDGET(view), &rect);
  81. rect.x1 += 5; rect.y2 -= 5;
  82. rect.x2 = rect.x1 + 50; rect.y1 = rect.y2 - 20;
  83. /* 创建"上一个"按钮 */
  84. prev_btn = rtgui_button_create("Prev");
  85. /* 设置onbutton动作到demo_view_prev函数 */
  86. rtgui_button_set_onbutton(prev_btn, demo_view_prev);
  87. /* 设置按钮的位置信息 */
  88. rtgui_widget_set_rect(RTGUI_WIDGET(prev_btn), &rect);
  89. /* 添加按钮到视图中 */
  90. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(prev_btn));
  91. }
  92. /* 返回创建的视图 */
  93. return view;
  94. }
  95. /* 这个函数用于返回演示视图的对外可用区域 */
  96. void demo_view_get_rect(rtgui_view_t* view, rtgui_rect_t *rect)
  97. {
  98. RT_ASSERT(view != RT_NULL);
  99. RT_ASSERT(rect != RT_NULL);
  100. rtgui_widget_get_rect(RTGUI_WIDGET(view), rect);
  101. /* 去除演示标题和下方按钮的区域 */
  102. rect->y1 += 45;
  103. rect->y2 -= 25;
  104. }
  105. /* 当是标准版本时,这个函数用于返回自动布局引擎box控件 */
  106. #ifndef RTGUI_USING_SMALL_SIZE
  107. rtgui_box_t* demo_view_create_box(rtgui_view_t* view, int orient)
  108. {
  109. rtgui_rect_t rect;
  110. rtgui_box_t* box;
  111. /* 获得视图的位置信息 */
  112. rtgui_widget_get_rect(RTGUI_WIDGET(view), &rect);
  113. rect.y1 += 45;
  114. rect.y2 -= 25;
  115. /* 创建一个自动布局引擎 */
  116. box = rtgui_box_create(orient, &rect);
  117. /* 添加box控件到视图中 */
  118. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(box));
  119. return box;
  120. }
  121. #endif
  122. /* 这个函数用于显示当前的视图 */
  123. void demo_view_show()
  124. {
  125. if (demo_view_number != 0)
  126. {
  127. rtgui_view_show(demo_view_list[demo_view_current], RT_FALSE);
  128. }
  129. }