demo_panel_single.c 351 B

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