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
1da4ea28
Commit
1da4ea28
authored
Sep 12, 2002
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Sep 12, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bunch of bugs related to scrolling.
parent
c6629293
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
18 deletions
+17
-18
listview.c
dlls/comctl32/listview.c
+17
-18
No files found.
dlls/comctl32/listview.c
View file @
1da4ea28
...
...
@@ -843,22 +843,20 @@ static VOID LISTVIEW_UpdateScroll(LISTVIEW_INFO *infoPtr)
if
(
uView
==
LVS_LIST
)
{
/* update horizontal scrollbar */
INT
nCountPerColumn
=
LISTVIEW_GetCountPerColumn
(
infoPtr
);
INT
nCountPerRow
=
LISTVIEW_GetCountPerRow
(
infoPtr
);
INT
nNumOfItems
=
GETITEMCOUNT
(
infoPtr
);
scrollInfo
.
nMax
=
nNumOfItems
/
nCountPerColumn
;
TRACE
(
"items=%d, perColumn=%d, perRow=%d
\n
"
,
nNumOfItems
,
nCountPerColumn
,
nCountPerRow
);
scrollInfo
.
nMax
=
nNumOfItems
/
nCountPerColumn
;
if
((
nNumOfItems
%
nCountPerColumn
)
==
0
)
{
scrollInfo
.
nMax
--
;
}
if
(
scrollInfo
.
nMax
<
0
)
scrollInfo
.
nMax
=
0
;
scrollInfo
.
nPos
=
ListView_GetTopIndex
(
infoPtr
->
hwndSelf
)
/
nCountPerColumn
;
scrollInfo
.
nPage
=
nCountPerRow
;
scrollInfo
.
fMask
=
SIF_RANGE
|
SIF_POS
|
SIF_PAGE
;
TRACE
(
"LVS_LIST
\n
"
);
SetScrollInfo
(
infoPtr
->
hwndSelf
,
SB_HORZ
,
&
scrollInfo
,
TRUE
);
ShowScrollBar
(
infoPtr
->
hwndSelf
,
SB_VERT
,
FALSE
);
}
...
...
@@ -8070,13 +8068,13 @@ static LRESULT LISTVIEW_VScroll(LISTVIEW_INFO *infoPtr, INT nScrollCode,
nNewScrollPos
=
scrollInfo
.
nMin
;
}
/* carry on only if it really changed */
if
(
nNewScrollPos
==
nOldScrollPos
)
return
0
;
/* set the new position */
/* set the new position, and reread in case it changed */
scrollInfo
.
fMask
=
SIF_POS
;
scrollInfo
.
nPos
=
nNewScrollPos
;
SetScrollInfo
(
infoPtr
->
hwndSelf
,
SB_VERT
,
&
scrollInfo
,
TRUE
);
nNewScrollPos
=
SetScrollInfo
(
infoPtr
->
hwndSelf
,
SB_VERT
,
&
scrollInfo
,
TRUE
);
/* carry on only if it really changed */
if
(
nNewScrollPos
==
nOldScrollPos
)
return
0
;
/* now adjust to client coordinates */
nScrollDiff
=
nOldScrollPos
-
nNewScrollPos
;
...
...
@@ -8153,6 +8151,7 @@ static LRESULT LISTVIEW_HScroll(LISTVIEW_INFO *infoPtr, INT nScrollCode,
case
SB_THUMBPOSITION
:
case
SB_THUMBTRACK
:
nScrollDiff
=
scrollInfo
.
nTrackPos
-
scrollInfo
.
nPos
;
break
;
default:
nScrollDiff
=
0
;
...
...
@@ -8173,20 +8172,20 @@ static LRESULT LISTVIEW_HScroll(LISTVIEW_INFO *infoPtr, INT nScrollCode,
nNewScrollPos
=
scrollInfo
.
nMin
;
}
/* carry on only if it really changed */
if
(
nNewScrollPos
==
nOldScrollPos
)
return
0
;
/* set the new position */
/* set the new position, and reread in case it changed */
scrollInfo
.
fMask
=
SIF_POS
;
scrollInfo
.
nPos
=
nNewScrollPos
;
SetScrollInfo
(
infoPtr
->
hwndSelf
,
SB_VERT
,
&
scrollInfo
,
TRUE
);
nNewScrollPos
=
SetScrollInfo
(
infoPtr
->
hwndSelf
,
SB_HORZ
,
&
scrollInfo
,
TRUE
);
if
(
uView
==
LVS_REPORT
)
LISTVIEW_UpdateHeaderSize
(
infoPtr
,
nNewScrollPos
);
/* carry on only if it really changed */
if
(
nNewScrollPos
==
nOldScrollPos
)
return
0
;
if
(
uView
==
LVS_REPORT
)
LISTVIEW_UpdateHeaderSize
(
infoPtr
,
nNewScrollPos
);
/* now adjust to client coordinates */
nScrollDiff
=
nOldScrollPos
-
nNewScrollPos
;
if
(
uView
==
LVS_
REPORT
)
nScrollDiff
*=
infoPtr
->
nItemHeight
;
if
(
uView
==
LVS_
LIST
)
nScrollDiff
*=
infoPtr
->
nItemWidth
;
/* and scroll the window */
ScrollWindowEx
(
infoPtr
->
hwndSelf
,
nScrollDiff
,
0
,
&
infoPtr
->
rcList
,
...
...
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