1
0

demo_view.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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;
  53. rect.y1 += 5;
  54. rect.x2 -= 5;
  55. rect.y2 = rect.y1 + 20;
  56. /* 创建标题用的标签 */
  57. label = rtgui_label_create(title);
  58. /* 设置标签位置信息 */
  59. rtgui_widget_set_rect(RTGUI_WIDGET(label), &rect);
  60. /* 添加标签到视图中 */
  61. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(label));
  62. rect.y1 += 20;
  63. rect.y2 += 20;
  64. /* 创建一个水平的staticline线 */
  65. line = rtgui_staticline_create(RTGUI_HORIZONTAL);
  66. /* 设置静态线的位置信息 */
  67. rtgui_widget_set_rect(RTGUI_WIDGET(line), &rect);
  68. /* 添加静态线到视图中 */
  69. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(line));
  70. /* 获得视图的位置信息 */
  71. rtgui_widget_get_rect(RTGUI_WIDGET(view), &rect);
  72. rect.x2 -= 5;
  73. rect.y2 -= 5;
  74. rect.x1 = rect.x2 - 50;
  75. rect.y1 = rect.y2 - 20;
  76. /* 创建"下一个"按钮 */
  77. next_btn = rtgui_button_create("Next");
  78. /* 设置onbutton动作到demo_view_next函数 */
  79. rtgui_button_set_onbutton(next_btn, demo_view_next);
  80. /* 设置按钮的位置信息 */
  81. rtgui_widget_set_rect(RTGUI_WIDGET(next_btn), &rect);
  82. /* 添加按钮到视图中 */
  83. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(next_btn));
  84. /* 获得视图的位置信息 */
  85. rtgui_widget_get_rect(RTGUI_WIDGET(view), &rect);
  86. rect.x1 += 5;
  87. rect.y2 -= 5;
  88. rect.x2 = rect.x1 + 50;
  89. rect.y1 = rect.y2 - 20;
  90. /* 创建"上一个"按钮 */
  91. prev_btn = rtgui_button_create("Prev");
  92. /* 设置onbutton动作到demo_view_prev函数 */
  93. rtgui_button_set_onbutton(prev_btn, demo_view_prev);
  94. /* 设置按钮的位置信息 */
  95. rtgui_widget_set_rect(RTGUI_WIDGET(prev_btn), &rect);
  96. /* 添加按钮到视图中 */
  97. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(prev_btn));
  98. }
  99. /* 返回创建的视图 */
  100. return view;
  101. }
  102. /* 这个函数用于返回演示视图的对外可用区域 */
  103. void demo_view_get_rect(rtgui_view_t* view, rtgui_rect_t *rect)
  104. {
  105. RT_ASSERT(view != RT_NULL);
  106. RT_ASSERT(rect != RT_NULL);
  107. rtgui_widget_get_rect(RTGUI_WIDGET(view), rect);
  108. /* 去除演示标题和下方按钮的区域 */
  109. rect->y1 += 45;
  110. rect->y2 -= 25;
  111. }
  112. /* 当是标准版本时,这个函数用于返回自动布局引擎box控件 */
  113. #ifndef RTGUI_USING_SMALL_SIZE
  114. rtgui_box_t* demo_view_create_box(rtgui_view_t* view, int orient)
  115. {
  116. rtgui_rect_t rect;
  117. rtgui_box_t* box;
  118. /* 获得视图的位置信息 */
  119. rtgui_widget_get_rect(RTGUI_WIDGET(view), &rect);
  120. rect.y1 += 45;
  121. rect.y2 -= 25;
  122. /* 创建一个自动布局引擎 */
  123. box = rtgui_box_create(orient, &rect);
  124. /* 添加box控件到视图中 */
  125. rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(box));
  126. return box;
  127. }
  128. #endif
  129. /* 这个函数用于显示当前的视图 */
  130. void demo_view_show()
  131. {
  132. if (demo_view_number != 0)
  133. {
  134. rtgui_view_show(demo_view_list[demo_view_current], RT_FALSE);
  135. }
  136. }