Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
700cd855
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看板
提交
700cd855
编写于
3月 24, 2015
作者:
M
Marc-André Lureau
提交者:
Gerd Hoffmann
4月 27, 2015
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
spice: learn to hide cursor
Signed-off-by:
N
Gerd Hoffmann
<
kraxel@redhat.com
>
上级
dc8dceee
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
3 deletion
+6
-3
ui/spice-display.c
ui/spice-display.c
+6
-3
未找到文件。
ui/spice-display.c
浏览文件 @
700cd855
...
...
@@ -260,7 +260,8 @@ static void qemu_spice_create_update(SimpleSpiceDisplay *ssd)
static
SimpleSpiceCursor
*
qemu_spice_create_cursor_update
(
SimpleSpiceDisplay
*
ssd
,
QEMUCursor
*
c
)
QEMUCursor
*
c
,
int
on
)
{
size_t
size
=
c
?
c
->
width
*
c
->
height
*
4
:
0
;
SimpleSpiceCursor
*
update
;
...
...
@@ -288,6 +289,8 @@ qemu_spice_create_cursor_update(SimpleSpiceDisplay *ssd,
cursor
->
data_size
=
size
;
cursor
->
chunk
.
data_size
=
size
;
memcpy
(
cursor
->
chunk
.
data
,
c
->
data
,
size
);
}
else
if
(
!
on
)
{
ccmd
->
type
=
QXL_CURSOR_HIDE
;
}
else
{
ccmd
->
type
=
QXL_CURSOR_MOVE
;
ccmd
->
u
.
position
.
x
=
ssd
->
ptr_x
+
ssd
->
hot_x
;
...
...
@@ -738,7 +741,7 @@ static void display_mouse_set(DisplayChangeListener *dcl,
if
(
ssd
->
ptr_move
)
{
g_free
(
ssd
->
ptr_move
);
}
ssd
->
ptr_move
=
qemu_spice_create_cursor_update
(
ssd
,
NULL
);
ssd
->
ptr_move
=
qemu_spice_create_cursor_update
(
ssd
,
NULL
,
on
);
qemu_mutex_unlock
(
&
ssd
->
lock
);
}
...
...
@@ -757,7 +760,7 @@ static void display_mouse_define(DisplayChangeListener *dcl,
if
(
ssd
->
ptr_define
)
{
g_free
(
ssd
->
ptr_define
);
}
ssd
->
ptr_define
=
qemu_spice_create_cursor_update
(
ssd
,
c
);
ssd
->
ptr_define
=
qemu_spice_create_cursor_update
(
ssd
,
c
,
0
);
qemu_mutex_unlock
(
&
ssd
->
lock
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录