Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
f2335791
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f2335791
编写于
5月 26, 2014
作者:
G
Gerd Hoffmann
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sdl2: textinput + terminal
Signed-off-by:
N
Gerd Hoffmann
<
kraxel@redhat.com
>
上级
363f59d9
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
40 addition
and
1 deletion
+40
-1
ui/sdl2.c
ui/sdl2.c
+40
-1
未找到文件。
ui/sdl2.c
浏览文件 @
f2335791
...
...
@@ -214,6 +214,23 @@ static void sdl_process_key(struct sdl2_state *scon,
int
qcode
=
sdl2_scancode_to_qcode
[
ev
->
keysym
.
scancode
];
QemuConsole
*
con
=
scon
?
scon
->
dcl
.
con
:
NULL
;
if
(
!
qemu_console_is_graphic
(
con
))
{
if
(
ev
->
type
==
SDL_KEYDOWN
)
{
switch
(
ev
->
keysym
.
scancode
)
{
case
SDL_SCANCODE_RETURN
:
kbd_put_keysym_console
(
con
,
'\n'
);
break
;
case
SDL_SCANCODE_BACKSPACE
:
kbd_put_keysym_console
(
con
,
QEMU_KEY_BACKSPACE
);
break
;
default:
kbd_put_qcode_console
(
con
,
qcode
);
break
;
}
}
return
;
}
switch
(
ev
->
keysym
.
scancode
)
{
#if 0
case SDL_SCANCODE_NUMLOCKCLEAR:
...
...
@@ -309,6 +326,11 @@ static void sdl_show_cursor(void)
static
void
sdl_grab_start
(
struct
sdl2_state
*
scon
)
{
QemuConsole
*
con
=
scon
?
scon
->
dcl
.
con
:
NULL
;
if
(
!
con
||
!
qemu_console_is_graphic
(
con
))
{
return
;
}
/*
* If the application is not active, do not try to enter grab state. This
* prevents 'SDL_WM_GrabInput(SDL_GRAB_ON)' from blocking all the
...
...
@@ -569,6 +591,17 @@ static void handle_keyup(SDL_Event *ev)
}
}
static
void
handle_textinput
(
SDL_Event
*
ev
)
{
struct
sdl2_state
*
scon
=
get_scon_from_window
(
ev
->
key
.
windowID
);
QemuConsole
*
con
=
scon
?
scon
->
dcl
.
con
:
NULL
;
if
(
qemu_console_is_graphic
(
con
))
{
return
;
}
kbd_put_string_console
(
con
,
ev
->
text
.
text
,
strlen
(
ev
->
text
.
text
));
}
static
void
handle_mousemotion
(
SDL_Event
*
ev
)
{
int
max_x
,
max_y
;
...
...
@@ -705,6 +738,9 @@ static void sdl_refresh(DisplayChangeListener *dcl)
case
SDL_KEYUP
:
handle_keyup
(
ev
);
break
;
case
SDL_TEXTINPUT
:
handle_textinput
(
ev
);
break
;
case
SDL_QUIT
:
if
(
!
no_quit
)
{
no_shutdown
=
0
;
...
...
@@ -833,7 +869,7 @@ void sdl_display_init(DisplayState *ds, int full_screen, int no_frame)
for
(
i
=
0
;;
i
++
)
{
QemuConsole
*
con
=
qemu_console_lookup_by_index
(
i
);
if
(
!
con
||
!
qemu_console_is_graphic
(
con
)
)
{
if
(
!
con
)
{
break
;
}
}
...
...
@@ -841,6 +877,9 @@ void sdl_display_init(DisplayState *ds, int full_screen, int no_frame)
sdl2_console
=
g_new0
(
struct
sdl2_state
,
sdl2_num_outputs
);
for
(
i
=
0
;
i
<
sdl2_num_outputs
;
i
++
)
{
QemuConsole
*
con
=
qemu_console_lookup_by_index
(
i
);
if
(
!
qemu_console_is_graphic
(
con
))
{
sdl2_console
[
i
].
hidden
=
true
;
}
sdl2_console
[
i
].
dcl
.
ops
=
&
dcl_ops
;
sdl2_console
[
i
].
dcl
.
con
=
con
;
register_displaychangelistener
(
&
sdl2_console
[
i
].
dcl
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录