Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
ae52a8c2
Commit
ae52a8c2
authored
May 11, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Add an option to automatically clip the pointer in desktop and multi-monitor modes.
parent
a59c7cc8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
+10
-2
mouse.c
dlls/winex11.drv/mouse.c
+5
-2
x11drv.h
dlls/winex11.drv/x11drv.h
+1
-0
x11drv_main.c
dlls/winex11.drv/x11drv_main.c
+4
-0
No files found.
dlls/winex11.drv/mouse.c
View file @
ae52a8c2
...
...
@@ -518,8 +518,11 @@ BOOL clip_fullscreen_window( HWND hwnd )
if
(
!
is_window_rect_fullscreen
(
&
data
->
whole_rect
))
return
FALSE
;
if
(
GetTickCount
()
-
x11drv_thread_data
()
->
clip_reset
<
1000
)
return
FALSE
;
SetRect
(
&
rect
,
0
,
0
,
screen_width
,
screen_height
);
if
(
!
EqualRect
(
&
rect
,
&
virtual_screen_rect
))
return
FALSE
;
if
(
root_window
!=
DefaultRootWindow
(
gdi_display
))
return
FALSE
;
if
(
!
grab_fullscreen
)
{
if
(
!
EqualRect
(
&
rect
,
&
virtual_screen_rect
))
return
FALSE
;
if
(
root_window
!=
DefaultRootWindow
(
gdi_display
))
return
FALSE
;
}
TRACE
(
"win %p clipping fullscreen
\n
"
,
hwnd
);
return
grab_clipping_window
(
&
rect
,
TRUE
);
}
...
...
dlls/winex11.drv/x11drv.h
View file @
ae52a8c2
...
...
@@ -601,6 +601,7 @@ extern int use_primary_selection;
extern
int
use_system_cursors
;
extern
int
show_systray
;
extern
int
grab_pointer
;
extern
int
grab_fullscreen
;
extern
int
usexcomposite
;
extern
int
managed_mode
;
extern
int
decorated_mode
;
...
...
dlls/winex11.drv/x11drv_main.c
View file @
ae52a8c2
...
...
@@ -84,6 +84,7 @@ int use_primary_selection = 0;
int
use_system_cursors
=
1
;
int
show_systray
=
1
;
int
grab_pointer
=
1
;
int
grab_fullscreen
=
0
;
int
managed_mode
=
1
;
int
decorated_mode
=
1
;
int
private_color_map
=
0
;
...
...
@@ -426,6 +427,9 @@ static void setup_options(void)
if
(
!
get_config_key
(
hkey
,
appkey
,
"GrabPointer"
,
buffer
,
sizeof
(
buffer
)
))
grab_pointer
=
IS_OPTION_TRUE
(
buffer
[
0
]
);
if
(
!
get_config_key
(
hkey
,
appkey
,
"GrabFullscreen"
,
buffer
,
sizeof
(
buffer
)
))
grab_fullscreen
=
IS_OPTION_TRUE
(
buffer
[
0
]
);
screen_depth
=
0
;
if
(
!
get_config_key
(
hkey
,
appkey
,
"ScreenDepth"
,
buffer
,
sizeof
(
buffer
)
))
screen_depth
=
atoi
(
buffer
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment