Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3a0b40ff
Commit
3a0b40ff
authored
Feb 20, 2006
by
Rein Klazes
Committed by
Alexandre Julliard
Feb 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
menu: Take the MF_DEFAULT flag in to account in MENU_CalcItemSize.
parent
3e47c82e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
menu.c
dlls/user/menu.c
+5
-0
No files found.
dlls/user/menu.c
View file @
3a0b40ff
...
@@ -1026,10 +1026,14 @@ static void MENU_CalcItemSize( HDC hdc, MENUITEM *lpitem, HWND hwndOwner,
...
@@ -1026,10 +1026,14 @@ static void MENU_CalcItemSize( HDC hdc, MENUITEM *lpitem, HWND hwndOwner,
/* it must be a text item - unless it's the system menu */
/* it must be a text item - unless it's the system menu */
if
(
!
(
lpitem
->
fType
&
MF_SYSMENU
)
&&
lpitem
->
text
)
{
if
(
!
(
lpitem
->
fType
&
MF_SYSMENU
)
&&
lpitem
->
text
)
{
HFONT
hfontOld
=
NULL
;
RECT
rc
=
lpitem
->
rect
;
RECT
rc
=
lpitem
->
rect
;
LONG
txtheight
,
txtwidth
;
LONG
txtheight
,
txtwidth
;
lpitem
->
xTab
=
0
;
lpitem
->
xTab
=
0
;
if
(
lpitem
->
fState
&
MFS_DEFAULT
)
{
hfontOld
=
SelectObject
(
hdc
,
get_menu_font
(
TRUE
)
);
}
if
(
menuBar
)
{
if
(
menuBar
)
{
txtheight
=
DrawTextW
(
hdc
,
lpitem
->
text
,
-
1
,
&
rc
,
txtheight
=
DrawTextW
(
hdc
,
lpitem
->
text
,
-
1
,
&
rc
,
DT_SINGLELINE
|
DT_CALCRECT
);
DT_SINGLELINE
|
DT_CALCRECT
);
...
@@ -1071,6 +1075,7 @@ static void MENU_CalcItemSize( HDC hdc, MENUITEM *lpitem, HWND hwndOwner,
...
@@ -1071,6 +1075,7 @@ static void MENU_CalcItemSize( HDC hdc, MENUITEM *lpitem, HWND hwndOwner,
itemheight
=
max
(
itemheight
,
itemheight
=
max
(
itemheight
,
max
(
txtheight
+
2
,
menucharsize
.
cy
+
4
));
max
(
txtheight
+
2
,
menucharsize
.
cy
+
4
));
}
}
if
(
hfontOld
)
SelectObject
(
hdc
,
hfontOld
);
}
else
if
(
menuBar
)
{
}
else
if
(
menuBar
)
{
itemheight
=
max
(
itemheight
,
GetSystemMetrics
(
SM_CYMENU
)
-
1
);
itemheight
=
max
(
itemheight
,
GetSystemMetrics
(
SM_CYMENU
)
-
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