Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
c683ad72
Commit
c683ad72
authored
13 years ago
by
Akihiro Sagawa
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
gdi32/tests: Add tests for East Asian font selection.
parent
9ae17687
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/gdi32/tests/font.c
+58
-0
58 additions, 0 deletions
dlls/gdi32/tests/font.c
with
58 additions
and
0 deletions
dlls/gdi32/tests/font.c
+
58
−
0
View file @
c683ad72
...
...
@@ -4166,6 +4166,63 @@ static void test_vertical_font(void)
DeleteFile
(
ttf_name
);
}
static
INT
CALLBACK
has_vertical_font_proc
(
const
LOGFONT
*
lf
,
const
TEXTMETRIC
*
ntm
,
DWORD
type
,
LPARAM
lParam
)
{
if
(
lf
->
lfFaceName
[
0
]
==
'@'
)
{
return
0
;
}
return
1
;
}
static
void
test_east_asian_font_selection
(
void
)
{
HDC
hdc
;
UINT
charset
[]
=
{
SHIFTJIS_CHARSET
,
HANGEUL_CHARSET
,
JOHAB_CHARSET
,
GB2312_CHARSET
,
CHINESEBIG5_CHARSET
};
size_t
i
;
hdc
=
GetDC
(
NULL
);
for
(
i
=
0
;
i
<
sizeof
(
charset
)
/
sizeof
(
charset
[
0
]);
i
++
)
{
LOGFONTA
lf
;
HFONT
hfont
;
char
face_name
[
LF_FACESIZE
];
int
ret
;
memset
(
&
lf
,
0
,
sizeof
lf
);
lf
.
lfFaceName
[
0
]
=
'\0'
;
lf
.
lfCharSet
=
charset
[
i
];
if
(
EnumFontFamiliesEx
(
hdc
,
&
lf
,
has_vertical_font_proc
,
0
,
0
))
{
skip
(
"Vertical font for charset %u is not installed
\n
"
,
charset
[
i
]);
continue
;
}
hfont
=
CreateFontIndirectA
(
&
lf
);
hfont
=
SelectObject
(
hdc
,
hfont
);
memset
(
face_name
,
0
,
sizeof
face_name
);
ret
=
GetTextFaceA
(
hdc
,
sizeof
face_name
,
face_name
);
todo_wine
ok
(
ret
&&
face_name
[
0
]
!=
'@'
,
"expected non-vertical face for charset %u, got %s
\n
"
,
charset
[
i
],
face_name
);
DeleteObject
(
SelectObject
(
hdc
,
hfont
));
memset
(
&
lf
,
0
,
sizeof
lf
);
strcpy
(
lf
.
lfFaceName
,
"@"
);
lf
.
lfCharSet
=
charset
[
i
];
hfont
=
CreateFontIndirectA
(
&
lf
);
hfont
=
SelectObject
(
hdc
,
hfont
);
memset
(
face_name
,
0
,
sizeof
face_name
);
ret
=
GetTextFaceA
(
hdc
,
sizeof
face_name
,
face_name
);
ok
(
ret
&&
face_name
[
0
]
==
'@'
,
"expected vertical face for charset %u, got %s
\n
"
,
charset
[
i
],
face_name
);
DeleteObject
(
SelectObject
(
hdc
,
hfont
));
}
ReleaseDC
(
NULL
,
hdc
);
}
START_TEST
(
font
)
{
init
();
...
...
@@ -4220,6 +4277,7 @@ START_TEST(font)
test_fullname
();
test_vertical_font
();
test_east_asian_font_selection
();
/* CreateScalableFontResource should be last test until RemoveFontResource
* is properly implemented.
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment