demo_panel.c 462 B

12345678910111213141516171819202122
  1. #include <rtgui/rtgui.h>
  2. #include <rtgui/rtgui_server.h>
  3. void panel_init(void)
  4. {
  5. rtgui_rect_t rect;
  6. /* register dock panel */
  7. rect.x1 = 0;
  8. rect.y1 = 0;
  9. rect.x2 = 240;
  10. rect.y2 = 25;
  11. rtgui_panel_register("info", &rect);
  12. /* register main panel */
  13. rect.x1 = 0;
  14. rect.y1 = 25;
  15. rect.x2 = 320;
  16. rect.y2 = 320;
  17. rtgui_panel_register("main", &rect);
  18. rtgui_panel_set_default_focused("main");
  19. }