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
39804012
Commit
39804012
authored
Jan 24, 2008
by
Lei Zhang
Committed by
Alexandre Julliard
Feb 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Use wine_dbgstr_rect() in traces.
parent
62634b80
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
107 additions
and
172 deletions
+107
-172
comboex.c
dlls/comctl32/comboex.c
+30
-44
monthcal.c
dlls/comctl32/monthcal.c
+1
-1
pager.c
dlls/comctl32/pager.c
+2
-3
propsheet.c
dlls/comctl32/propsheet.c
+6
-9
rebar.c
dlls/comctl32/rebar.c
+28
-47
status.c
dlls/comctl32/status.c
+4
-4
tab.c
dlls/comctl32/tab.c
+25
-45
toolbar.c
dlls/comctl32/toolbar.c
+7
-12
trackbar.c
dlls/comctl32/trackbar.c
+1
-2
treeview.c
dlls/comctl32/treeview.c
+3
-5
No files found.
dlls/comctl32/comboex.c
View file @
39804012
...
...
@@ -412,8 +412,8 @@ static void COMBOEX_AdjustEditPos (COMBOEX_INFO *infoPtr)
h
=
mysize
.
cy
+
1
;
y
=
rect
.
bottom
-
h
-
1
;
TRACE
(
"Combo client (%
d,%d)-(%d,%d
), setting Edit to (%d,%d)-(%d,%d)
\n
"
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
,
x
,
y
,
x
+
w
,
y
+
h
);
TRACE
(
"Combo client (%
s
), setting Edit to (%d,%d)-(%d,%d)
\n
"
,
wine_dbgstr_rect
(
&
rect
)
,
x
,
y
,
x
+
w
,
y
+
h
);
SetWindowPos
(
infoPtr
->
hwndEdit
,
HWND_TOP
,
x
,
y
,
w
,
h
,
SWP_SHOWWINDOW
|
SWP_NOACTIVATE
|
SWP_NOZORDER
);
}
...
...
@@ -952,12 +952,10 @@ static INT COMBOEX_SetItemHeight (COMBOEX_INFO const *infoPtr, INT index, UINT h
height
=
cb_wrect
.
bottom
-
cb_wrect
.
top
+
cbx_wrect
.
bottom
-
cbx_wrect
.
top
-
(
cbx_crect
.
bottom
-
cbx_crect
.
top
);
TRACE
(
"EX window=(%d,%d)-(%d,%d), client=(%d,%d)-(%d,%d)
\n
"
,
cbx_wrect
.
left
,
cbx_wrect
.
top
,
cbx_wrect
.
right
,
cbx_wrect
.
bottom
,
cbx_crect
.
left
,
cbx_crect
.
top
,
cbx_crect
.
right
,
cbx_crect
.
bottom
);
TRACE
(
"CB window=(%d,%d)-(%d,%d), EX setting=(0,0)-(%d,%d)
\n
"
,
cb_wrect
.
left
,
cb_wrect
.
top
,
cb_wrect
.
right
,
cb_wrect
.
bottom
,
cbx_wrect
.
right
-
cbx_wrect
.
left
,
height
);
TRACE
(
"EX window=(%s), client=(%s)
\n
"
,
wine_dbgstr_rect
(
&
cbx_wrect
),
wine_dbgstr_rect
(
&
cbx_crect
));
TRACE
(
"CB window=(%s), EX setting=(0,0)-(%d,%d)
\n
"
,
wine_dbgstr_rect
(
&
cbx_wrect
),
cbx_wrect
.
right
-
cbx_wrect
.
left
,
height
);
SetWindowPos
(
infoPtr
->
hwndSelf
,
HWND_TOP
,
0
,
0
,
cbx_wrect
.
right
-
cbx_wrect
.
left
,
height
,
SWP_NOACTIVATE
|
SWP_NOZORDER
|
SWP_NOMOVE
);
...
...
@@ -1004,9 +1002,8 @@ static LRESULT COMBOEX_Create (HWND hwnd, CREATESTRUCTA const *cs)
/* create combo box */
GetWindowRect
(
hwnd
,
&
wnrc1
);
GetClientRect
(
hwnd
,
&
clrc1
);
TRACE
(
"EX window=(%d,%d)-(%d,%d) client=(%d,%d)-(%d,%d)
\n
"
,
wnrc1
.
left
,
wnrc1
.
top
,
wnrc1
.
right
,
wnrc1
.
bottom
,
clrc1
.
left
,
clrc1
.
top
,
clrc1
.
right
,
clrc1
.
bottom
);
TRACE
(
"EX window=(%s), client=(%s)
\n
"
,
wine_dbgstr_rect
(
&
wnrc1
),
wine_dbgstr_rect
(
&
clrc1
));
/* Native version of ComboEx creates the ComboBox with DROPDOWNLIST */
/* specified. It then creates it's own version of the EDIT control */
...
...
@@ -1095,17 +1092,15 @@ static LRESULT COMBOEX_Create (HWND hwnd, CREATESTRUCTA const *cs)
GetWindowRect
(
hwnd
,
&
wnrc1
);
GetClientRect
(
hwnd
,
&
clrc1
);
GetWindowRect
(
infoPtr
->
hwndCombo
,
&
cmbwrc
);
TRACE
(
"EX window=(%d,%d)-(%d,%d) client=(%d,%d)-(%d,%d) CB wnd=(%d,%d)-(%d,%d)
\n
"
,
wnrc1
.
left
,
wnrc1
.
top
,
wnrc1
.
right
,
wnrc1
.
bottom
,
clrc1
.
left
,
clrc1
.
top
,
clrc1
.
right
,
clrc1
.
bottom
,
cmbwrc
.
left
,
cmbwrc
.
top
,
cmbwrc
.
right
,
cmbwrc
.
bottom
);
TRACE
(
"EX window=(%s) client=(%s) CB wnd=(%s)
\n
"
,
wine_dbgstr_rect
(
&
wnrc1
),
wine_dbgstr_rect
(
&
clrc1
),
wine_dbgstr_rect
(
&
cmbwrc
));
SetWindowPos
(
infoPtr
->
hwndCombo
,
HWND_TOP
,
0
,
0
,
wnrc1
.
right
-
wnrc1
.
left
,
wnrc1
.
bottom
-
wnrc1
.
top
,
SWP_NOACTIVATE
|
SWP_NOREDRAW
);
GetWindowRect
(
infoPtr
->
hwndCombo
,
&
cmbwrc
);
TRACE
(
"CB window=(%d,%d)-(%d,%d)
\n
"
,
cmbwrc
.
left
,
cmbwrc
.
top
,
cmbwrc
.
right
,
cmbwrc
.
bottom
);
TRACE
(
"CB window=(%s)
\n
"
,
wine_dbgstr_rect
(
&
cmbwrc
));
SetWindowPos
(
hwnd
,
HWND_TOP
,
0
,
0
,
cmbwrc
.
right
-
cmbwrc
.
left
,
cmbwrc
.
bottom
-
cmbwrc
.
top
,
SWP_NOACTIVATE
|
SWP_NOZORDER
|
SWP_NOMOVE
);
...
...
@@ -1354,10 +1349,8 @@ static LRESULT COMBOEX_DrawItem (COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT const *di
dis
->
CtlType
,
dis
->
CtlID
);
TRACE
(
"itemID=0x%08x itemAction=0x%08x itemState=0x%08x
\n
"
,
dis
->
itemID
,
dis
->
itemAction
,
dis
->
itemState
);
TRACE
(
"hWnd=%p hDC=%p (%d,%d)-(%d,%d) itemData=0x%08lx
\n
"
,
dis
->
hwndItem
,
dis
->
hDC
,
dis
->
rcItem
.
left
,
dis
->
rcItem
.
top
,
dis
->
rcItem
.
right
,
dis
->
rcItem
.
bottom
,
dis
->
itemData
);
TRACE
(
"hWnd=%p hDC=%p (%s) itemData=0x%08lx
\n
"
,
dis
->
hwndItem
,
dis
->
hDC
,
wine_dbgstr_rect
(
&
dis
->
rcItem
),
dis
->
itemData
);
/* MSDN says: */
/* "itemID - Specifies the menu item identifier for a menu */
...
...
@@ -1374,9 +1367,8 @@ static LRESULT COMBOEX_DrawItem (COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT const *di
if
(
(
(
dis
->
itemAction
&
ODA_FOCUS
)
&&
(
dis
->
itemState
&
ODS_SELECTED
))
||
(
(
dis
->
itemAction
&
(
ODA_SELECT
|
ODA_DRAWENTIRE
))
&&
(
dis
->
itemState
&
ODS_FOCUS
)
)
)
{
TRACE
(
"drawing item -1 special focus, rect=(%d,%d)-(%d,%d)
\n
"
,
dis
->
rcItem
.
left
,
dis
->
rcItem
.
top
,
dis
->
rcItem
.
right
,
dis
->
rcItem
.
bottom
);
TRACE
(
"drawing item -1 special focus, rect=(%s)
\n
"
,
wine_dbgstr_rect
(
&
dis
->
rcItem
));
}
else
if
((
dis
->
CtlType
==
ODT_COMBOBOX
)
&&
(
dis
->
itemAction
==
ODA_DRAWENTIRE
))
{
...
...
@@ -1390,17 +1382,15 @@ static LRESULT COMBOEX_DrawItem (COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT const *di
edrc
.
left
=
edrc
.
top
=
edrc
.
right
=
edrc
.
bottom
=-
1
;
if
(
infoPtr
->
hwndEdit
)
GetWindowRect
(
infoPtr
->
hwndEdit
,
&
edrc
);
TRACE
(
"window rects ex=(%d,%d)-(%d,%d), cb=(%d,%d)-(%d,%d), ed=(%d,%d)-(%d,%d)
\n
"
,
exrc
.
left
,
exrc
.
top
,
exrc
.
right
,
exrc
.
bottom
,
cbrc
.
left
,
cbrc
.
top
,
cbrc
.
right
,
cbrc
.
bottom
,
edrc
.
left
,
edrc
.
top
,
edrc
.
right
,
edrc
.
bottom
);
TRACE
(
"window rects ex=(%s), cb=(%s), ed=(%s)
\n
"
,
wine_dbgstr_rect
(
&
exrc
),
wine_dbgstr_rect
(
&
cbrc
),
wine_dbgstr_rect
(
&
edrc
));
}
}
else
{
ERR
(
"NOT drawing item -1 special focus, rect=(%d,%d)-(%d,%d), action=%08x, state=%08x
\n
"
,
dis
->
rcItem
.
left
,
dis
->
rcItem
.
top
,
dis
->
rcItem
.
right
,
dis
->
rcItem
.
bottom
,
dis
->
itemAction
,
dis
->
itemState
);
ERR
(
"NOT drawing item -1 special focus, rect=(%s), action=%08x, state=%08x
\n
"
,
wine_dbgstr_rect
(
&
dis
->
rcItem
),
dis
->
itemAction
,
dis
->
itemState
);
return
0
;
}
}
...
...
@@ -1557,8 +1547,8 @@ static LRESULT COMBOEX_DrawItem (COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT const *di
rect
.
right
=
x
+
txtsize
.
cx
;
rect
.
top
=
dis
->
rcItem
.
top
+
1
;
rect
.
bottom
=
dis
->
rcItem
.
bottom
-
1
;
TRACE
(
"drawing item %d text, rect=(%
d,%d)-(%d,%d
)
\n
"
,
dis
->
itemID
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
TRACE
(
"drawing item %d text, rect=(%
s
)
\n
"
,
dis
->
itemID
,
wine_dbgstr_rect
(
&
rect
)
);
ExtTextOutW
(
dis
->
hDC
,
x
,
y
,
ETO_OPAQUE
|
ETO_CLIPPED
,
&
rect
,
str
,
len
,
0
);
SetBkColor
(
dis
->
hDC
,
bkc
);
...
...
@@ -1692,12 +1682,10 @@ static LRESULT COMBOEX_WindowPosChanging (COMBOEX_INFO *infoPtr, WINDOWPOS *wp)
TRACE
(
"winpos=(%d,%d %dx%d) flags=0x%08x
\n
"
,
wp
->
x
,
wp
->
y
,
wp
->
cx
,
wp
->
cy
,
wp
->
flags
);
TRACE
(
"EX window=(%d,%d)-(%d,%d), client=(%d,%d)-(%d,%d)
\n
"
,
cbx_wrect
.
left
,
cbx_wrect
.
top
,
cbx_wrect
.
right
,
cbx_wrect
.
bottom
,
cbx_crect
.
left
,
cbx_crect
.
top
,
cbx_crect
.
right
,
cbx_crect
.
bottom
);
TRACE
(
"CB window=(%d,%d)-(%d,%d), EX setting=(0,0)-(%d,%d)
\n
"
,
cb_wrect
.
left
,
cb_wrect
.
top
,
cb_wrect
.
right
,
cb_wrect
.
bottom
,
width
,
cb_wrect
.
bottom
-
cb_wrect
.
top
);
TRACE
(
"EX window=(%s), client=(%s)
\n
"
,
wine_dbgstr_rect
(
&
cbx_wrect
),
wine_dbgstr_rect
(
&
cbx_crect
));
TRACE
(
"CB window=(%s), EX setting=(0,0)-(%d,%d)
\n
"
,
wine_dbgstr_rect
(
&
cbx_wrect
),
width
,
cb_wrect
.
bottom
-
cb_wrect
.
top
);
if
(
width
)
SetWindowPos
(
infoPtr
->
hwndCombo
,
HWND_TOP
,
0
,
0
,
width
,
...
...
@@ -1753,8 +1741,7 @@ COMBOEX_EditWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
hDC
=
(
HDC
)
wParam
;
obkc
=
SetBkColor
(
hDC
,
GetSysColor
(
COLOR_WINDOW
));
GetClientRect
(
hwnd
,
&
rect
);
TRACE
(
"erasing (%d,%d)-(%d,%d)
\n
"
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
TRACE
(
"erasing (%s)
\n
"
,
wine_dbgstr_rect
(
&
rect
));
ExtTextOutW
(
hDC
,
0
,
0
,
ETO_OPAQUE
,
&
rect
,
0
,
0
,
0
);
SetBkColor
(
hDC
,
obkc
);
return
CallWindowProcW
(
infoPtr
->
prevEditWndProc
,
...
...
@@ -1957,8 +1944,7 @@ COMBOEX_ComboWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
hDC
=
(
HDC
)
wParam
;
obkc
=
SetBkColor
(
hDC
,
GetSysColor
(
COLOR_WINDOW
));
GetClientRect
(
hwnd
,
&
rect
);
TRACE
(
"erasing (%d,%d)-(%d,%d)
\n
"
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
TRACE
(
"erasing (%s)
\n
"
,
wine_dbgstr_rect
(
&
rect
));
ExtTextOutW
(
hDC
,
0
,
0
,
ETO_OPAQUE
,
&
rect
,
0
,
0
,
0
);
SetBkColor
(
hDC
,
obkc
);
return
CallWindowProcW
(
infoPtr
->
prevComboWndProc
,
...
...
dlls/comctl32/monthcal.c
View file @
39804012
...
...
@@ -344,7 +344,7 @@ static void MONTHCAL_DrawDay(const MONTHCAL_INFO *infoPtr, HDC hdc, int day, int
RECT
r2
;
TRACE
(
"%d %d %d
\n
"
,
day
,
infoPtr
->
minSel
.
wDay
,
infoPtr
->
maxSel
.
wDay
);
TRACE
(
"%
d %d %d %d
\n
"
,
r
.
left
,
r
.
top
,
r
.
right
,
r
.
bottom
);
TRACE
(
"%
s
\n
"
,
wine_dbgstr_rect
(
&
r
)
);
oldCol
=
SetTextColor
(
hdc
,
infoPtr
->
monthbk
);
oldBk
=
SetBkColor
(
hdc
,
infoPtr
->
trailingtxt
);
hbr
=
GetSysColorBrush
(
COLOR_GRAYTEXT
);
...
...
dlls/comctl32/pager.c
View file @
39804012
...
...
@@ -1008,9 +1008,8 @@ PAGER_MouseMove (PAGER_INFO* infoPtr, INT keys, INT x, INT y)
/* If in one of the buttons the capture and draw buttons */
if
(
btnrect
)
{
TRACE
(
"[%p] draw btn (%d,%d)-(%d,%d), Capture %s, style %08x
\n
"
,
infoPtr
->
hwndSelf
,
btnrect
->
left
,
btnrect
->
top
,
btnrect
->
right
,
btnrect
->
bottom
,
TRACE
(
"[%p] draw btn (%s), Capture %s, style %08x
\n
"
,
infoPtr
->
hwndSelf
,
wine_dbgstr_rect
(
btnrect
),
(
infoPtr
->
bCapture
)
?
"TRUE"
:
"FALSE"
,
infoPtr
->
dwStyle
);
if
(
!
infoPtr
->
bCapture
)
...
...
dlls/comctl32/propsheet.c
View file @
39804012
...
...
@@ -709,8 +709,7 @@ static BOOL PROPSHEET_SizeMismatch(HWND hwndDlg, const PropSheetInfo* psInfo)
* Original tab size.
*/
GetClientRect
(
hwndTabCtrl
,
&
rcOrigTab
);
TRACE
(
"orig tab %d %d %d %d
\n
"
,
rcOrigTab
.
left
,
rcOrigTab
.
top
,
rcOrigTab
.
right
,
rcOrigTab
.
bottom
);
TRACE
(
"orig tab %s
\n
"
,
wine_dbgstr_rect
(
&
rcOrigTab
));
/*
* Biggest page size.
...
...
@@ -721,8 +720,7 @@ static BOOL PROPSHEET_SizeMismatch(HWND hwndDlg, const PropSheetInfo* psInfo)
rcPage
.
bottom
=
psInfo
->
height
;
MapDialogRect
(
hwndDlg
,
&
rcPage
);
TRACE
(
"biggest page %d %d %d %d
\n
"
,
rcPage
.
left
,
rcPage
.
top
,
rcPage
.
right
,
rcPage
.
bottom
);
TRACE
(
"biggest page %s
\n
"
,
wine_dbgstr_rect
(
&
rcPage
));
if
(
(
rcPage
.
right
-
rcPage
.
left
)
!=
(
rcOrigTab
.
right
-
rcOrigTab
.
left
)
)
return
TRUE
;
...
...
@@ -798,8 +796,7 @@ static BOOL PROPSHEET_AdjustSize(HWND hwndDlg, PropSheetInfo* psInfo)
GetClientRect
(
hwndTabCtrl
,
&
rc
);
TRACE
(
"tab client rc %d %d %d %d
\n
"
,
rc
.
left
,
rc
.
top
,
rc
.
right
,
rc
.
bottom
);
TRACE
(
"tab client rc %s
\n
"
,
wine_dbgstr_rect
(
&
rc
));
rc
.
right
+=
((
padding
.
x
*
2
)
+
tabOffsetX
);
rc
.
bottom
+=
(
buttonHeight
+
(
3
*
padding
.
y
)
+
tabOffsetY
);
...
...
@@ -831,7 +828,7 @@ static BOOL PROPSHEET_AdjustSizeWizard(HWND hwndDlg, const PropSheetInfo* psInfo
rc
.
bottom
=
psInfo
->
height
;
MapDialogRect
(
hwndDlg
,
&
rc
);
TRACE
(
"Biggest page %
d %d %d %d
\n
"
,
rc
.
left
,
rc
.
top
,
rc
.
right
,
rc
.
bottom
);
TRACE
(
"Biggest page %
s
\n
"
,
wine_dbgstr_rect
(
&
rc
)
);
/* Add space for the buttons row */
GetWindowRect
(
hwndLine
,
&
lineRect
);
...
...
@@ -2052,8 +2049,8 @@ static BOOL PROPSHEET_SetCurSel(HWND hwndDlg,
* NOTE: The resizing happens every time the page is selected and
* not only when it's created (some applications depend on it). */
PROPSHEET_GetPageRect
(
psInfo
,
hwndDlg
,
&
rc
,
ppshpage
);
TRACE
(
"setting page %p, rc (%
d,%d)-(%d,%d
) w=%d, h=%d
\n
"
,
psInfo
->
proppage
[
index
].
hwndPage
,
rc
.
left
,
rc
.
top
,
rc
.
right
,
rc
.
bottom
,
TRACE
(
"setting page %p, rc (%
s
) w=%d, h=%d
\n
"
,
psInfo
->
proppage
[
index
].
hwndPage
,
wine_dbgstr_rect
(
&
rc
)
,
rc
.
right
-
rc
.
left
,
rc
.
bottom
-
rc
.
top
);
SetWindowPos
(
psInfo
->
proppage
[
index
].
hwndPage
,
HWND_TOP
,
rc
.
left
,
rc
.
top
,
...
...
dlls/comctl32/rebar.c
View file @
39804012
...
...
@@ -409,15 +409,12 @@ REBAR_DumpBand (const REBAR_INFO *iP)
i
,
(
pB
->
lpText
)
?
debugstr_w
(
pB
->
lpText
)
:
"(null)"
);
TRACE
(
"band # %u: lcx=%u, cxEffective=%u, lcy=%u
\n
"
,
i
,
pB
->
lcx
,
pB
->
cxEffective
,
pB
->
lcy
);
TRACE
(
"band # %u: fStatus=%08x, fDraw=%08x, Band=(%d,%d)-(%d,%d), Grip=(%d,%d)-(%d,%d)
\n
"
,
i
,
pB
->
fStatus
,
pB
->
fDraw
,
pB
->
rcBand
.
left
,
pB
->
rcBand
.
top
,
pB
->
rcBand
.
right
,
pB
->
rcBand
.
bottom
,
pB
->
rcGripper
.
left
,
pB
->
rcGripper
.
top
,
pB
->
rcGripper
.
right
,
pB
->
rcGripper
.
bottom
);
TRACE
(
"band # %u: Img=(%d,%d)-(%d,%d), Txt=(%d,%d)-(%d,%d), Child=(%d,%d)-(%d,%d)
\n
"
,
i
,
pB
->
rcCapImage
.
left
,
pB
->
rcCapImage
.
top
,
pB
->
rcCapImage
.
right
,
pB
->
rcCapImage
.
bottom
,
pB
->
rcCapText
.
left
,
pB
->
rcCapText
.
top
,
pB
->
rcCapText
.
right
,
pB
->
rcCapText
.
bottom
,
pB
->
rcChild
.
left
,
pB
->
rcChild
.
top
,
pB
->
rcChild
.
right
,
pB
->
rcChild
.
bottom
);
TRACE
(
"band # %u: fStatus=%08x, fDraw=%08x, Band=(%s), Grip=(%s)
\n
"
,
i
,
pB
->
fStatus
,
pB
->
fDraw
,
wine_dbgstr_rect
(
&
pB
->
rcBand
),
wine_dbgstr_rect
(
&
pB
->
rcGripper
));
TRACE
(
"band # %u: Img=(%s), Txt=(%s), Child=(%s)
\n
"
,
i
,
wine_dbgstr_rect
(
&
pB
->
rcCapImage
),
wine_dbgstr_rect
(
&
pB
->
rcCapText
),
wine_dbgstr_rect
(
&
pB
->
rcChild
));
}
}
...
...
@@ -1018,11 +1015,9 @@ REBAR_MoveChildWindows (const REBAR_INFO *infoPtr, UINT start, UINT endplus)
REBAR_Notify
((
NMHDR
*
)
&
rbcz
,
infoPtr
,
RBN_CHILDSIZE
);
if
(
!
EqualRect
(
&
lpBand
->
rcChild
,
&
rbcz
.
rcChild
))
{
TRACE
(
"Child rect changed by NOTIFY for band %u
\n
"
,
i
);
TRACE
(
" from (%d,%d)-(%d,%d) to (%d,%d)-(%d,%d)
\n
"
,
lpBand
->
rcChild
.
left
,
lpBand
->
rcChild
.
top
,
lpBand
->
rcChild
.
right
,
lpBand
->
rcChild
.
bottom
,
rbcz
.
rcChild
.
left
,
rbcz
.
rcChild
.
top
,
rbcz
.
rcChild
.
right
,
rbcz
.
rcChild
.
bottom
);
TRACE
(
" from (%s) to (%s)
\n
"
,
wine_dbgstr_rect
(
&
lpBand
->
rcChild
),
wine_dbgstr_rect
(
&
rbcz
.
rcChild
));
lpBand
->
rcChild
=
rbcz
.
rcChild
;
/* *** ??? */
}
...
...
@@ -1318,7 +1313,7 @@ REBAR_Layout(REBAR_INFO *infoPtr, const RECT *lpRect)
GetClientRect
(
infoPtr
->
hwndSelf
,
&
rcAdj
);
else
GetClientRect
(
GetParent
(
infoPtr
->
hwndSelf
),
&
rcAdj
);
TRACE
(
"adjustment rect is (%
d,%d)-(%d,%d)
\n
"
,
rcAdj
.
left
,
rcAdj
.
top
,
rcAdj
.
right
,
rcAdj
.
bottom
);
TRACE
(
"adjustment rect is (%
s)
\n
"
,
wine_dbgstr_rect
(
&
rcAdj
)
);
adjcx
=
get_rect_cx
(
infoPtr
,
&
rcAdj
);
adjcy
=
get_rect_cy
(
infoPtr
,
&
rcAdj
);
...
...
@@ -1685,9 +1680,8 @@ REBAR_InternalEraseBkGnd (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lPara
else
DrawEdge
(
hdc
,
&
rcRowSep
,
EDGE_ETCHED
,
BF_BOTTOM
);
}
TRACE
(
"drawing band separator bottom (%d,%d)-(%d,%d)
\n
"
,
rcRowSep
.
left
,
rcRowSep
.
top
,
rcRowSep
.
right
,
rcRowSep
.
bottom
);
TRACE
(
"drawing band separator bottom (%s)
\n
"
,
wine_dbgstr_rect
(
&
rcRowSep
));
}
}
...
...
@@ -1711,8 +1705,8 @@ REBAR_InternalEraseBkGnd (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lPara
else
DrawEdge
(
hdc
,
&
rcSep
,
EDGE_ETCHED
,
BF_RIGHT
);
}
TRACE
(
"drawing band separator right (%
d,%d)-(%d,%d
)
\n
"
,
rcSep
.
left
,
rcSep
.
top
,
rcSep
.
right
,
rcSep
.
bottom
);
TRACE
(
"drawing band separator right (%
s
)
\n
"
,
wine_dbgstr_rect
(
&
rcSep
)
);
}
/* draw the actual background */
...
...
@@ -2145,8 +2139,7 @@ REBAR_GetRect (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
/* For CCS_VERT the coordinates will be swapped - like on Windows */
CopyRect
(
lprc
,
&
lpBand
->
rcBand
);
TRACE
(
"band %d, (%d,%d)-(%d,%d)
\n
"
,
iBand
,
lprc
->
left
,
lprc
->
top
,
lprc
->
right
,
lprc
->
bottom
);
TRACE
(
"band %d, (%s)
\n
"
,
iBand
,
wine_dbgstr_rect
(
lprc
));
return
TRUE
;
}
...
...
@@ -2689,16 +2682,13 @@ REBAR_SizeToRect (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
if
(
lpRect
==
NULL
)
return
FALSE
;
TRACE
(
"[%d %d %d %d]
\n
"
,
lpRect
->
left
,
lpRect
->
top
,
lpRect
->
right
,
lpRect
->
bottom
);
TRACE
(
"[%s]
\n
"
,
wine_dbgstr_rect
(
lpRect
));
/* what is going on???? */
GetWindowRect
(
infoPtr
->
hwndSelf
,
&
t1
);
TRACE
(
"window rect [%d %d %d %d]
\n
"
,
t1
.
left
,
t1
.
top
,
t1
.
right
,
t1
.
bottom
);
TRACE
(
"window rect [%s]
\n
"
,
wine_dbgstr_rect
(
&
t1
));
GetClientRect
(
infoPtr
->
hwndSelf
,
&
t1
);
TRACE
(
"client rect [%d %d %d %d]
\n
"
,
t1
.
left
,
t1
.
top
,
t1
.
right
,
t1
.
bottom
);
TRACE
(
"client rect [%s]
\n
"
,
wine_dbgstr_rect
(
&
t1
));
/* force full _Layout processing */
REBAR_Layout
(
infoPtr
,
lpRect
);
...
...
@@ -2718,9 +2708,8 @@ REBAR_Create (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
if
(
TRACE_ON
(
rebar
))
{
GetWindowRect
(
infoPtr
->
hwndSelf
,
&
wnrc1
);
GetClientRect
(
infoPtr
->
hwndSelf
,
&
clrc1
);
TRACE
(
"window=(%d,%d)-(%d,%d) client=(%d,%d)-(%d,%d) cs=(%d,%d %dx%d)
\n
"
,
wnrc1
.
left
,
wnrc1
.
top
,
wnrc1
.
right
,
wnrc1
.
bottom
,
clrc1
.
left
,
clrc1
.
top
,
clrc1
.
right
,
clrc1
.
bottom
,
TRACE
(
"window=(%s) client=(%s) cs=(%d,%d %dx%d)
\n
"
,
wine_dbgstr_rect
(
&
wnrc1
),
wine_dbgstr_rect
(
&
clrc1
),
cs
->
x
,
cs
->
y
,
cs
->
cx
,
cs
->
cy
);
}
...
...
@@ -3016,7 +3005,7 @@ REBAR_NCCalcSize (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
/* FIXME: should use GetThemeInt */
rect
->
top
=
min
(
rect
->
top
+
1
,
rect
->
bottom
);
}
TRACE
(
"new client=(%
d,%d)-(%d,%d)
\n
"
,
rect
->
left
,
rect
->
top
,
rect
->
right
,
rect
->
bottom
);
TRACE
(
"new client=(%
s)
\n
"
,
wine_dbgstr_rect
(
rect
)
);
return
0
;
}
...
...
@@ -3038,9 +3027,8 @@ REBAR_NCCreate (HWND hwnd, WPARAM wParam, LPARAM lParam)
if
(
TRACE_ON
(
rebar
))
{
GetWindowRect
(
hwnd
,
&
wnrc1
);
GetClientRect
(
hwnd
,
&
clrc1
);
TRACE
(
"window=(%d,%d)-(%d,%d) client=(%d,%d)-(%d,%d) cs=(%d,%d %dx%d)
\n
"
,
wnrc1
.
left
,
wnrc1
.
top
,
wnrc1
.
right
,
wnrc1
.
bottom
,
clrc1
.
left
,
clrc1
.
top
,
clrc1
.
right
,
clrc1
.
bottom
,
TRACE
(
"window=(%s) client=(%s) cs=(%d,%d %dx%d)
\n
"
,
wine_dbgstr_rect
(
&
wnrc1
),
wine_dbgstr_rect
(
&
clrc1
),
cs
->
x
,
cs
->
y
,
cs
->
cx
,
cs
->
cy
);
}
...
...
@@ -3167,9 +3155,7 @@ REBAR_NCPaint (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
return
0
;
GetWindowRect
(
infoPtr
->
hwndSelf
,
&
rcWindow
);
OffsetRect
(
&
rcWindow
,
-
rcWindow
.
left
,
-
rcWindow
.
top
);
TRACE
(
"rect (%d,%d)-(%d,%d)
\n
"
,
rcWindow
.
left
,
rcWindow
.
top
,
rcWindow
.
right
,
rcWindow
.
bottom
);
TRACE
(
"rect (%s)
\n
"
,
wine_dbgstr_rect
(
&
rcWindow
));
DrawEdge
(
hdc
,
&
rcWindow
,
EDGE_ETCHED
,
BF_RECT
);
ReleaseDC
(
infoPtr
->
hwndSelf
,
hdc
);
}
...
...
@@ -3180,9 +3166,7 @@ REBAR_NCPaint (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
return
0
;
GetWindowRect
(
infoPtr
->
hwndSelf
,
&
rcWindow
);
OffsetRect
(
&
rcWindow
,
-
rcWindow
.
left
,
-
rcWindow
.
top
);
TRACE
(
"rect (%d,%d)-(%d,%d)
\n
"
,
rcWindow
.
left
,
rcWindow
.
top
,
rcWindow
.
right
,
rcWindow
.
bottom
);
TRACE
(
"rect (%s)
\n
"
,
wine_dbgstr_rect
(
&
rcWindow
));
DrawThemeEdge
(
theme
,
hdc
,
0
,
0
,
&
rcWindow
,
BDR_RAISEDINNER
,
BF_TOP
,
NULL
);
ReleaseDC
(
infoPtr
->
hwndSelf
,
hdc
);
}
...
...
@@ -3220,10 +3204,8 @@ REBAR_Paint (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
GetClientRect
(
infoPtr
->
hwndSelf
,
&
rc
);
hdc
=
wParam
==
0
?
BeginPaint
(
infoPtr
->
hwndSelf
,
&
ps
)
:
(
HDC
)
wParam
;
TRACE
(
"painting (%d,%d)-(%d,%d) client (%d,%d)-(%d,%d)
\n
"
,
ps
.
rcPaint
.
left
,
ps
.
rcPaint
.
top
,
ps
.
rcPaint
.
right
,
ps
.
rcPaint
.
bottom
,
rc
.
left
,
rc
.
top
,
rc
.
right
,
rc
.
bottom
);
TRACE
(
"painting (%s) client (%s)
\n
"
,
wine_dbgstr_rect
(
&
ps
.
rcPaint
),
wine_dbgstr_rect
(
&
rc
));
if
(
ps
.
fErase
)
{
/* Erase area of paint if requested */
...
...
@@ -3384,8 +3366,7 @@ REBAR_WindowPosChanged (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
ret
=
DefWindowProcW
(
infoPtr
->
hwndSelf
,
WM_WINDOWPOSCHANGED
,
wParam
,
lParam
);
GetWindowRect
(
infoPtr
->
hwndSelf
,
&
rc
);
TRACE
(
"hwnd %p new pos (%d,%d)-(%d,%d)
\n
"
,
infoPtr
->
hwndSelf
,
rc
.
left
,
rc
.
top
,
rc
.
right
,
rc
.
bottom
);
TRACE
(
"hwnd %p new pos (%s)
\n
"
,
infoPtr
->
hwndSelf
,
wine_dbgstr_rect
(
&
rc
));
return
ret
;
}
...
...
dlls/comctl32/status.c
View file @
39804012
...
...
@@ -114,8 +114,8 @@ STATUSBAR_DrawSizeGrip (HTHEME theme, HDC hdc, LPRECT lpRect)
POINT
pt
;
INT
i
;
TRACE
(
"draw size grip %
d,%d - %d,%d
\n
"
,
lpRect
->
left
,
lpRect
->
top
,
lpRect
->
right
,
lpRect
->
bottom
);
TRACE
(
"draw size grip %
s
\n
"
,
wine_dbgstr_rect
(
lpRect
)
);
if
(
theme
)
{
RECT
gripperRect
;
...
...
@@ -175,7 +175,7 @@ STATUSBAR_DrawPart (const STATUS_INFO *infoPtr, HDC hdc, const STATUSWINDOWPART
HTHEME
theme
=
GetWindowTheme
(
infoPtr
->
Self
);
int
themePart
=
SP_PANE
;
TRACE
(
"part bound %
d,%d - %d,%d
\n
"
,
r
.
left
,
r
.
top
,
r
.
right
,
r
.
bottom
);
TRACE
(
"part bound %
s
\n
"
,
wine_dbgstr_rect
(
&
r
)
);
if
(
part
->
style
&
SBT_POPOUT
)
border
=
BDR_RAISEDOUTER
;
else
if
(
part
->
style
&
SBT_NOBORDERS
)
...
...
@@ -333,7 +333,7 @@ STATUSBAR_SetPartBounds (STATUS_INFO *infoPtr)
/* get our window size */
GetClientRect
(
infoPtr
->
Self
,
&
rect
);
TRACE
(
"client wnd size is %
d,%d - %d,%d
\n
"
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
TRACE
(
"client wnd size is %
s
\n
"
,
wine_dbgstr_rect
(
&
rect
)
);
rect
.
left
+=
infoPtr
->
horizontalBorder
;
rect
.
top
+=
infoPtr
->
verticalBorder
;
...
...
dlls/comctl32/tab.c
View file @
39804012
...
...
@@ -414,9 +414,8 @@ static BOOL TAB_InternalGetItemRect(
SELECTED_TAB_OFFSET
,
0
);
}
TRACE
(
"item %d tab h=%d, rect=(%d,%d)-(%d,%d)
\n
"
,
itemIndex
,
infoPtr
->
tabHeight
,
itemRect
->
left
,
itemRect
->
top
,
itemRect
->
right
,
itemRect
->
bottom
);
TRACE
(
"item %d tab h=%d, rect=(%s)
\n
"
,
itemIndex
,
infoPtr
->
tabHeight
,
wine_dbgstr_rect
(
itemRect
));
/* Now, calculate the position of the item as if it were selected. */
if
(
selectedRect
!=
NULL
)
...
...
@@ -529,9 +528,7 @@ static void TAB_FocusChanging(const TAB_INFO *infoPtr)
*/
if
(
isVisible
)
{
TRACE
(
"invalidate (%d,%d)-(%d,%d)
\n
"
,
selectedRect
.
left
,
selectedRect
.
top
,
selectedRect
.
right
,
selectedRect
.
bottom
);
TRACE
(
"invalidate (%s)
\n
"
,
wine_dbgstr_rect
(
&
selectedRect
));
InvalidateRect
(
infoPtr
->
hwnd
,
&
selectedRect
,
TRUE
);
}
}
...
...
@@ -864,7 +861,8 @@ static LRESULT TAB_AdjustRect(const TAB_INFO *infoPtr, WPARAM fLarger, LPRECT pr
DWORD
lStyle
=
GetWindowLongW
(
infoPtr
->
hwnd
,
GWL_STYLE
);
LONG
*
iRightBottom
,
*
iLeftTop
;
TRACE
(
"hwnd=%p fLarger=%ld (%d,%d)-(%d,%d)
\n
"
,
infoPtr
->
hwnd
,
fLarger
,
prc
->
left
,
prc
->
top
,
prc
->
right
,
prc
->
bottom
);
TRACE
(
"hwnd=%p fLarger=%ld (%s)
\n
"
,
infoPtr
->
hwnd
,
fLarger
,
wine_dbgstr_rect
(
prc
));
if
(
lStyle
&
TCS_VERTICAL
)
{
...
...
@@ -1217,8 +1215,7 @@ static void TAB_SetItemBounds (TAB_INFO *infoPtr)
curr
->
rect
.
bottom
=
0
;
curr
->
rect
.
top
=
curItemRowCount
-
1
;
TRACE
(
"Rect: T %i, L %i, B %i, R %i
\n
"
,
curr
->
rect
.
top
,
curr
->
rect
.
left
,
curr
->
rect
.
bottom
,
curr
->
rect
.
right
);
TRACE
(
"Rect: %s
\n
"
,
wine_dbgstr_rect
(
&
curr
->
rect
));
/*
* The leftmost position of the next item is the rightmost position
...
...
@@ -1598,8 +1595,7 @@ TAB_DrawItemInterior(const TAB_INFO *infoPtr, HDC hdc, INT iItem, RECT *drawRect
}
}
}
TRACE
(
"drawRect=(%d,%d)-(%d,%d)
\n
"
,
drawRect
->
left
,
drawRect
->
top
,
drawRect
->
right
,
drawRect
->
bottom
);
TRACE
(
"drawRect=(%s)
\n
"
,
wine_dbgstr_rect
(
drawRect
));
/* Clear interior */
TAB_EraseTabInterior
(
infoPtr
,
hdc
,
iItem
,
drawRect
);
...
...
@@ -1742,10 +1738,9 @@ TAB_DrawItemInterior(const TAB_INFO *infoPtr, HDC hdc, INT iItem, RECT *drawRect
if
(
center_offset_v
<
0
)
center_offset_v
=
0
;
TRACE
(
"for <%s>, c_o_h=%d, c_o_v=%d, draw=(%
d,%d)-(%d,%d
), textlen=%d
\n
"
,
TRACE
(
"for <%s>, c_o_h=%d, c_o_v=%d, draw=(%
s
), textlen=%d
\n
"
,
debugstr_w
(
item
->
pszText
),
center_offset_h
,
center_offset_v
,
drawRect
->
left
,
drawRect
->
top
,
drawRect
->
right
,
drawRect
->
bottom
,
(
rcText
.
right
-
rcText
.
left
));
wine_dbgstr_rect
(
drawRect
),
(
rcText
.
right
-
rcText
.
left
));
if
((
lStyle
&
TCS_VERTICAL
)
&&
(
lStyle
&
TCS_BOTTOM
))
{
...
...
@@ -1873,10 +1868,9 @@ TAB_DrawItemInterior(const TAB_INFO *infoPtr, HDC hdc, INT iItem, RECT *drawRect
}
else
{
TRACE
(
"for <%s>, c_o_h=%d, c_o_v=%d, draw=(%
d,%d)-(%d,%d
), textlen=%d
\n
"
,
TRACE
(
"for <%s>, c_o_h=%d, c_o_v=%d, draw=(%
s
), textlen=%d
\n
"
,
debugstr_w
(
item
->
pszText
),
center_offset_h
,
center_offset_v
,
drawRect
->
left
,
drawRect
->
top
,
drawRect
->
right
,
drawRect
->
bottom
,
(
rcText
.
right
-
rcText
.
left
));
wine_dbgstr_rect
(
drawRect
),
(
rcText
.
right
-
rcText
.
left
));
if
(
item
->
pszText
)
{
DrawTextW
...
...
@@ -2061,10 +2055,8 @@ static void TAB_DrawItem(const TAB_INFO *infoPtr, HDC hdc, INT iItem)
/* Adjust both rectangles to match native */
r
.
left
+=
(
1
-
ZZ
);
TRACE
(
"<right> item=%d, fill=(%d,%d)-(%d,%d), edge=(%d,%d)-(%d,%d)
\n
"
,
iItem
,
fillRect
.
left
,
fillRect
.
top
,
fillRect
.
right
,
fillRect
.
bottom
,
r
.
left
,
r
.
top
,
r
.
right
,
r
.
bottom
);
TRACE
(
"<right> item=%d, fill=(%s), edge=(%s)
\n
"
,
iItem
,
wine_dbgstr_rect
(
&
fillRect
),
wine_dbgstr_rect
(
&
r
));
/* Clear interior */
SetBkColor
(
hdc
,
bkgnd
);
...
...
@@ -2102,10 +2094,8 @@ static void TAB_DrawItem(const TAB_INFO *infoPtr, HDC hdc, INT iItem)
}
else
{
TRACE
(
"<left> item=%d, fill=(%d,%d)-(%d,%d), edge=(%d,%d)-(%d,%d)
\n
"
,
iItem
,
fillRect
.
left
,
fillRect
.
top
,
fillRect
.
right
,
fillRect
.
bottom
,
r
.
left
,
r
.
top
,
r
.
right
,
r
.
bottom
);
TRACE
(
"<left> item=%d, fill=(%s), edge=(%s)
\n
"
,
iItem
,
wine_dbgstr_rect
(
&
fillRect
),
wine_dbgstr_rect
(
&
r
));
/* Clear interior */
SetBkColor
(
hdc
,
bkgnd
);
...
...
@@ -2156,10 +2146,8 @@ static void TAB_DrawItem(const TAB_INFO *infoPtr, HDC hdc, INT iItem)
r
.
top
-=
1
;
}
TRACE
(
"<bottom> item=%d, fill=(%d,%d)-(%d,%d), edge=(%d,%d)-(%d,%d)
\n
"
,
iItem
,
fillRect
.
left
,
fillRect
.
top
,
fillRect
.
right
,
fillRect
.
bottom
,
r
.
left
,
r
.
top
,
r
.
right
,
r
.
bottom
);
TRACE
(
"<bottom> item=%d, fill=(%s), edge=(%s)
\n
"
,
iItem
,
wine_dbgstr_rect
(
&
fillRect
),
wine_dbgstr_rect
(
&
r
));
/* Clear interior */
SetBkColor
(
hdc
,
bkgnd
);
...
...
@@ -2210,10 +2198,8 @@ static void TAB_DrawItem(const TAB_INFO *infoPtr, HDC hdc, INT iItem)
r
.
bottom
+=
2
;
}
TRACE
(
"<top> item=%d, fill=(%d,%d)-(%d,%d), edge=(%d,%d)-(%d,%d)
\n
"
,
iItem
,
fillRect
.
left
,
fillRect
.
top
,
fillRect
.
right
,
fillRect
.
bottom
,
r
.
left
,
r
.
top
,
r
.
right
,
r
.
bottom
);
TRACE
(
"<top> item=%d, fill=(%s), edge=(%s)
\n
"
,
iItem
,
wine_dbgstr_rect
(
&
fillRect
),
wine_dbgstr_rect
(
&
r
));
/* Clear interior */
SetBkColor
(
hdc
,
bkgnd
);
...
...
@@ -2281,8 +2267,7 @@ static void TAB_DrawBorder(const TAB_INFO *infoPtr, HDC hdc)
rect
.
top
+=
infoPtr
->
tabHeight
*
infoPtr
->
uNumRows
+
CONTROL_BORDER_SIZEX
;
}
TRACE
(
"border=(%d,%d)-(%d,%d)
\n
"
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
TRACE
(
"border=(%s)
\n
"
,
wine_dbgstr_rect
(
&
rect
));
if
(
theme
)
DrawThemeBackground
(
theme
,
hdc
,
TABP_PANE
,
0
,
&
rect
,
NULL
);
...
...
@@ -2517,11 +2502,9 @@ static void TAB_InvalidateTabArea(const TAB_INFO *infoPtr)
else
rInvalidate
.
right
=
clientRect
.
right
-
r
.
left
;
}
TRACE
(
"invalidate (%d,%d)-(%d,%d)
\n
"
,
rInvalidate
.
left
,
rInvalidate
.
top
,
rInvalidate
.
right
,
rInvalidate
.
bottom
);
TRACE
(
"invalidate (%s)
\n
"
,
wine_dbgstr_rect
(
&
rInvalidate
));
InvalidateRect
(
infoPtr
->
hwnd
,
&
rInvalidate
,
TRUE
);
}
...
...
@@ -2535,9 +2518,7 @@ static inline LRESULT TAB_Paint (TAB_INFO *infoPtr, HDC hdcPaint)
else
{
hdc
=
BeginPaint
(
infoPtr
->
hwnd
,
&
ps
);
TRACE
(
"erase %d, rect=(%d,%d)-(%d,%d)
\n
"
,
ps
.
fErase
,
ps
.
rcPaint
.
left
,
ps
.
rcPaint
.
top
,
ps
.
rcPaint
.
right
,
ps
.
rcPaint
.
bottom
);
TRACE
(
"erase %d, rect=(%s)
\n
"
,
ps
.
fErase
,
wine_dbgstr_rect
(
&
ps
.
rcPaint
));
}
TAB_Refresh
(
infoPtr
,
hdc
);
...
...
@@ -2557,8 +2538,7 @@ TAB_InsertItemT (TAB_INFO *infoPtr, WPARAM wParam, LPARAM lParam, BOOL bUnicode)
RECT
rect
;
GetClientRect
(
infoPtr
->
hwnd
,
&
rect
);
TRACE
(
"Rect: %p T %i, L %i, B %i, R %i
\n
"
,
infoPtr
->
hwnd
,
rect
.
top
,
rect
.
left
,
rect
.
bottom
,
rect
.
right
);
TRACE
(
"Rect: %p %s
\n
"
,
infoPtr
->
hwnd
,
wine_dbgstr_rect
(
&
rect
));
pti
=
(
TCITEMW
*
)
lParam
;
iItem
=
(
INT
)
wParam
;
...
...
dlls/comctl32/toolbar.c
View file @
39804012
...
...
@@ -283,11 +283,10 @@ TOOLBAR_DumpButton(const TOOLBAR_INFO *infoPtr, const TBUTTON_INFO *bP, INT btn_
bP
->
fsState
,
bP
->
fsStyle
,
bP
->
dwData
,
bP
->
iString
);
TRACE
(
"string %s
\n
"
,
debugstr_w
(
TOOLBAR_GetText
(
infoPtr
,
bP
)));
if
(
internal
)
TRACE
(
"button %d id %d, hot=%s, row=%d, rect=(%
d,%d)-(%d,%d
)
\n
"
,
TRACE
(
"button %d id %d, hot=%s, row=%d, rect=(%
s
)
\n
"
,
btn_num
,
bP
->
idCommand
,
(
bP
->
bHot
)
?
"TRUE"
:
"FALSE"
,
bP
->
nRow
,
bP
->
rect
.
left
,
bP
->
rect
.
top
,
bP
->
rect
.
right
,
bP
->
rect
.
bottom
);
wine_dbgstr_rect
(
&
bP
->
rect
));
}
}
...
...
@@ -509,8 +508,7 @@ TOOLBAR_DrawDDFlatSeparator (const RECT *lpRect, HDC hdc, const TBUTTON_INFO *bt
InflateRect
(
&
myrect
,
-
2
,
0
);
TRACE
(
"rect=(%d,%d)-(%d,%d)
\n
"
,
myrect
.
left
,
myrect
.
top
,
myrect
.
right
,
myrect
.
bottom
);
TRACE
(
"rect=(%s)
\n
"
,
wine_dbgstr_rect
(
&
myrect
));
newcolor
=
(
infoPtr
->
clrBtnShadow
==
CLR_DEFAULT
)
?
comctl32_color
.
clrBtnShadow
:
infoPtr
->
clrBtnShadow
;
...
...
@@ -568,8 +566,8 @@ TOOLBAR_DrawString (const TOOLBAR_INFO *infoPtr, RECT *rcText, LPCWSTR lpText,
/* draw text */
if
(
lpText
)
{
TRACE
(
"string=%s rect=(%d,%d)-(%d,%d
)
\n
"
,
debugstr_w
(
lpText
),
rcText
->
left
,
rcText
->
top
,
rcText
->
right
,
rcText
->
bottom
);
TRACE
(
"string=%s rect=(%s
)
\n
"
,
debugstr_w
(
lpText
),
wine_dbgstr_rect
(
rcText
)
);
hOldFont
=
SelectObject
(
hdc
,
infoPtr
->
hFont
);
if
((
state
&
CDIS_HOT
)
&&
(
dwItemCDFlag
&
TBCDRF_HILITEHOTTRACK
))
{
...
...
@@ -5321,8 +5319,7 @@ TOOLBAR_Unkwn463 (HWND hwnd, WPARAM wParam, LPARAM lParam)
GetWindowRect
(
hwnd
,
&
rc
);
MapWindowPoints
(
0
,
hwndParent
,
(
LPPOINT
)
&
rc
,
2
);
TRACE
(
"mapped to (%d,%d)-(%d,%d)
\n
"
,
rc
.
left
,
rc
.
top
,
rc
.
right
,
rc
.
bottom
);
TRACE
(
"mapped to (%s)
\n
"
,
wine_dbgstr_rect
(
&
rc
));
lpsize
->
cx
=
max
(
rc
.
right
-
rc
.
left
,
infoPtr
->
rcBound
.
right
-
infoPtr
->
rcBound
.
left
);
}
...
...
@@ -6462,9 +6459,7 @@ TOOLBAR_Paint (HWND hwnd, WPARAM wParam)
hdc
=
wParam
==
0
?
BeginPaint
(
hwnd
,
&
ps
)
:
(
HDC
)
wParam
;
TRACE
(
"psrect=(%d,%d)-(%d,%d)
\n
"
,
ps
.
rcPaint
.
left
,
ps
.
rcPaint
.
top
,
ps
.
rcPaint
.
right
,
ps
.
rcPaint
.
bottom
);
TRACE
(
"psrect=(%s)
\n
"
,
wine_dbgstr_rect
(
&
ps
.
rcPaint
));
TOOLBAR_Refresh
(
hwnd
,
hdc
,
&
ps
);
if
(
!
wParam
)
EndPaint
(
hwnd
,
&
ps
);
...
...
dlls/comctl32/trackbar.c
View file @
39804012
...
...
@@ -439,8 +439,7 @@ TRACKBAR_CalcSelection (TRACKBAR_INFO *infoPtr)
}
}
TRACE
(
"selection[left=%d, top=%d, right=%d, bottom=%d]
\n
"
,
selection
->
left
,
selection
->
top
,
selection
->
right
,
selection
->
bottom
);
TRACE
(
"selection[%s]
\n
"
,
wine_dbgstr_rect
(
selection
));
}
static
BOOL
...
...
dlls/comctl32/treeview.c
View file @
39804012
...
...
@@ -2033,8 +2033,7 @@ TREEVIEW_GetItemRect(const TREEVIEW_INFO *infoPtr, BOOL fTextRect, LPRECT lpRect
*
lpRect
=
wineItem
->
rect
;
}
TRACE
(
"%s [L:%d R:%d T:%d B:%d]
\n
"
,
fTextRect
?
"text"
:
"item"
,
lpRect
->
left
,
lpRect
->
right
,
lpRect
->
top
,
lpRect
->
bottom
);
TRACE
(
"%s [%s]
\n
"
,
fTextRect
?
"text"
:
"item"
,
wine_dbgstr_rect
(
lpRect
));
return
TRUE
;
}
...
...
@@ -2580,9 +2579,8 @@ TREEVIEW_DrawItem(const TREEVIEW_INFO *infoPtr, HDC hdc, TREEVIEW_ITEM *wineItem
rcText
.
left
=
wineItem
->
textOffset
;
rcText
.
right
=
rcText
.
left
+
wineItem
->
textWidth
+
4
;
TRACE
(
"drawing text %s at (%d,%d)-(%d,%d)
\n
"
,
debugstr_w
(
wineItem
->
pszText
),
rcText
.
left
,
rcText
.
top
,
rcText
.
right
,
rcText
.
bottom
);
TRACE
(
"drawing text %s at (%s)
\n
"
,
debugstr_w
(
wineItem
->
pszText
),
wine_dbgstr_rect
(
&
rcText
));
/* Draw it */
ExtTextOutW
(
hdc
,
rcText
.
left
+
2
,
rcText
.
top
+
1
,
...
...
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