demo_view.c 4.7 KB

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