Lines Matching refs:root_window
81 UINT _gx_window_root_create(GX_WINDOW_ROOT *root_window, GX_CONST GX_CHAR *name, in _gx_window_root_create() argument
87 memset(root_window, 0, sizeof(GX_WINDOW_ROOT)); in _gx_window_root_create()
90 _gx_window_create((GX_WINDOW *)root_window, name, GX_NULL, style, Id, size); in _gx_window_root_create()
93 root_window -> gx_widget_normal_fill_color = GX_COLOR_ID_CANVAS; in _gx_window_root_create()
94 root_window -> gx_widget_selected_fill_color = GX_COLOR_ID_CANVAS; in _gx_window_root_create()
95 root_window -> gx_widget_disabled_fill_color = GX_COLOR_ID_CANVAS; in _gx_window_root_create()
96 root_window -> gx_widget_type = GX_TYPE_ROOT_WINDOW; in _gx_window_root_create()
97 root_window -> gx_window_root_canvas = canvas; in _gx_window_root_create()
98 root_window -> gx_window_root_views_changed = GX_TRUE; in _gx_window_root_create()
99 root_window -> gx_widget_status &= ~GX_STATUS_MOVABLE; in _gx_window_root_create()
100 …root_window -> gx_widget_event_process_function = (UINT (*)(GX_WIDGET *, GX_EVENT *))_gx_window_ro… in _gx_window_root_create()
107 root_window -> gx_widget_next = (GX_WIDGET *)_gx_system_root_window_created_list; in _gx_window_root_create()
109 _gx_system_root_window_created_list -> gx_widget_previous = (GX_WIDGET *)root_window; in _gx_window_root_create()
113 _gx_system_root_window_created_list = root_window; in _gx_window_root_create()