Lines Matching refs:con

198         !qemu_console_is_graphic(vc->gfx.dcl.con)) {  in gd_update_cursor()
207 if (s->full_screen || qemu_input_is_absolute(vc->gfx.dcl.con) || s->ptr_owner == vc) { in gd_update_cursor()
361 !qemu_console_is_graphic(vc->gfx.dcl.con)) { in gtk_release_modifiers()
440 graphic_hw_update(dcl->con); in gd_refresh()
456 qemu_input_is_absolute(dcl->con)) { in gd_mouse_set()
606 graphic_hw_gl_block(vc->gfx.dcl.con, false); in gd_hw_gl_flushed()
696 if (s->ptr_owner && qemu_input_is_absolute(s->ptr_owner->gfx.dcl.con)) { in gd_mouse_mode_change()
733 if (!dpy_ui_info_supported(vc->gfx.dcl.con)) { in gd_set_ui_refresh_rate()
737 info = *dpy_get_ui_info(vc->gfx.dcl.con); in gd_set_ui_refresh_rate()
739 dpy_set_ui_info(vc->gfx.dcl.con, &info, true); in gd_set_ui_refresh_rate()
746 if (!dpy_ui_info_supported(vc->gfx.dcl.con)) { in gd_set_ui_size()
750 info = *dpy_get_ui_info(vc->gfx.dcl.con); in gd_set_ui_size()
753 dpy_set_ui_info(vc->gfx.dcl.con, &info, true); in gd_set_ui_size()
928 if (qemu_input_is_absolute(vc->gfx.dcl.con)) { in gd_motion_event()
934 qemu_input_queue_abs(vc->gfx.dcl.con, INPUT_AXIS_X, x, in gd_motion_event()
936 qemu_input_queue_abs(vc->gfx.dcl.con, INPUT_AXIS_Y, y, in gd_motion_event()
940 qemu_input_queue_rel(vc->gfx.dcl.con, INPUT_AXIS_X, x - s->last_x); in gd_motion_event()
941 qemu_input_queue_rel(vc->gfx.dcl.con, INPUT_AXIS_Y, y - s->last_y); in gd_motion_event()
948 if (!qemu_input_is_absolute(vc->gfx.dcl.con) && s->ptr_owner == vc) { in gd_motion_event()
990 !qemu_input_is_absolute(vc->gfx.dcl.con) && s->ptr_owner != vc) { in gd_button_event()
1018 qemu_input_queue_btn(vc->gfx.dcl.con, btn, in gd_button_event()
1072 qemu_input_queue_btn(vc->gfx.dcl.con, btn_vertical, true); in gd_scroll_event()
1074 qemu_input_queue_btn(vc->gfx.dcl.con, btn_vertical, false); in gd_scroll_event()
1079 qemu_input_queue_btn(vc->gfx.dcl.con, btn_horizontal, true); in gd_scroll_event()
1081 qemu_input_queue_btn(vc->gfx.dcl.con, btn_horizontal, false); in gd_scroll_event()
1112 console_handle_touch_event(vc->gfx.dcl.con, touch_slots, in gd_touch_event()
1212 QemuTextConsole *con = QEMU_TEXT_CONSOLE(vc->gfx.dcl.con); in gd_text_key_down() local
1215 qemu_text_console_put_qcode(con, Q_KEY_CODE_DELETE, false); in gd_text_key_down()
1217 qemu_text_console_put_string(con, key->string, key->length); in gd_text_key_down()
1220 qemu_text_console_put_qcode(con, qcode, false); in gd_text_key_down()
1405 qemu_console_is_graphic(vc->gfx.dcl.con)) { in gd_menu_untabify()
1428 if (qemu_console_is_graphic(vc->gfx.dcl.con)) { in gd_menu_untabify()
1697 qemu_console_is_graphic(vc->gfx.dcl.con)); in gd_change_page()
2026 if (qemu_console_is_graphic(vc->gfx.dcl.con)) { in gd_connect_vc_gfx_signals()
2146 QemuConsole *con, int idx, in gd_vc_gfx_init() argument
2152 vc->label = qemu_console_get_label(con); in gd_vc_gfx_init()
2212 vc->gfx.kbd = qkbd_state_init(con); in gd_vc_gfx_init()
2213 vc->gfx.dcl.con = con; in gd_vc_gfx_init()
2216 qemu_console_set_display_gl_ctx(con, &vc->gfx.dgc); in gd_vc_gfx_init()
2223 if (dpy_ui_info_supported(vc->gfx.dcl.con)) { in gd_vc_gfx_init()
2247 QemuConsole *con; in gd_create_menu_view() local
2314 con = qemu_console_lookup_by_index(vc); in gd_create_menu_view()
2315 if (!con) { in gd_create_menu_view()
2318 group = gd_vc_gfx_init(s, &s->vc[vc], con, in gd_create_menu_view()
2454 QemuConsole *con = qemu_console_lookup_by_index(idx); in gtk_display_init() local
2455 if (!con) { in gtk_display_init()