2006-02-14 17:38:20 +01:00
|
|
|
/*
|
|
|
|
* Tests for usp10 dll
|
|
|
|
*
|
|
|
|
* Copyright 2006 Jeff Latimer
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2006-02-14 17:38:20 +01:00
|
|
|
*
|
|
|
|
* Notes:
|
|
|
|
* Uniscribe allows for processing of complex scripts such as joining
|
|
|
|
* and filtering characters and bi-directional text with custom line breaks.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <wine/test.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <winerror.h>
|
|
|
|
#include <usp10.h>
|
|
|
|
|
2006-08-04 11:47:37 +02:00
|
|
|
static void test_ScriptItemIzeShapePlace(HDC hdc, unsigned short pwOutGlyphs[256])
|
2006-02-14 17:38:20 +01:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
int iMaxProps;
|
|
|
|
const SCRIPT_PROPERTIES **ppSp;
|
|
|
|
|
|
|
|
int cInChars;
|
|
|
|
int cMaxItems;
|
|
|
|
SCRIPT_ITEM pItem[255];
|
|
|
|
int pcItems;
|
2006-08-04 11:47:37 +02:00
|
|
|
WCHAR TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
|
|
|
|
WCHAR TestItem2[] = {'T', 'e', 's', 't', 'b', 0};
|
2006-02-14 17:38:20 +01:00
|
|
|
|
|
|
|
SCRIPT_CACHE psc;
|
|
|
|
int cChars;
|
|
|
|
int cMaxGlyphs;
|
2006-04-30 15:44:30 +02:00
|
|
|
unsigned short pwOutGlyphs1[256];
|
2006-02-22 13:24:52 +01:00
|
|
|
unsigned short pwOutGlyphs2[256];
|
2006-02-14 17:38:20 +01:00
|
|
|
unsigned short pwLogClust[256];
|
|
|
|
SCRIPT_VISATTR psva[256];
|
|
|
|
int pcGlyphs;
|
|
|
|
int piAdvance[256];
|
|
|
|
GOFFSET pGoffset[256];
|
|
|
|
ABC pABC[256];
|
2006-08-04 11:47:37 +02:00
|
|
|
LOGFONTA lf;
|
2006-06-06 12:09:37 +02:00
|
|
|
HFONT zfont;
|
2006-02-14 17:38:20 +01:00
|
|
|
int cnt;
|
|
|
|
|
|
|
|
|
2006-08-04 11:47:37 +02:00
|
|
|
lstrcpyA(lf.lfFaceName, "Symbol");
|
2006-06-06 12:09:37 +02:00
|
|
|
lf.lfHeight = 10;
|
|
|
|
lf.lfItalic = 0;
|
|
|
|
lf.lfEscapement = 0;
|
|
|
|
lf.lfOrientation = 0;
|
|
|
|
lf.lfUnderline = 0;
|
|
|
|
lf.lfStrikeOut = 0;
|
|
|
|
lf.lfWeight = 3;
|
|
|
|
lf.lfWidth = 10;
|
|
|
|
|
2006-08-04 11:47:37 +02:00
|
|
|
zfont = (HFONT) SelectObject(hdc, CreateFontIndirectA(&lf));
|
2006-06-06 12:09:37 +02:00
|
|
|
|
2006-02-14 17:38:20 +01:00
|
|
|
/* Start testing usp10 functions */
|
|
|
|
/* This test determines that the pointer returned by ScriptGetProperties is valid
|
|
|
|
* by checking a known value in the table */
|
|
|
|
hr = ScriptGetProperties(&ppSp, &iMaxProps);
|
|
|
|
trace("number of script properties %d\n", iMaxProps);
|
2006-02-16 12:06:18 +01:00
|
|
|
ok (iMaxProps > 0, "Number of scripts returned should not be 0\n");
|
|
|
|
if (iMaxProps > 0)
|
|
|
|
ok( ppSp[5]->langid == 9, "Langid[5] not = to 9\n"); /* Check a known value to ensure */
|
|
|
|
/* ptrs work */
|
|
|
|
|
2006-02-14 17:38:20 +01:00
|
|
|
|
|
|
|
/* This set of tests are to check that the various edits in ScriptIemize work */
|
|
|
|
cInChars = 5; /* Length of test without NULL */
|
|
|
|
cMaxItems = 1; /* Check threshold value */
|
|
|
|
hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
|
|
|
|
ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cMaxItems < 2. Was %d\n",
|
|
|
|
cMaxItems);
|
|
|
|
cInChars = 5;
|
|
|
|
cMaxItems = 255;
|
|
|
|
hr = ScriptItemize(NULL, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
|
|
|
|
ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if pwcInChars is NULL\n");
|
|
|
|
|
|
|
|
cInChars = 5;
|
|
|
|
cMaxItems = 255;
|
|
|
|
hr = ScriptItemize(TestItem1, 0, cMaxItems, NULL, NULL, pItem, &pcItems);
|
|
|
|
ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cInChars is 0\n");
|
|
|
|
|
|
|
|
cInChars = 5;
|
|
|
|
cMaxItems = 255;
|
|
|
|
hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, NULL, &pcItems);
|
|
|
|
ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if pItems is NULL\n");
|
|
|
|
|
|
|
|
/* This is a valid test that will cause parsing to take place */
|
|
|
|
cInChars = 5;
|
|
|
|
cMaxItems = 255;
|
|
|
|
hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
|
|
|
|
ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", (unsigned int) hr);
|
|
|
|
/* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
|
|
|
|
* returned. */
|
2006-02-18 16:00:29 +01:00
|
|
|
ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
|
2006-02-14 17:38:20 +01:00
|
|
|
if (pcItems > 0)
|
|
|
|
ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
|
|
|
|
"Start pos not = 0 (%d) or end pos not = %d (%d)\n",
|
|
|
|
pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
|
|
|
|
|
|
|
|
/* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
|
|
|
|
* ie. ScriptItemize has succeeded and that pItem has been set */
|
|
|
|
cInChars = 5;
|
|
|
|
cMaxItems = 255;
|
|
|
|
if (hr == 0) {
|
|
|
|
psc = NULL; /* must be null on first call */
|
|
|
|
cChars = cInChars;
|
2006-02-20 10:19:32 +01:00
|
|
|
cMaxGlyphs = cInChars;
|
2006-02-14 17:38:20 +01:00
|
|
|
hr = ScriptShape(NULL, &psc, TestItem1, cChars,
|
|
|
|
cMaxGlyphs, &pItem[0].a,
|
2006-04-30 15:44:30 +02:00
|
|
|
pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
|
2006-02-20 10:19:32 +01:00
|
|
|
ok (hr == E_PENDING, "If psc is NULL (%08x) the E_PENDING should be returned\n",
|
2006-06-06 12:09:37 +02:00
|
|
|
(unsigned int) hr);
|
2006-02-20 10:19:32 +01:00
|
|
|
cMaxGlyphs = 4;
|
|
|
|
hr = ScriptShape(hdc, &psc, TestItem1, cChars,
|
2006-02-14 17:38:20 +01:00
|
|
|
cMaxGlyphs, &pItem[0].a,
|
2006-04-30 15:44:30 +02:00
|
|
|
pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
|
|
|
|
ok (hr == E_OUTOFMEMORY, "If not enough output area cChars (%d) is > than CMaxGlyphs "
|
|
|
|
"(%d) but not E_OUTOFMEMORY\n",
|
|
|
|
cChars, cMaxGlyphs);
|
2006-02-20 10:19:32 +01:00
|
|
|
cMaxGlyphs = 256;
|
2006-02-14 17:38:20 +01:00
|
|
|
hr = ScriptShape(hdc, &psc, TestItem1, cChars,
|
|
|
|
cMaxGlyphs, &pItem[0].a,
|
2006-04-30 15:44:30 +02:00
|
|
|
pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
|
2006-02-20 10:19:32 +01:00
|
|
|
ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", (unsigned int) hr);
|
|
|
|
ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
|
|
|
|
ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
|
2006-02-14 17:38:20 +01:00
|
|
|
if (hr ==0) {
|
2006-06-06 12:09:37 +02:00
|
|
|
hr = ScriptPlace(hdc, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
|
|
|
|
pGoffset, pABC);
|
|
|
|
ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", (unsigned int) hr);
|
2006-04-30 15:44:30 +02:00
|
|
|
hr = ScriptPlace(NULL, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
|
2006-02-14 17:38:20 +01:00
|
|
|
pGoffset, pABC);
|
2006-06-06 12:09:37 +02:00
|
|
|
ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", (unsigned int) hr);
|
2006-04-30 15:44:30 +02:00
|
|
|
for (cnt=0; cnt < pcGlyphs; cnt++)
|
|
|
|
pwOutGlyphs[cnt] = pwOutGlyphs1[cnt]; /* Send to next function */
|
2006-02-14 17:38:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This test will check to make sure that SCRIPT_CACHE is reused and that not translation *
|
|
|
|
* takes place if fNoGlyphIndex is set. */
|
|
|
|
|
|
|
|
cInChars = 5;
|
|
|
|
cMaxItems = 255;
|
|
|
|
hr = ScriptItemize(TestItem2, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
|
|
|
|
ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", (unsigned int) hr);
|
|
|
|
/* This test is for the intertrim operation of ScriptItemize where only one SCRIPT_ITEM is *
|
|
|
|
* returned. */
|
2006-02-18 16:00:29 +01:00
|
|
|
ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
|
2006-02-14 17:38:20 +01:00
|
|
|
"Start pos not = 0 (%d) or end pos not = %d (%d)\n",
|
|
|
|
pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
|
|
|
|
/* It would appear that we have a valid SCRIPT_ANALYSIS and can continue */
|
|
|
|
if (hr == 0) {
|
|
|
|
cChars = cInChars;
|
|
|
|
cMaxGlyphs = 256;
|
|
|
|
pItem[0].a.fNoGlyphIndex = 1; /* say no translate */
|
|
|
|
hr = ScriptShape(NULL, &psc, TestItem2, cChars,
|
|
|
|
cMaxGlyphs, &pItem[0].a,
|
2006-02-22 13:24:52 +01:00
|
|
|
pwOutGlyphs2, pwLogClust, psva, &pcGlyphs);
|
2006-02-14 17:38:20 +01:00
|
|
|
ok (hr != E_PENDING, "If psc should not be NULL (%08x) and the E_PENDING should be returned\n",
|
2006-02-20 10:19:32 +01:00
|
|
|
(unsigned int) hr);
|
|
|
|
ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", (unsigned int) hr);
|
|
|
|
ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
|
|
|
|
ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
|
2006-02-22 13:24:52 +01:00
|
|
|
for (cnt=0; cnt < cChars && TestItem2[cnt] == pwOutGlyphs2[cnt]; cnt++) {}
|
2006-02-20 10:19:32 +01:00
|
|
|
ok (cnt == cChars, "Translation to place when told not to. WCHAR %d - %04x != %04x\n",
|
2006-02-22 13:24:52 +01:00
|
|
|
cnt, TestItem2[cnt], pwOutGlyphs2[cnt]);
|
2006-02-14 17:38:20 +01:00
|
|
|
if (hr ==0) {
|
2006-06-06 12:09:37 +02:00
|
|
|
hr = ScriptPlace(hdc, &psc, pwOutGlyphs2, pcGlyphs, psva, &pItem[0].a, piAdvance,
|
2006-02-20 10:19:32 +01:00
|
|
|
pGoffset, pABC);
|
2006-02-21 10:24:24 +01:00
|
|
|
ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", (unsigned int) hr);
|
2006-02-14 17:38:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
hr = ScriptFreeCache( &psc);
|
|
|
|
ok (!psc, "psc is not null after ScriptFreeCache\n");
|
2006-02-22 13:24:52 +01:00
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-04 11:47:37 +02:00
|
|
|
void test_ScriptGetCMap(HDC hdc, unsigned short pwOutGlyphs[256])
|
2006-04-30 15:44:30 +02:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
SCRIPT_CACHE psc = NULL;
|
|
|
|
int cInChars;
|
|
|
|
int cChars;
|
|
|
|
unsigned short pwOutGlyphs3[256];
|
2006-08-04 11:47:37 +02:00
|
|
|
WCHAR TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
|
2006-04-30 15:44:30 +02:00
|
|
|
DWORD dwFlags;
|
|
|
|
int cnt;
|
|
|
|
|
|
|
|
/* Check to make sure that SCRIPT_CACHE gets allocated ok */
|
|
|
|
dwFlags = 0;
|
|
|
|
cInChars = cChars = 5;
|
|
|
|
/* Some sanity checks for ScriptGetCMap */
|
|
|
|
|
|
|
|
hr = ScriptGetCMap(NULL, NULL, NULL, 0, 0, NULL);
|
|
|
|
ok( hr == E_INVALIDARG, "(NULL,NULL,NULL,0,0,NULL), "
|
|
|
|
"expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
|
|
|
|
hr = ScriptGetCMap(NULL, NULL, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
|
|
|
|
ok( hr == E_INVALIDARG, "(NULL,NULL,TestItem1, cInChars, dwFlags, pwOutGlyphs3), "
|
|
|
|
"expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
|
|
|
|
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptGetCMap(NULL, &psc, NULL, 0, 0, NULL);
|
2006-06-06 12:14:01 +02:00
|
|
|
ok( hr == E_PENDING, "(NULL,&psc,NULL,0,0NULL), expected E_PENDING, "
|
|
|
|
"got %08x\n", (unsigned int)hr);
|
2006-04-30 15:44:30 +02:00
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
|
2006-06-06 12:14:01 +02:00
|
|
|
/* Set psc to NULL but add hdc, to be able to check if a pointer is returned in psc */
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptGetCMap(hdc, &psc, NULL, 0, 0, NULL);
|
|
|
|
ok( hr == S_OK, "ScriptGetCMap(NULL,&psc,NULL,0,0,NULL), expected S_OK, "
|
|
|
|
"got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc != NULL, "ScritpGetCMap expected psc to be not NULL\n");
|
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptGetCMap(NULL, &psc, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
|
|
|
|
ok( hr == E_PENDING, "(NULL,&psc,), expected E_PENDING, got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
/* Check to see if the results are the same as those returned by ScriptShape */
|
|
|
|
hr = ScriptGetCMap(hdc, &psc, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
|
|
|
|
ok (hr == 0, "ScriptGetCMap should return 0 not (%08x)\n", (unsigned int) hr);
|
|
|
|
ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
|
|
|
|
for (cnt=0; cnt < cChars && pwOutGlyphs[cnt] == pwOutGlyphs3[cnt]; cnt++) {}
|
|
|
|
ok (cnt == cInChars, "Translation not correct. WCHAR %d - %04x != %04x\n",
|
|
|
|
cnt, pwOutGlyphs[cnt], pwOutGlyphs3[cnt]);
|
2006-02-22 13:24:52 +01:00
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
hr = ScriptFreeCache( &psc);
|
|
|
|
ok (!psc, "psc is not null after ScriptFreeCache\n");
|
2006-08-04 11:47:37 +02:00
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void test_ScriptGetFontProperties(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
HDC hdc;
|
|
|
|
HWND hwnd;
|
|
|
|
SCRIPT_CACHE psc,old_psc;
|
|
|
|
SCRIPT_FONTPROPERTIES sfp;
|
|
|
|
|
|
|
|
/* Only do the bare minumum to get a valid hdc */
|
|
|
|
hwnd = CreateWindowExA(0, "static", "", WS_POPUP, 0,0,100,100,0, 0, 0, NULL);
|
|
|
|
assert(hwnd != 0);
|
|
|
|
|
|
|
|
hdc = GetDC(hwnd);
|
|
|
|
ok( hdc != NULL, "HDC failed to be created %p\n", hdc);
|
|
|
|
|
|
|
|
/* Some sanity checks for ScriptGetFontProperties */
|
|
|
|
|
|
|
|
hr = ScriptGetFontProperties(NULL,NULL,NULL);
|
|
|
|
ok( hr == E_INVALIDARG, "(NULL,NULL,NULL), expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
|
|
|
|
hr = ScriptGetFontProperties(NULL,NULL,&sfp);
|
|
|
|
ok( hr == E_INVALIDARG, "(NULL,NULL,&sfp), expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
|
|
|
|
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptGetFontProperties(NULL,&psc,NULL);
|
|
|
|
ok( hr == E_INVALIDARG, "(NULL,&psc,NULL), expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
2006-02-22 13:24:52 +01:00
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptGetFontProperties(NULL,&psc,&sfp);
|
|
|
|
ok( hr == E_PENDING, "(NULL,&psc,&sfp), expected E_PENDING, got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
|
|
|
|
hr = ScriptGetFontProperties(hdc,NULL,NULL);
|
|
|
|
ok( hr == E_INVALIDARG, "(hdc,NULL,NULL), expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
|
|
|
|
hr = ScriptGetFontProperties(hdc,NULL,&sfp);
|
|
|
|
ok( hr == E_INVALIDARG, "(hdc,NULL,&sfp), expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
|
|
|
|
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptGetFontProperties(hdc,&psc,NULL);
|
|
|
|
ok( hr == E_INVALIDARG, "(hdc,&psc,NULL), expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
|
|
|
|
/* Pass an uninitialized sfp */
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptGetFontProperties(hdc,&psc,&sfp);
|
|
|
|
ok( hr == E_INVALIDARG, "(hdc,&psc,&sfp) partly uninitialized, expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc != NULL, "Expected a pointer in psc, got NULL\n");
|
|
|
|
ScriptFreeCache(&psc);
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
|
|
|
|
/* Give it the correct cBytes, we don't care about what's coming back */
|
|
|
|
sfp.cBytes = sizeof(SCRIPT_FONTPROPERTIES);
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptGetFontProperties(hdc,&psc,&sfp);
|
|
|
|
ok( hr == S_OK, "(hdc,&psc,&sfp) partly initialized, expected S_OK, got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc != NULL, "Expected a pointer in psc, got NULL\n");
|
|
|
|
|
|
|
|
/* Save the psc pointer */
|
|
|
|
old_psc = psc;
|
|
|
|
/* Now a NULL hdc again */
|
|
|
|
hr = ScriptGetFontProperties(NULL,&psc,&sfp);
|
|
|
|
ok( hr == S_OK, "(NULL,&psc,&sfp), expected S_OK, got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc == old_psc, "Expected psc not to be changed, was %p is now %p\n", old_psc, psc);
|
|
|
|
ScriptFreeCache(&psc);
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
|
|
|
|
/* Cleanup */
|
|
|
|
ReleaseDC(hwnd, hdc);
|
|
|
|
DestroyWindow(hwnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_ScriptTextOut(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
HWND hwnd;
|
|
|
|
HDC hdc;
|
|
|
|
|
|
|
|
int cInChars;
|
|
|
|
int cMaxItems;
|
|
|
|
SCRIPT_ITEM pItem[255];
|
|
|
|
int pcItems;
|
2006-08-04 11:47:37 +02:00
|
|
|
WCHAR TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
|
2006-04-30 15:44:30 +02:00
|
|
|
|
|
|
|
SCRIPT_CACHE psc;
|
|
|
|
int cChars;
|
|
|
|
int cMaxGlyphs;
|
|
|
|
unsigned short pwOutGlyphs1[256];
|
2006-06-09 12:06:51 +02:00
|
|
|
WORD pwLogClust[256];
|
2006-04-30 15:44:30 +02:00
|
|
|
SCRIPT_VISATTR psva[256];
|
|
|
|
int pcGlyphs;
|
|
|
|
int piAdvance[256];
|
|
|
|
GOFFSET pGoffset[256];
|
|
|
|
ABC pABC[256];
|
|
|
|
RECT rect;
|
2006-06-07 15:05:14 +02:00
|
|
|
int piX;
|
|
|
|
int iCP = 1;
|
|
|
|
BOOL fTrailing = FALSE;
|
|
|
|
SCRIPT_LOGATTR *psla;
|
|
|
|
SCRIPT_LOGATTR sla[256];
|
2006-04-30 15:44:30 +02:00
|
|
|
|
|
|
|
/* We need a valid HDC to drive a lot of Script functions which requires the following *
|
|
|
|
* to set up for the tests. */
|
|
|
|
hwnd = CreateWindowExA(0, "static", "", WS_POPUP, 0,0,100,100,
|
|
|
|
0, 0, 0, NULL);
|
|
|
|
assert(hwnd != 0);
|
|
|
|
ShowWindow(hwnd, SW_SHOW);
|
|
|
|
UpdateWindow(hwnd);
|
|
|
|
|
|
|
|
hdc = GetDC(hwnd); /* We now have a hdc */
|
|
|
|
ok( hdc != NULL, "HDC failed to be created %p\n", hdc);
|
|
|
|
|
|
|
|
/* This is a valid test that will cause parsing to take place */
|
|
|
|
cInChars = 5;
|
|
|
|
cMaxItems = 255;
|
|
|
|
hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
|
|
|
|
ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", (unsigned int) hr);
|
|
|
|
/* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
|
|
|
|
* returned. */
|
|
|
|
ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
|
|
|
|
if (pcItems > 0)
|
|
|
|
ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
|
|
|
|
"Start pos not = 0 (%d) or end pos not = %d (%d)\n",
|
|
|
|
pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
|
|
|
|
|
|
|
|
/* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
|
|
|
|
* ie. ScriptItemize has succeeded and that pItem has been set */
|
|
|
|
cInChars = 5;
|
|
|
|
cMaxItems = 255;
|
|
|
|
if (hr == 0) {
|
|
|
|
psc = NULL; /* must be null on first call */
|
|
|
|
cChars = cInChars;
|
|
|
|
cMaxGlyphs = cInChars;
|
|
|
|
cMaxGlyphs = 256;
|
|
|
|
hr = ScriptShape(hdc, &psc, TestItem1, cChars,
|
|
|
|
cMaxGlyphs, &pItem[0].a,
|
|
|
|
pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
|
|
|
|
ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", (unsigned int) hr);
|
|
|
|
ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
|
|
|
|
ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
|
|
|
|
if (hr ==0) {
|
2006-06-09 12:06:51 +02:00
|
|
|
/* Note hdc is needed as glyph info is not yet in psc */
|
|
|
|
hr = ScriptPlace(hdc, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
|
2006-04-30 15:44:30 +02:00
|
|
|
pGoffset, pABC);
|
|
|
|
ok (hr == 0, "Should return 0 not (%08x)\n", (unsigned int) hr);
|
|
|
|
ScriptFreeCache(&psc); /* Get rid of psc for next test set */
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
|
|
|
|
hr = ScriptTextOut(NULL, NULL, 0, 0, 0, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, NULL);
|
|
|
|
ok (hr == E_INVALIDARG, "Should return 0 not (%08x)\n", (unsigned int) hr);
|
|
|
|
|
|
|
|
hr = ScriptTextOut(NULL, NULL, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
|
|
|
|
piAdvance, NULL, pGoffset);
|
|
|
|
ok( hr == E_INVALIDARG, "(NULL,NULL,TestItem1, cInChars, dwFlags, pwOutGlyphs3), "
|
|
|
|
"expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
|
|
|
|
|
|
|
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
|
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptTextOut(NULL, &psc, 0, 0, 0, NULL, NULL, NULL, 0, NULL, 0,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
ok( hr == E_INVALIDARG, "(NULL,&psc,NULL,0,0,0,NULL,), expected E_INVALIDARG, "
|
|
|
|
"got %08x\n", (unsigned int)hr);
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
|
2006-06-09 12:06:51 +02:00
|
|
|
/* Set psc to NULL, to be able to check if a pointer is returned in psc
|
|
|
|
* hdc is required for this one rather than the usual optional */
|
2006-04-30 15:44:30 +02:00
|
|
|
psc = NULL;
|
|
|
|
hr = ScriptTextOut(NULL, &psc, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
|
|
|
|
piAdvance, NULL, pGoffset);
|
2006-06-09 12:06:51 +02:00
|
|
|
ok( hr == E_INVALIDARG, "(NULL,&psc,), expected E_INVALIDARG, got %08x\n", (unsigned int)hr);
|
2006-04-30 15:44:30 +02:00
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
|
2006-06-09 12:06:51 +02:00
|
|
|
/* Set that is gets a psc and that returns 0 status */
|
2006-04-30 15:44:30 +02:00
|
|
|
hr = ScriptTextOut(hdc, &psc, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
|
|
|
|
piAdvance, NULL, pGoffset);
|
|
|
|
ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", (unsigned int) hr);
|
|
|
|
ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
|
|
|
|
|
2006-06-09 12:06:51 +02:00
|
|
|
/* Test Rect Rgn is acceptable */
|
2006-04-30 15:44:30 +02:00
|
|
|
rect.top = 10;
|
|
|
|
rect.bottom = 20;
|
|
|
|
rect.left = 10;
|
|
|
|
rect.right = 40;
|
2006-06-09 12:06:51 +02:00
|
|
|
hr = ScriptTextOut(hdc, &psc, 0, 0, 0, &rect, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
|
2006-04-30 15:44:30 +02:00
|
|
|
piAdvance, NULL, pGoffset);
|
|
|
|
ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", (unsigned int) hr);
|
|
|
|
ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
|
|
|
|
|
2006-06-07 15:05:14 +02:00
|
|
|
iCP = 1;
|
|
|
|
hr = ScriptCPtoX(iCP, fTrailing, cChars, pcGlyphs, (const WORD *) &pwLogClust,
|
|
|
|
(const SCRIPT_VISATTR *) &psva, (const int *)&piAdvance, &pItem[0].a, &piX);
|
|
|
|
ok(hr == S_OK, "ScriptCPtoX Stub should return S_OK not %08x\n", (unsigned int) hr);
|
|
|
|
|
|
|
|
psla = (SCRIPT_LOGATTR *)&sla;
|
|
|
|
hr = ScriptBreak(TestItem1, cChars, &pItem[0].a, psla);
|
|
|
|
ok(hr == S_OK, "ScriptBreak Stub should return S_OK not %08x\n", (unsigned int) hr);
|
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
/* Clean up and go */
|
|
|
|
ScriptFreeCache(&psc);
|
|
|
|
ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
|
|
|
|
}
|
2006-02-14 17:38:20 +01:00
|
|
|
}
|
|
|
|
ReleaseDC(hwnd, hdc);
|
|
|
|
DestroyWindow(hwnd);
|
2006-04-30 15:44:30 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 14:16:50 +02:00
|
|
|
static void test_ScriptXtoX(void)
|
|
|
|
/****************************************************************************************
|
|
|
|
* This routine tests the ScriptXtoCP and ScriptCPtoX functions using static variables *
|
|
|
|
****************************************************************************************/
|
|
|
|
{
|
|
|
|
int iX, iCP;
|
|
|
|
int cChars;
|
|
|
|
int cGlyphs;
|
|
|
|
WORD pwLogClust[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
|
|
|
SCRIPT_VISATTR psva[10];
|
|
|
|
int piAdvance[10] = {200, 190, 210, 180, 170, 204, 189, 195, 212, 203};
|
|
|
|
SCRIPT_ANALYSIS psa;
|
|
|
|
int piCP, piX;
|
|
|
|
int piTrailing;
|
|
|
|
BOOL fTrailing;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
iX = -1;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piCP, &piTrailing);
|
|
|
|
ok(hr == S_OK, "ScriptXtoCP should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piCP == -1, "Negative iX should return piCP=-1 not %d\n", piCP);
|
|
|
|
ok(piTrailing == TRUE, "Negative iX should return piTrailing=TRUE not %d", piTrailing);
|
|
|
|
iX = 1954;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piCP, &piTrailing);
|
|
|
|
ok(hr == S_OK, "ScriptXtoCP should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piCP == 10, "Excessive iX should return piCP=10 not %d\n", piCP);
|
|
|
|
ok(piTrailing == FALSE, "Excessive iX should return piTrailing=FALSE not %d\n", piTrailing);
|
|
|
|
iX = 779;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piCP, &piTrailing);
|
|
|
|
ok(hr == S_OK, "ScriptXtoCP should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piCP == 3, "iX=%d should return piCP=3 not %d\n", iX, piCP);
|
|
|
|
ok(piTrailing == 1, "iX=%d should return piTrailing=1 not %d\n", iX, piTrailing);
|
|
|
|
iX = 780;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piCP, &piTrailing);
|
|
|
|
ok(hr == S_OK, "ScriptXtoCP should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piCP == 3, "iX=%d should return piCP=3 not %d\n", iX, piCP);
|
|
|
|
ok(piTrailing == 1, "iX=%d should return piTrailing=1 not %d\n", iX, piTrailing);
|
|
|
|
iX = 868;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piCP, &piTrailing);
|
|
|
|
ok(hr == S_OK, "ScriptXtoCP should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piCP == 4, "iX=%d should return piCP=4 not %d\n", iX, piCP);
|
|
|
|
|
|
|
|
iCP=5;
|
|
|
|
fTrailing = FALSE;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piX);
|
|
|
|
ok(hr == S_OK, "ScriptCPtoX should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piX == 976, "iCP=%d should return piX=976 not %d\n", iCP, piX);
|
|
|
|
iCP=5;
|
|
|
|
fTrailing = TRUE;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piX);
|
|
|
|
ok(hr == S_OK, "ScriptCPtoX should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piX == 1171, "iCP=%d should return piX=1171 not %d\n", iCP, piX);
|
|
|
|
iCP=6;
|
|
|
|
fTrailing = FALSE;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piX);
|
|
|
|
ok(hr == S_OK, "ScriptCPtoX should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piX == 1171, "iCP=%d should return piX=1171 not %d\n", iCP, piX);
|
|
|
|
iCP=11;
|
|
|
|
fTrailing = FALSE;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piX);
|
|
|
|
ok(hr == S_OK, "ScriptCPtoX should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piX == 1953, "iCP=%d should return piX=1953 not %d\n", iCP, piX);
|
|
|
|
iCP=11;
|
|
|
|
fTrailing = TRUE;
|
|
|
|
cChars = 10;
|
|
|
|
cGlyphs = 10;
|
|
|
|
hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piX);
|
|
|
|
ok(hr == S_OK, "ScriptCPtoX should return S_OK not %d\n", (unsigned int) hr);
|
|
|
|
ok(piX == 1953, "iCP=%d should return piX=1953 not %d\n", iCP, piX);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-05-23 14:15:15 +02:00
|
|
|
static void test_ScriptString(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2006-06-06 12:21:07 +02:00
|
|
|
HWND hwnd;
|
2006-05-23 14:15:15 +02:00
|
|
|
HDC hdc = 0;
|
2006-08-04 11:47:37 +02:00
|
|
|
WCHAR teststr[] = {'T', 'e', 's', 't', 'a', '\0'};
|
2006-05-23 14:15:15 +02:00
|
|
|
void *pString = (WCHAR *) &teststr;
|
|
|
|
int cString = 5;
|
|
|
|
int cGlyphs = cString * 2 + 16;
|
|
|
|
int iCharset = -1;
|
|
|
|
DWORD dwFlags = SSA_GLYPHS;
|
|
|
|
int iReqWidth = 100;
|
|
|
|
SCRIPT_CONTROL psControl;
|
|
|
|
SCRIPT_STATE psState;
|
|
|
|
const int piDx[5] = {10, 10, 10, 10, 10};
|
|
|
|
SCRIPT_TABDEF pTabdef;
|
|
|
|
const BYTE pbInClass = 0;
|
2006-06-06 12:21:07 +02:00
|
|
|
SCRIPT_STRING_ANALYSIS pssa = NULL;
|
|
|
|
|
|
|
|
int iX = 10;
|
|
|
|
int iY = 100;
|
|
|
|
UINT uOptions = 0;
|
|
|
|
const RECT prc = {0, 50, 100, 100};
|
|
|
|
int iMinSel = 0;
|
|
|
|
int iMaxSel = 0;
|
|
|
|
BOOL fDisabled = FALSE;
|
|
|
|
|
2006-08-04 11:47:37 +02:00
|
|
|
LOGFONTA lf;
|
2006-06-06 12:21:07 +02:00
|
|
|
HFONT zfont;
|
|
|
|
|
|
|
|
/* We need a valid HDC to drive a lot of Script functions which requires the following *
|
|
|
|
* to set up for the tests. */
|
|
|
|
hwnd = CreateWindowExA(0, "static", "", WS_POPUP, 0,0,100,100,
|
|
|
|
0, 0, 0, NULL);
|
|
|
|
assert(hwnd != 0);
|
|
|
|
|
|
|
|
hdc = GetDC(hwnd); /* We now have a hdc */
|
|
|
|
ok( hdc != NULL, "HDC failed to be created %p\n", hdc);
|
|
|
|
|
2006-08-04 11:47:37 +02:00
|
|
|
lstrcpyA(lf.lfFaceName, "Symbol");
|
2006-06-06 12:21:07 +02:00
|
|
|
lf.lfHeight = 10;
|
|
|
|
lf.lfItalic = 0;
|
|
|
|
lf.lfEscapement = 0;
|
|
|
|
lf.lfOrientation = 0;
|
|
|
|
lf.lfUnderline = 0;
|
|
|
|
lf.lfStrikeOut = 0;
|
|
|
|
lf.lfWeight = 3;
|
|
|
|
lf.lfWidth = 10;
|
|
|
|
|
2006-08-04 11:47:37 +02:00
|
|
|
zfont = (HFONT) SelectObject(hdc, CreateFontIndirectA(&lf));
|
|
|
|
|
2006-06-06 12:21:07 +02:00
|
|
|
/* Test without hdc to get E_INVALIDARG */
|
|
|
|
hr = ScriptStringAnalyse( NULL, pString, cString, cGlyphs, iCharset, dwFlags,
|
|
|
|
iReqWidth, &psControl, &psState, piDx, &pTabdef,
|
|
|
|
&pbInClass, &pssa);
|
|
|
|
ok(hr == E_PENDING, "ScriptStringAnalyse Stub should return E_PENDING not %08x\n", (unsigned int) hr);
|
|
|
|
|
|
|
|
/* test with hdc, this should be a valid test */
|
2006-05-23 14:15:15 +02:00
|
|
|
hr = ScriptStringAnalyse( hdc, pString, cString, cGlyphs, iCharset, dwFlags,
|
|
|
|
iReqWidth, &psControl, &psState, piDx, &pTabdef,
|
2006-05-24 18:30:34 +02:00
|
|
|
&pbInClass, &pssa);
|
2006-06-06 12:21:07 +02:00
|
|
|
ok(hr == E_NOTIMPL, "ScriptStringAnalyse Stub should return E_NOTIMPL not %08x\n", (unsigned int) hr);
|
|
|
|
/* Commented code it pending new code in ScriptStringAnalysis */
|
|
|
|
/* ok(hr == S_OK, "ScriptStringAnalyse Stub should return S_OK not %08x\n", (unsigned int) hr);*/
|
|
|
|
/* ok(pssa != NULL, "ScriptStringAnalyse pssa should not be NULL\n");*/
|
|
|
|
if (hr == 0)
|
|
|
|
{
|
|
|
|
hr = ScriptStringOut(pssa, iX, iY, uOptions, &prc, iMinSel, iMaxSel,fDisabled);
|
|
|
|
ok(hr == E_NOTIMPL, "ScriptStringOut Stub should return E_NOTIMPL not %08x\n", (unsigned int) hr);
|
|
|
|
hr = ScriptStringFree(&pssa);
|
|
|
|
ok(hr == S_OK, "ScriptStringFree Stub should return S_OK not %08x\n", (unsigned int) hr);
|
|
|
|
}
|
2006-05-23 14:15:15 +02:00
|
|
|
}
|
|
|
|
|
2006-08-04 14:55:30 +02:00
|
|
|
void test_ScriptCacheGetHeight(HDC hdc)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
SCRIPT_CACHE sc = NULL;
|
|
|
|
LONG height;
|
|
|
|
|
|
|
|
hr = ScriptCacheGetHeight(NULL, NULL, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08lx\n", hr);
|
|
|
|
|
|
|
|
hr = ScriptCacheGetHeight(NULL, &sc, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08lx\n", hr);
|
|
|
|
|
|
|
|
hr = ScriptCacheGetHeight(NULL, &sc, &height);
|
|
|
|
ok(hr == E_PENDING, "expected E_PENDING, got 0x%08lx\n", hr);
|
|
|
|
|
|
|
|
height = 0;
|
|
|
|
|
|
|
|
hr = ScriptCacheGetHeight(hdc, &sc, &height);
|
|
|
|
ok(hr == S_OK, "expected S_OK, got 0x%08lx\n", hr);
|
|
|
|
|
|
|
|
ok(height > 0, "expected height > 0\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_ScriptGetGlyphABCWidth(HDC hdc)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
LOGFONTA lf;
|
|
|
|
HFONT hfont;
|
|
|
|
SCRIPT_CACHE sc = NULL;
|
|
|
|
ABC abc;
|
|
|
|
|
|
|
|
memset(&lf, 0, sizeof(lf));
|
|
|
|
|
|
|
|
lstrcpyA(lf.lfFaceName, "Symbol");
|
|
|
|
hfont = CreateFontIndirectA(&lf);
|
|
|
|
hfont = SelectObject(hdc, hfont);
|
|
|
|
|
|
|
|
hr = ScriptGetGlyphABCWidth(NULL, NULL, 'a', NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08lx\n", hr);
|
|
|
|
|
|
|
|
hr = ScriptGetGlyphABCWidth(NULL, &sc, 'a', NULL);
|
|
|
|
ok(hr == E_PENDING, "expected E_PENDING, got 0x%08lx\n", hr);
|
|
|
|
|
|
|
|
if (0) { /* crashes on WinXP */
|
|
|
|
hr = ScriptGetGlyphABCWidth(hdc, &sc, 'a', NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08lx\n", hr);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = ScriptGetGlyphABCWidth(hdc, &sc, 'a', &abc);
|
|
|
|
ok(hr == S_OK, "expected S_OK, got 0x%08lx\n", hr);
|
|
|
|
}
|
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
START_TEST(usp10)
|
|
|
|
{
|
2006-08-04 11:47:37 +02:00
|
|
|
HWND hwnd;
|
|
|
|
HDC hdc;
|
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
unsigned short pwOutGlyphs[256];
|
|
|
|
|
2006-08-04 11:47:37 +02:00
|
|
|
/* We need a valid HDC to drive a lot of Script functions which requires the following *
|
|
|
|
* to set up for the tests. */
|
|
|
|
hwnd = CreateWindowExA(0, "static", "", WS_POPUP, 0,0,100,100,
|
|
|
|
0, 0, 0, NULL);
|
|
|
|
assert(hwnd != 0);
|
|
|
|
ShowWindow(hwnd, SW_SHOW);
|
|
|
|
UpdateWindow(hwnd);
|
|
|
|
|
|
|
|
hdc = GetDC(hwnd); /* We now have a hdc */
|
|
|
|
ok( hdc != NULL, "HDC failed to be created %p\n", hdc);
|
|
|
|
|
|
|
|
test_ScriptItemIzeShapePlace(hdc,pwOutGlyphs);
|
|
|
|
test_ScriptGetCMap(hdc, pwOutGlyphs);
|
2006-08-04 14:55:30 +02:00
|
|
|
test_ScriptCacheGetHeight(hdc);
|
|
|
|
test_ScriptGetGlyphABCWidth(hdc);
|
2006-08-04 11:47:37 +02:00
|
|
|
|
|
|
|
ReleaseDC(hwnd, hdc);
|
|
|
|
DestroyWindow(hwnd);
|
|
|
|
|
2006-04-21 08:00:14 +02:00
|
|
|
test_ScriptGetFontProperties();
|
2006-04-30 15:44:30 +02:00
|
|
|
test_ScriptTextOut();
|
2006-07-20 14:16:50 +02:00
|
|
|
test_ScriptXtoX();
|
2006-05-23 14:15:15 +02:00
|
|
|
test_ScriptString();
|
2006-02-14 17:38:20 +01:00
|
|
|
}
|