23 lines
462 B
C
23 lines
462 B
C
|
#include <rtgui/rtgui.h>
|
||
|
#include <rtgui/rtgui_server.h>
|
||
|
|
||
|
void panel_init(void)
|
||
|
{
|
||
|
rtgui_rect_t rect;
|
||
|
|
||
|
/* register dock panel */
|
||
|
rect.x1 = 0;
|
||
|
rect.y1 = 0;
|
||
|
rect.x2 = 240;
|
||
|
rect.y2 = 25;
|
||
|
rtgui_panel_register("info", &rect);
|
||
|
|
||
|
/* register main panel */
|
||
|
rect.x1 = 0;
|
||
|
rect.y1 = 25;
|
||
|
rect.x2 = 320;
|
||
|
rect.y2 = 320;
|
||
|
rtgui_panel_register("main", &rect);
|
||
|
rtgui_panel_set_default_focused("main");
|
||
|
}
|