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
6d582fed
Commit
6d582fed
authored
Mar 01, 2005
by
Robert Shearman
Committed by
Alexandre Julliard
Mar 01, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Make row number be zero-based.
- Improvements to dumping functions to not dump out fields that may not have been filled in.
parent
18fe91d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
7 deletions
+19
-7
rebar.c
dlls/comctl32/rebar.c
+19
-7
No files found.
dlls/comctl32/rebar.c
View file @
6d582fed
...
...
@@ -134,7 +134,7 @@ typedef struct
SIZE
offChild
;
/* x,y offset if child is not FIXEDSIZE */
UINT
uMinHeight
;
INT
iRow
;
/* row this band assigned to */
INT
iRow
;
/*
zero-based index of the
row this band assigned to */
UINT
fStatus
;
/* status flags, reset only by _Validate */
UINT
fDraw
;
/* drawing flags, reset only by _Layout */
UINT
uCDret
;
/* last return from NM_CUSTOMDRAW */
...
...
@@ -360,8 +360,14 @@ static VOID
REBAR_DumpBandInfo
(
LPREBARBANDINFOA
pB
)
{
if
(
!
TRACE_ON
(
rebar
)
)
return
;
TRACE
(
"band info: ID=%u, size=%u, child=%p, clrF=0x%06lx, clrB=0x%06lx
\n
"
,
pB
->
wID
,
pB
->
cbSize
,
pB
->
hwndChild
,
pB
->
clrFore
,
pB
->
clrBack
);
TRACE
(
"band info: "
);
if
(
pB
->
fMask
&
RBBIM_ID
);
TRACE
(
"ID=%u, "
,
pB
->
wID
);
TRACE
(
"size=%u, child=%p"
,
pB
->
cbSize
,
pB
->
hwndChild
);
if
(
pB
->
fMask
&
RBBIM_COLORS
)
TRACE
(
", clrF=0x%06lx, clrB=0x%06lx"
,
pB
->
clrFore
,
pB
->
clrBack
);
TRACE
(
"
\n
"
);
TRACE
(
"band info: mask=0x%08x (%s)
\n
"
,
pB
->
fMask
,
REBAR_FmtMask
(
pB
->
fMask
));
if
(
pB
->
fMask
&
RBBIM_STYLE
)
TRACE
(
"band info: style=0x%08x (%s)
\n
"
,
pB
->
fStyle
,
REBAR_FmtStyle
(
pB
->
fStyle
));
...
...
@@ -403,8 +409,14 @@ REBAR_DumpBand (REBAR_INFO *iP)
(
iP
->
NtfUnicode
)
?
"TRUE"
:
"FALSE"
,
(
iP
->
DoRedraw
)
?
"TRUE"
:
"FALSE"
);
for
(
i
=
0
;
i
<
iP
->
uNumBands
;
i
++
)
{
pB
=
&
iP
->
bands
[
i
];
TRACE
(
"band # %u: ID=%u, child=%p, row=%u, clrF=0x%06lx, clrB=0x%06lx
\n
"
,
i
,
pB
->
wID
,
pB
->
hwndChild
,
pB
->
iRow
,
pB
->
clrFore
,
pB
->
clrBack
);
TRACE
(
"band # %u:"
,
i
);
if
(
pB
->
fMask
&
RBBIM_ID
);
TRACE
(
" ID=%u"
,
pB
->
wID
);
if
(
pB
->
fMask
&
RBBIM_CHILD
)
TRACE
(
" child=%p"
,
pB
->
hwndChild
);
if
(
pB
->
fMask
&
RBBIM_COLORS
)
TRACE
(
" clrF=0x%06lx clrB=0x%06lx"
,
pB
->
clrFore
,
pB
->
clrBack
);
TRACE
(
"
\n
"
);
TRACE
(
"band # %u: mask=0x%08x (%s)
\n
"
,
i
,
pB
->
fMask
,
REBAR_FmtMask
(
pB
->
fMask
));
if
(
pB
->
fMask
&
RBBIM_STYLE
)
TRACE
(
"band # %u: style=0x%08x (%s)
\n
"
,
...
...
@@ -1419,7 +1431,7 @@ REBAR_Layout (REBAR_INFO *infoPtr, LPRECT lpRect, BOOL notify, BOOL resetclient)
clientcx
,
clientcy
,
adjcx
,
adjcy
);
x
=
initx
;
y
=
inity
;
row
=
1
;
row
=
0
;
cx
=
0
;
mcy
=
0
;
rowstart
=
0
;
...
...
@@ -1560,7 +1572,7 @@ REBAR_Layout (REBAR_INFO *infoPtr, LPRECT lpRect, BOOL notify, BOOL resetclient)
}
if
(
infoPtr
->
uNumBands
)
infoPtr
->
uNumRows
=
row
;
infoPtr
->
uNumRows
=
row
+
1
;
/* ******* End Phase 1 - all bands on row at minimum size ******* */
...
...
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