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
70cc169d
Commit
70cc169d
authored
May 10, 2000
by
Aric Stewart
Committed by
Alexandre Julliard
May 10, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Wine was passing the wrong hwnd as the owner when processing owner
drawn menubars. - When doing MENU_CalcItemSize for the menu bar we were not properly padding the returned rect.
parent
ebf34ae4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
menu.c
controls/menu.c
+19
-3
No files found.
controls/menu.c
View file @
70cc169d
...
...
@@ -795,9 +795,25 @@ static void MENU_CalcItemSize( HDC hdc, MENUITEM *lpitem, HWND hwndOwner,
mis
.
itemHeight
=
0
;
mis
.
itemWidth
=
0
;
SendMessageA
(
hwndOwner
,
WM_MEASUREITEM
,
0
,
(
LPARAM
)
&
mis
);
lpitem
->
rect
.
bottom
+=
mis
.
itemHeight
;
lpitem
->
rect
.
right
+=
mis
.
itemWidth
;
TRACE
(
"id=%04x size=%dx%d
\n
"
,
if
(
menuBar
)
{
lpitem
->
rect
.
right
+=
MENU_BAR_ITEMS_SPACE
;
/* under at least win95 you seem to be given a standard
height for the menu and the height value is ignored */
if
(
TWEAK_WineLook
==
WIN31_LOOK
)
lpitem
->
rect
.
bottom
+=
GetSystemMetrics
(
SM_CYMENU
);
else
lpitem
->
rect
.
bottom
+=
GetSystemMetrics
(
SM_CYMENU
)
-
1
;
}
else
lpitem
->
rect
.
bottom
+=
mis
.
itemHeight
;
TRACE
(
"id=%04x size=%dx%d
\n
"
,
lpitem
->
wID
,
mis
.
itemWidth
,
mis
.
itemHeight
);
/* Fall through to get check/arrow width calculation. */
}
...
...
@@ -1481,7 +1497,7 @@ UINT MENU_DrawMenuBar( HDC hDC, LPRECT lprect, HWND hwnd,
for
(
i
=
0
;
i
<
lppop
->
nItems
;
i
++
)
{
MENU_DrawMenuItem
(
hwnd
,
(
HMENU
)
wndPtr
->
wIDmenu
,
GetWindow
(
hwnd
,
GW_OWNER
)
,
MENU_DrawMenuItem
(
hwnd
,
(
HMENU
)
wndPtr
->
wIDmenu
,
hwnd
,
hDC
,
&
lppop
->
items
[
i
],
lppop
->
Height
,
TRUE
,
ODA_DRAWENTIRE
);
}
retvalue
=
lppop
->
Height
;
...
...
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