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
bda6adc5
Commit
bda6adc5
authored
Jun 21, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Jun 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Tests for GetGeneric*.
parent
ced3d81b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
+49
-0
font.c
dlls/gdiplus/tests/font.c
+49
-0
No files found.
dlls/gdiplus/tests/font.c
View file @
bda6adc5
...
@@ -31,6 +31,13 @@ static const WCHAR MicrosoftSansSerif[] = {'M','i','c','r','o','s','o','f','t','
...
@@ -31,6 +31,13 @@ static const WCHAR MicrosoftSansSerif[] = {'M','i','c','r','o','s','o','f','t','
static
const
WCHAR
TimesNewRoman
[]
=
{
'T'
,
'i'
,
'm'
,
'e'
,
's'
,
' '
,
'N'
,
'e'
,
'w'
,
' '
,
'R'
,
'o'
,
'm'
,
'a'
,
'n'
,
'\0'
};
static
const
WCHAR
TimesNewRoman
[]
=
{
'T'
,
'i'
,
'm'
,
'e'
,
's'
,
' '
,
'N'
,
'e'
,
'w'
,
' '
,
'R'
,
'o'
,
'm'
,
'a'
,
'n'
,
'\0'
};
static
const
WCHAR
CourierNew
[]
=
{
'C'
,
'o'
,
'u'
,
'r'
,
'i'
,
'e'
,
'r'
,
' '
,
'N'
,
'e'
,
'w'
,
'\0'
};
static
const
WCHAR
CourierNew
[]
=
{
'C'
,
'o'
,
'u'
,
'r'
,
'i'
,
'e'
,
'r'
,
' '
,
'N'
,
'e'
,
'w'
,
'\0'
};
static
const
char
*
debugstr_w
(
LPCWSTR
str
)
{
static
char
buf
[
1024
];
WideCharToMultiByte
(
CP_ACP
,
0
,
str
,
-
1
,
buf
,
sizeof
(
buf
),
NULL
,
NULL
);
return
buf
;
}
static
void
test_logfont
(
void
)
static
void
test_logfont
(
void
)
{
{
LOGFONTW
lfw
,
lfw2
;
LOGFONTW
lfw
,
lfw2
;
...
@@ -147,6 +154,47 @@ static void test_fontfamily (void)
...
@@ -147,6 +154,47 @@ static void test_fontfamily (void)
}
}
static
void
test_getgenerics
(
void
)
{
GpStatus
stat
;
GpFontFamily
**
family
;
WCHAR
familyName
[
LF_FACESIZE
];
ZeroMemory
(
familyName
,
sizeof
(
familyName
)
/
sizeof
(
WCHAR
));
family
=
GdipAlloc
(
sizeof
(
GpFontFamily
*
));
stat
=
GdipGetGenericFontFamilySansSerif
(
family
);
expect
(
Ok
,
stat
);
stat
=
GdipGetFamilyName
(
*
family
,
familyName
,
LANG_NEUTRAL
);
expect
(
Ok
,
stat
);
ok
((
lstrcmpiW
(
familyName
,
MicrosoftSansSerif
)
==
0
)
||
(
lstrcmpiW
(
familyName
,
MSSansSerif
)
==
0
),
"Expected Microsoft Sans Serif or MS Sans Serif, got %s
\n
"
,
debugstr_w
(
familyName
));
stat
=
GdipDeleteFontFamily
(
*
family
);
expect
(
Ok
,
stat
);
stat
=
GdipGetGenericFontFamilySerif
(
family
);
expect
(
Ok
,
stat
);
stat
=
GdipGetFamilyName
(
*
family
,
familyName
,
LANG_NEUTRAL
);
expect
(
Ok
,
stat
);
ok
(
lstrcmpiW
(
familyName
,
TimesNewRoman
)
==
0
,
"Expected Times New Roman, got %s
\n
"
,
debugstr_w
(
familyName
));
stat
=
GdipDeleteFontFamily
(
*
family
);
expect
(
Ok
,
stat
);
stat
=
GdipGetGenericFontFamilyMonospace
(
family
);
expect
(
Ok
,
stat
);
stat
=
GdipGetFamilyName
(
*
family
,
familyName
,
LANG_NEUTRAL
);
expect
(
Ok
,
stat
);
ok
(
lstrcmpiW
(
familyName
,
CourierNew
)
==
0
,
"Expected Courier New, got %s
\n
"
,
debugstr_w
(
familyName
));
stat
=
GdipDeleteFontFamily
(
*
family
);
expect
(
Ok
,
stat
);
GdipFree
(
family
);
}
START_TEST
(
font
)
START_TEST
(
font
)
{
{
struct
GdiplusStartupInput
gdiplusStartupInput
;
struct
GdiplusStartupInput
gdiplusStartupInput
;
...
@@ -161,6 +209,7 @@ START_TEST(font)
...
@@ -161,6 +209,7 @@ START_TEST(font)
test_logfont
();
test_logfont
();
test_fontfamily
();
test_fontfamily
();
test_getgenerics
();
GdiplusShutdown
(
gdiplusToken
);
GdiplusShutdown
(
gdiplusToken
);
}
}
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