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
bcca0cb3
Commit
bcca0cb3
authored
Nov 25, 2002
by
Robert Shearman
Committed by
Alexandre Julliard
Nov 25, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for painting SBS_SIZEBOX style properly.
parent
98058eb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
scroll.c
controls/scroll.c
+4
-6
No files found.
controls/scroll.c
View file @
bcca0cb3
...
@@ -1207,11 +1207,6 @@ static LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
...
@@ -1207,11 +1207,6 @@ static LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
infoPtr
->
flags
=
ESB_DISABLE_BOTH
;
infoPtr
->
flags
=
ESB_DISABLE_BOTH
;
}
}
if
(
lpCreat
->
style
&
SBS_SIZEBOX
)
{
FIXME
(
"Unimplemented style SBS_SIZEBOX.
\n
"
);
return
0
;
}
if
(
lpCreat
->
style
&
SBS_VERT
)
if
(
lpCreat
->
style
&
SBS_VERT
)
{
{
if
(
lpCreat
->
style
&
SBS_LEFTALIGN
)
if
(
lpCreat
->
style
&
SBS_LEFTALIGN
)
...
@@ -1332,7 +1327,10 @@ static LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
...
@@ -1332,7 +1327,10 @@ static LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
{
{
PAINTSTRUCT
ps
;
PAINTSTRUCT
ps
;
HDC
hdc
=
BeginPaint
(
hwnd
,
&
ps
);
HDC
hdc
=
BeginPaint
(
hwnd
,
&
ps
);
SCROLL_DrawScrollBar
(
hwnd
,
hdc
,
SB_CTL
,
TRUE
,
TRUE
);
if
(
GetWindowLongW
(
hwnd
,
GWL_STYLE
)
&
SBS_SIZEBOX
)
FillRect
(
hdc
,
&
ps
.
rcPaint
,
GetSysColorBrush
(
COLOR_SCROLLBAR
)
);
else
SCROLL_DrawScrollBar
(
hwnd
,
hdc
,
SB_CTL
,
TRUE
,
TRUE
);
EndPaint
(
hwnd
,
&
ps
);
EndPaint
(
hwnd
,
&
ps
);
}
}
break
;
break
;
...
...
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