ReactOS 0.4.15-dev-8061-g57b775e
GdiGetCharDimensions.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPL - See COPYING in the top level directory
4 * PURPOSE: Test for GdiGetCharDimensions
5 * PROGRAMMERS: Timo Kreuzer
6 */
7
8#include "precomp.h"
9
11{
12 LOGFONT logfont = {-11, 0, 0, 0, 400,
13 0, 0, 0, 0, 0, 0, 0, 0,
14 "MS Shell Dlg 2"};
15 HFONT hFont, hOldFont;
16 HDC hdc;
17 LONG x, y, x2;
19 SIZE size;
20 static const WCHAR alphabet[] = {
21 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q',
22 'r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H',
23 'I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z',0};
24
25 hFont = CreateFontIndirect(&logfont);
27 hOldFont = SelectObject(hdc, hFont);
28
30 GetTextExtentPointW(hdc, alphabet, 52, &size);
31 x2 = (size.cx / 26 + 1) / 2;
32
33 ok(x == x2, "x=%ld, x2=%ld\n", x, x2);
34 ok(y == tm.tmHeight, "y = %ld, tm.tmHeight = %ld\n", y, tm.tmHeight);
35
36 SelectObject(hdc, hOldFont);
39}
40
42{
44}
45
void Test_GdiGetCharDimensions()
#define ok(value,...)
Definition: atltest.h:57
#define START_TEST(x)
Definition: atltest.h:75
HFONT hFont
Definition: main.c:53
#define NULL
Definition: types.h:112
pKey DeleteObject()
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLsizeiptr size
Definition: glext.h:5919
HDC hdc
Definition: main.c:9
static HDC
Definition: imagelist.c:92
static DWORD *static HFONT(WINAPI *pCreateFontIndirectExA)(const ENUMLOGFONTEXDVA *)
long LONG
Definition: pedump.c:60
Definition: time.h:68
_In_ CLIPOBJ _In_ BRUSHOBJ _In_ LONG _In_ LONG _In_ LONG x2
Definition: winddi.h:3710
LONG WINAPI GdiGetCharDimensions(HDC, LPTEXTMETRICW, LONG *)
Definition: font.c:2145
BOOL WINAPI GetTextExtentPointW(_In_ HDC hdc, _In_reads_(c) LPCWSTR lpString, _In_ int c, _Out_ LPSIZE lpsz)
HGDIOBJ WINAPI SelectObject(_In_ HDC, _In_ HGDIOBJ)
Definition: dc.c:1539
HDC WINAPI CreateCompatibleDC(_In_opt_ HDC hdc)
BOOL WINAPI DeleteDC(_In_ HDC)
#define CreateFontIndirect
Definition: wingdi.h:4444
__wchar_t WCHAR
Definition: xmlstorage.h:180