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
1191f057
Commit
1191f057
authored
Jul 20, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of window region on the client side.
parent
4616dcb9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
32 deletions
+1
-32
win.h
include/win.h
+0
-1
win.c
windows/win.c
+0
-1
winpos.c
windows/winpos.c
+1
-30
No files found.
include/win.h
View file @
1191f057
...
...
@@ -53,7 +53,6 @@ typedef struct tagWND
void
*
pHScroll
;
/* Horizontal scroll-bar info */
struct
tagDCE
*
dce
;
/* Window DCE (if CS_OWNDC or CS_CLASSDC) */
HRGN
hrgnUpdate
;
/* Update region */
HRGN
hrgnWnd
;
/* window's region */
DWORD
dwStyle
;
/* Window style (from CreateWindow) */
DWORD
dwExStyle
;
/* Extended style (from CreateWindowEx) */
DWORD
clsStyle
;
/* Class style at window creation */
...
...
windows/win.c
View file @
1191f057
...
...
@@ -1149,7 +1149,6 @@ static HWND WIN_CreateWindowEx( CREATESTRUCTA *cs, ATOM classAtom,
wndPtr
->
hInstance
=
cs
->
hInstance
;
wndPtr
->
text
=
NULL
;
wndPtr
->
hrgnUpdate
=
0
;
wndPtr
->
hrgnWnd
=
0
;
wndPtr
->
dwStyle
=
cs
->
style
&
~
WS_VISIBLE
;
wndPtr
->
dwExStyle
=
cs
->
dwExStyle
;
wndPtr
->
wIDmenu
=
0
;
...
...
windows/winpos.c
View file @
1191f057
...
...
@@ -227,7 +227,6 @@ int WINAPI GetWindowRgn ( HWND hwnd, HRGN hrgn )
int
WINAPI
SetWindowRgn
(
HWND
hwnd
,
HRGN
hrgn
,
BOOL
bRedraw
)
{
static
const
RECT
empty_rect
;
WND
*
wndPtr
;
BOOL
ret
;
if
(
hrgn
)
...
...
@@ -263,35 +262,7 @@ int WINAPI SetWindowRgn( HWND hwnd, HRGN hrgn, BOOL bRedraw )
SERVER_END_REQ
;
}
if
(
!
ret
)
return
FALSE
;
if
((
wndPtr
=
WIN_GetPtr
(
hwnd
))
==
WND_OTHER_PROCESS
)
{
if
(
IsWindow
(
hwnd
))
FIXME
(
"not properly supported on other process window %p
\n
"
,
hwnd
);
wndPtr
=
NULL
;
}
if
(
!
wndPtr
)
{
SetLastError
(
ERROR_INVALID_WINDOW_HANDLE
);
return
FALSE
;
}
if
(
wndPtr
->
hrgnWnd
==
hrgn
)
{
WIN_ReleasePtr
(
wndPtr
);
return
TRUE
;
}
if
(
wndPtr
->
hrgnWnd
)
{
/* delete previous region */
DeleteObject
(
wndPtr
->
hrgnWnd
);
wndPtr
->
hrgnWnd
=
0
;
}
wndPtr
->
hrgnWnd
=
hrgn
;
WIN_ReleasePtr
(
wndPtr
);
if
(
USER_Driver
.
pSetWindowRgn
)
if
(
ret
&&
USER_Driver
.
pSetWindowRgn
)
ret
=
USER_Driver
.
pSetWindowRgn
(
hwnd
,
hrgn
,
bRedraw
);
if
(
ret
&&
bRedraw
)
RedrawWindow
(
hwnd
,
NULL
,
0
,
RDW_FRAME
|
RDW_INVALIDATE
|
RDW_ERASE
);
...
...
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