2005-07-27 13:02:52 +02:00
|
|
|
/*
|
|
|
|
* Implementation of Uniscribe Script Processor (usp10.dll)
|
|
|
|
*
|
|
|
|
* Copyright 2005 Steven Edwards for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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
|
2005-07-27 13:02:52 +02:00
|
|
|
*
|
|
|
|
* Notes:
|
|
|
|
* Uniscribe allows for processing of complex scripts such as joining
|
|
|
|
* and filtering characters and bi-directional text with custom line breaks.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2005-08-10 11:51:40 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2005-11-28 11:52:55 +01:00
|
|
|
#include "wingdi.h"
|
2005-08-10 11:51:40 +02:00
|
|
|
#include "winuser.h"
|
2006-09-07 08:42:56 +02:00
|
|
|
#include "winnls.h"
|
2005-08-10 11:51:40 +02:00
|
|
|
#include "usp10.h"
|
2005-07-27 13:02:52 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
2005-11-15 13:02:16 +01:00
|
|
|
/**
|
|
|
|
* some documentation here:
|
|
|
|
* http://www.microsoft.com/typography/developers/uniscribe/uniscribe.htm
|
|
|
|
*/
|
|
|
|
|
2005-07-27 13:02:52 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(uniscribe);
|
|
|
|
|
2006-02-16 12:06:18 +01:00
|
|
|
#define MAX_SCRIPTS 8
|
|
|
|
|
|
|
|
/* Set up a default for ScriptGetProperties */
|
|
|
|
static const SCRIPT_PROPERTIES Default_Script_0 = {0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0};
|
|
|
|
static const SCRIPT_PROPERTIES Default_Script_1 = {0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0};
|
|
|
|
static const SCRIPT_PROPERTIES Default_Script_2 = {0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0};
|
|
|
|
static const SCRIPT_PROPERTIES Default_Script_3 = {9, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0};
|
|
|
|
static const SCRIPT_PROPERTIES Default_Script_4 = {9, 1, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0};
|
|
|
|
static const SCRIPT_PROPERTIES Default_Script_5 = {9, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 1, 0, 0};
|
|
|
|
static const SCRIPT_PROPERTIES Default_Script_6 = {9, 1, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 1, 0, 0};
|
|
|
|
static const SCRIPT_PROPERTIES Default_Script_7 = {8, 0, 0, 0, 0, 161, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0};
|
|
|
|
static const SCRIPT_PROPERTIES *Global_Script[MAX_SCRIPTS] =
|
|
|
|
{&Default_Script_0,
|
|
|
|
&Default_Script_1,
|
|
|
|
&Default_Script_2,
|
|
|
|
&Default_Script_3,
|
|
|
|
&Default_Script_4,
|
|
|
|
&Default_Script_5,
|
|
|
|
&Default_Script_6,
|
|
|
|
&Default_Script_7};
|
|
|
|
|
2006-02-20 10:19:32 +01:00
|
|
|
typedef struct scriptcache {
|
|
|
|
HDC hdc;
|
|
|
|
} Scriptcache;
|
|
|
|
|
2006-05-12 00:34:55 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* DllMain
|
|
|
|
*
|
|
|
|
*/
|
2005-07-27 13:02:52 +02:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
|
|
|
{
|
|
|
|
switch(fdwReason) {
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls(hInstDLL);
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-01-09 17:16:57 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptFreeCache (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptFreeCache(SCRIPT_CACHE *psc)
|
|
|
|
{
|
2006-02-20 10:19:32 +01:00
|
|
|
TRACE("%p\n", psc);
|
2006-01-09 17:16:57 +01:00
|
|
|
|
2006-02-20 10:19:32 +01:00
|
|
|
if (psc) {
|
|
|
|
HeapFree ( GetProcessHeap(), 0, *psc);
|
|
|
|
*psc = NULL;
|
|
|
|
}
|
2006-01-09 17:16:57 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptGetProperties (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
2005-07-27 13:02:52 +02:00
|
|
|
HRESULT WINAPI ScriptGetProperties(const SCRIPT_PROPERTIES ***ppSp, int *piNumScripts)
|
|
|
|
{
|
2006-05-16 21:12:16 +02:00
|
|
|
TRACE("%p,%p\n", ppSp, piNumScripts);
|
2006-01-09 17:16:57 +01:00
|
|
|
|
2006-05-16 21:12:16 +02:00
|
|
|
if (!ppSp && !piNumScripts) return E_INVALIDARG;
|
|
|
|
|
|
|
|
/* Set up a sensible default and intialise pointers */
|
|
|
|
if (piNumScripts) *piNumScripts = MAX_SCRIPTS;
|
|
|
|
if (ppSp) *ppSp = Global_Script;
|
|
|
|
TRACE("ppSp:%p, *ppSp:%p, **ppSp:%p, %d\n",
|
|
|
|
ppSp, ppSp ? *ppSp : NULL, (ppSp && *ppSp) ? **ppSp : NULL,
|
|
|
|
piNumScripts ? *piNumScripts : -1);
|
2006-01-09 17:16:57 +01:00
|
|
|
return 0;
|
2005-07-27 13:02:52 +02:00
|
|
|
}
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptGetFontProperties (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
2005-08-01 11:18:53 +02:00
|
|
|
HRESULT WINAPI ScriptGetFontProperties(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_FONTPROPERTIES *sfp)
|
|
|
|
{
|
2006-04-13 10:38:31 +02:00
|
|
|
HDC phdc;
|
|
|
|
Scriptcache *pScriptcache;
|
2006-04-20 13:57:06 +02:00
|
|
|
TEXTMETRICW ptm;
|
2006-04-13 10:38:31 +02:00
|
|
|
|
2006-04-20 13:50:44 +02:00
|
|
|
TRACE("%p,%p,%p\n", hdc, psc, sfp);
|
2006-04-21 08:00:14 +02:00
|
|
|
|
|
|
|
if (!psc || !sfp)
|
|
|
|
return E_INVALIDARG;
|
2006-04-13 10:38:31 +02:00
|
|
|
if (!hdc && !*psc) {
|
|
|
|
TRACE("No Script_Cache (psc) and no hdc. Ask for one. Hdc=%p, psc=%p\n", hdc, *psc);
|
|
|
|
return E_PENDING;
|
|
|
|
} else
|
|
|
|
if (hdc && !*psc) {
|
|
|
|
pScriptcache = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(Scriptcache) );
|
|
|
|
pScriptcache->hdc = (HDC) hdc;
|
|
|
|
phdc = hdc;
|
|
|
|
*psc = (Scriptcache *) pScriptcache;
|
2006-04-20 13:50:44 +02:00
|
|
|
} else
|
2006-04-13 10:38:31 +02:00
|
|
|
if (*psc) {
|
|
|
|
pScriptcache = (Scriptcache *) *psc;
|
|
|
|
phdc = pScriptcache->hdc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sfp->cBytes != sizeof(SCRIPT_FONTPROPERTIES))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2005-08-01 11:18:53 +02:00
|
|
|
/* return something sensible? */
|
2006-04-21 08:00:14 +02:00
|
|
|
sfp->wgBlank = 0;
|
|
|
|
if (GetTextMetricsW(phdc, &ptm))
|
|
|
|
sfp->wgDefault = ptm.tmDefaultChar;
|
|
|
|
else
|
|
|
|
sfp->wgDefault = 0;
|
|
|
|
sfp->wgInvalid = 0;
|
|
|
|
sfp->wgKashida = 0xffff;
|
|
|
|
sfp->iKashidaWidth = 0;
|
2005-08-01 11:18:53 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptRecordDigitSubstitution (USP10.@)
|
|
|
|
*
|
2006-09-07 08:42:56 +02:00
|
|
|
* Record digit substitution settings for a given locale.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* locale [I] Locale identifier.
|
|
|
|
* sds [I] Structure to record substitution settings.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: E_POINTER if sds is NULL, E_INVALIDARG otherwise.
|
|
|
|
*
|
|
|
|
* SEE ALSO
|
|
|
|
* http://blogs.msdn.com/michkap/archive/2006/02/22/536877.aspx
|
2005-11-23 20:14:04 +01:00
|
|
|
*/
|
2006-09-07 08:42:56 +02:00
|
|
|
HRESULT WINAPI ScriptRecordDigitSubstitution(LCID locale, SCRIPT_DIGITSUBSTITUTE *sds)
|
2005-07-27 13:02:52 +02:00
|
|
|
{
|
2006-09-07 08:42:56 +02:00
|
|
|
DWORD plgid, sub;
|
|
|
|
|
2006-10-05 00:58:37 +02:00
|
|
|
TRACE("0x%x, %p\n", locale, sds);
|
2006-09-07 08:42:56 +02:00
|
|
|
|
|
|
|
/* This implementation appears to be correct for all languages, but it's
|
|
|
|
* not clear if sds->DigitSubstitute is ever set to anything except
|
|
|
|
* CONTEXT or NONE in reality */
|
|
|
|
|
|
|
|
if (!sds) return E_POINTER;
|
|
|
|
|
|
|
|
locale = ConvertDefaultLocale(locale);
|
|
|
|
|
|
|
|
if (!IsValidLocale(locale, LCID_INSTALLED))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
plgid = PRIMARYLANGID(LANGIDFROMLCID(locale));
|
|
|
|
sds->TraditionalDigitLanguage = plgid;
|
|
|
|
|
|
|
|
if (plgid == LANG_ARABIC || plgid == LANG_FARSI)
|
|
|
|
sds->NationalDigitLanguage = plgid;
|
|
|
|
else
|
|
|
|
sds->NationalDigitLanguage = LANG_ENGLISH;
|
|
|
|
|
|
|
|
if (!GetLocaleInfoW(locale, LOCALE_IDIGITSUBSTITUTION | LOCALE_RETURN_NUMBER,
|
|
|
|
(LPWSTR)&sub, sizeof(sub)/sizeof(WCHAR))) return E_INVALIDARG;
|
|
|
|
|
|
|
|
switch (sub)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
if (plgid == LANG_ARABIC || plgid == LANG_FARSI)
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_CONTEXT;
|
|
|
|
else
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NONE;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NONE;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NATIONAL;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_TRADITIONAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
sds->dwReserved = 0;
|
|
|
|
return S_OK;
|
2005-07-27 13:02:52 +02:00
|
|
|
}
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptApplyDigitSubstitution (USP10.@)
|
|
|
|
*
|
2006-09-07 08:42:56 +02:00
|
|
|
* Apply digit substitution settings.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* sds [I] Structure with recorded substitution settings.
|
|
|
|
* sc [I] Script control structure.
|
|
|
|
* ss [I] Script state structure.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: E_INVALIDARG if sds is invalid. Otherwise an HRESULT.
|
2005-11-23 20:14:04 +01:00
|
|
|
*/
|
2006-09-07 08:42:56 +02:00
|
|
|
HRESULT WINAPI ScriptApplyDigitSubstitution(const SCRIPT_DIGITSUBSTITUTE *sds,
|
|
|
|
SCRIPT_CONTROL *sc, SCRIPT_STATE *ss)
|
2005-07-27 13:02:52 +02:00
|
|
|
{
|
2006-09-07 08:42:56 +02:00
|
|
|
SCRIPT_DIGITSUBSTITUTE psds;
|
|
|
|
|
|
|
|
TRACE("%p, %p, %p\n", sds, sc, ss);
|
|
|
|
|
|
|
|
if (!sc || !ss) return E_POINTER;
|
|
|
|
if (!sds)
|
|
|
|
{
|
|
|
|
sds = &psds;
|
|
|
|
if (ScriptRecordDigitSubstitution(LOCALE_USER_DEFAULT, &psds) != S_OK)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->uDefaultLanguage = LANG_ENGLISH;
|
|
|
|
sc->fContextDigits = 0;
|
|
|
|
ss->fDigitSubstitute = 0;
|
|
|
|
|
|
|
|
switch (sds->DigitSubstitute) {
|
|
|
|
case SCRIPT_DIGITSUBSTITUTE_CONTEXT:
|
|
|
|
case SCRIPT_DIGITSUBSTITUTE_NATIONAL:
|
|
|
|
case SCRIPT_DIGITSUBSTITUTE_NONE:
|
|
|
|
case SCRIPT_DIGITSUBSTITUTE_TRADITIONAL:
|
|
|
|
return S_OK;
|
|
|
|
default:
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
2005-07-27 13:02:52 +02:00
|
|
|
}
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptItemize (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
2005-07-27 13:02:52 +02:00
|
|
|
HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItems,
|
|
|
|
const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState,
|
|
|
|
SCRIPT_ITEM *pItems, int *pcItems)
|
|
|
|
{
|
2006-02-18 16:00:29 +01:00
|
|
|
|
2006-08-08 10:57:37 +02:00
|
|
|
#define Numeric_start 0x0030
|
|
|
|
#define Numeric_stop 0x0039
|
|
|
|
#define Numeric_space 0x0020
|
|
|
|
#define Arabic_start 0x0600
|
|
|
|
#define Arabic_stop 0x06ff
|
|
|
|
#define Latin_start 0x0001
|
|
|
|
#define Latin_stop 0x024f
|
|
|
|
#define Script_Arabic 6
|
|
|
|
#define Script_Latin 1
|
|
|
|
#define Script_Numeric 5
|
|
|
|
|
|
|
|
int cnt = 0, index = 0;
|
|
|
|
int New_Script = SCRIPT_UNDEFINED;
|
|
|
|
|
|
|
|
TRACE("%s,%d,%d,%p,%p,%p,%p\n", debugstr_wn(pwcInChars, cInChars), cInChars, cMaxItems,
|
2005-07-27 13:02:52 +02:00
|
|
|
psControl, psState, pItems, pcItems);
|
2006-01-09 17:16:57 +01:00
|
|
|
|
|
|
|
if (!pwcInChars || !cInChars || !pItems || cMaxItems < 2)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2006-08-08 10:57:37 +02:00
|
|
|
if (pwcInChars[cnt] >= Numeric_start && pwcInChars[cnt] <= Numeric_stop)
|
|
|
|
pItems[index].a.eScript = Script_Numeric;
|
|
|
|
else
|
|
|
|
if (pwcInChars[cnt] >= Arabic_start && pwcInChars[cnt] <= Arabic_stop)
|
|
|
|
pItems[index].a.eScript = Script_Arabic;
|
|
|
|
else
|
|
|
|
if (pwcInChars[cnt] >= Latin_start && pwcInChars[cnt] <= Latin_stop)
|
|
|
|
pItems[index].a.eScript = Script_Latin;
|
|
|
|
else
|
|
|
|
pItems[index].a.eScript = SCRIPT_UNDEFINED;
|
|
|
|
pItems[index].iCharPos = 0;
|
2006-02-18 16:00:29 +01:00
|
|
|
/* Set the SCRIPT_ANALYSIS */
|
2006-08-08 10:57:37 +02:00
|
|
|
pItems[index].a.fRTL = 0;
|
|
|
|
pItems[index].a.fLayoutRTL = 0;
|
|
|
|
pItems[index].a.fLinkBefore = 0;
|
|
|
|
pItems[index].a.fLinkAfter = 0;
|
|
|
|
pItems[index].a.fLogicalOrder = 0;
|
|
|
|
pItems[index].a.fNoGlyphIndex = 0;
|
2006-02-18 16:00:29 +01:00
|
|
|
/* set the SCRIPT_STATE */
|
2006-10-17 11:11:25 +02:00
|
|
|
if (pItems[index].a.eScript == Script_Arabic)
|
2006-08-08 10:57:37 +02:00
|
|
|
pItems[index].a.s.uBidiLevel = 1;
|
|
|
|
else
|
|
|
|
pItems[index].a.s.uBidiLevel = 0;
|
|
|
|
pItems[index].a.s.fOverrideDirection = 0;
|
|
|
|
pItems[index].a.s.fInhibitSymSwap = FALSE;
|
|
|
|
pItems[index].a.s.fCharShape = 0;
|
|
|
|
pItems[index].a.s.fDigitSubstitute = 0;
|
|
|
|
pItems[index].a.s.fInhibitLigate = 0;
|
|
|
|
pItems[index].a.s.fDisplayZWG = 0;
|
|
|
|
pItems[index].a.s.fArabicNumContext = 0;
|
|
|
|
pItems[index].a.s.fGcpClusters = 0;
|
|
|
|
pItems[index].a.s.fReserved = 0;
|
|
|
|
pItems[index].a.s.fEngineReserved = 0;
|
2006-10-06 13:01:06 +02:00
|
|
|
TRACE("New_Script=%d, eScript=%d index=%d cnt=%d iCharPos=%d\n",
|
|
|
|
New_Script, pItems[index].a.eScript, index, cnt,
|
|
|
|
pItems[index].iCharPos = cnt);
|
2006-08-08 10:57:37 +02:00
|
|
|
|
|
|
|
for (cnt=0; cnt < cInChars; cnt++)
|
|
|
|
{
|
|
|
|
if ((pwcInChars[cnt] >= Numeric_start && pwcInChars[cnt] <= Numeric_stop)
|
|
|
|
|| (New_Script == Script_Numeric && pwcInChars[cnt] == Numeric_space))
|
|
|
|
New_Script = Script_Numeric;
|
|
|
|
else
|
|
|
|
if ((pwcInChars[cnt] >= Arabic_start && pwcInChars[cnt] <= Arabic_stop)
|
|
|
|
|| (New_Script == Script_Arabic && pwcInChars[cnt] == Numeric_space))
|
|
|
|
New_Script = Script_Arabic;
|
|
|
|
else
|
|
|
|
if ((WCHAR) pwcInChars[cnt] >= Latin_start && (WCHAR) pwcInChars[cnt] <= Latin_stop)
|
|
|
|
New_Script = Script_Latin;
|
|
|
|
else
|
|
|
|
New_Script = SCRIPT_UNDEFINED;
|
|
|
|
|
|
|
|
if (New_Script != pItems[index].a.eScript)
|
|
|
|
{
|
|
|
|
TRACE("New_Script=%d, eScript=%d ", New_Script, pItems[index].a.eScript);
|
|
|
|
index++;
|
|
|
|
if (index+1 > cMaxItems)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
pItems[index].iCharPos = cnt;
|
|
|
|
if (New_Script == Script_Arabic)
|
|
|
|
pItems[index].a.s.uBidiLevel = 1;
|
|
|
|
/* Set SCRIPT_ITEM */
|
|
|
|
pItems[index].iCharPos = cnt;
|
|
|
|
/* Set the SCRIPT_ANALYSIS */
|
|
|
|
pItems[index].a.eScript = New_Script;
|
|
|
|
pItems[index].a.fRTL = 0;
|
|
|
|
pItems[index].a.fLayoutRTL = 0;
|
|
|
|
pItems[index].a.fLinkBefore = 0;
|
|
|
|
pItems[index].a.fLinkAfter = 0;
|
|
|
|
pItems[index].a.fLogicalOrder = 0;
|
|
|
|
pItems[index].a.fNoGlyphIndex = 0;
|
|
|
|
/* set the SCRIPT_STATE */
|
|
|
|
if (New_Script == Script_Arabic)
|
|
|
|
pItems[index].a.s.uBidiLevel = 1;
|
|
|
|
else
|
|
|
|
pItems[index].a.s.uBidiLevel = 0;
|
|
|
|
pItems[index].a.s.fOverrideDirection = 0;
|
|
|
|
pItems[index].a.s.fInhibitSymSwap = FALSE;
|
|
|
|
pItems[index].a.s.fCharShape = 0;
|
|
|
|
pItems[index].a.s.fDigitSubstitute = 0;
|
|
|
|
pItems[index].a.s.fInhibitLigate = 0;
|
|
|
|
pItems[index].a.s.fDisplayZWG = 0;
|
|
|
|
pItems[index].a.s.fArabicNumContext = 0;
|
|
|
|
pItems[index].a.s.fGcpClusters = 0;
|
|
|
|
pItems[index].a.s.fReserved = 0;
|
|
|
|
pItems[index].a.s.fEngineReserved = 0;
|
|
|
|
TRACE("index=%d cnt=%d iCharPos=%d\n", index, cnt, pItems[index].iCharPos = cnt);
|
|
|
|
}
|
|
|
|
}
|
2006-02-18 16:00:29 +01:00
|
|
|
|
2006-10-13 02:19:42 +02:00
|
|
|
/* While not strictly necessary according to the spec, make sure the n+1
|
|
|
|
* item is set up to prevent random behaviour if the caller erroneously
|
2006-02-18 16:00:29 +01:00
|
|
|
* checks the n+1 structure */
|
2006-08-08 10:57:37 +02:00
|
|
|
pItems[index+1].a.eScript = 0;
|
|
|
|
pItems[index+1].a.fRTL = 0;
|
|
|
|
pItems[index+1].a.fLayoutRTL = 0;
|
|
|
|
pItems[index+1].a.fLinkBefore = 0;
|
|
|
|
pItems[index+1].a.fLinkAfter = 0;
|
|
|
|
pItems[index+1].a.fLogicalOrder = 0;
|
|
|
|
pItems[index+1].a.fNoGlyphIndex = 0;
|
2006-02-18 16:00:29 +01:00
|
|
|
/* set the SCRIPT_STATE */
|
2006-08-08 10:57:37 +02:00
|
|
|
pItems[index+1].a.s.uBidiLevel = 0;
|
|
|
|
pItems[index+1].a.s.fOverrideDirection = 0;
|
|
|
|
pItems[index+1].a.s.fInhibitSymSwap = FALSE;
|
|
|
|
pItems[index+1].a.s.fCharShape = 0;
|
|
|
|
pItems[index+1].a.s.fDigitSubstitute = 0;
|
|
|
|
pItems[index+1].a.s.fInhibitLigate = 0;
|
|
|
|
pItems[index+1].a.s.fDisplayZWG = 0;
|
|
|
|
pItems[index+1].a.s.fArabicNumContext = 0;
|
|
|
|
pItems[index+1].a.s.fGcpClusters = 0;
|
|
|
|
pItems[index+1].a.s.fReserved = 0;
|
|
|
|
pItems[index+1].a.s.fEngineReserved = 0;
|
|
|
|
TRACE("index=%d cnt=%d iCharPos=%d\n", index+1, cnt, pItems[index+1].iCharPos = cnt);
|
2006-02-18 16:00:29 +01:00
|
|
|
|
|
|
|
/* Set one SCRIPT_STATE item being returned */
|
2006-08-08 10:57:37 +02:00
|
|
|
*pcItems = index + 1;
|
2006-02-18 16:00:29 +01:00
|
|
|
|
|
|
|
/* Set SCRIPT_ITEM */
|
2006-08-08 10:57:37 +02:00
|
|
|
pItems[index+1].iCharPos = cnt; /* the last + 1 item
|
2006-02-18 16:00:29 +01:00
|
|
|
contains the ptr to the lastchar */
|
2006-08-08 10:57:37 +02:00
|
|
|
return S_OK;
|
2005-07-27 13:02:52 +02:00
|
|
|
}
|
2005-11-15 13:02:16 +01:00
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptStringAnalyse (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
2005-11-15 13:02:16 +01:00
|
|
|
HRESULT WINAPI ScriptStringAnalyse(HDC hdc,
|
|
|
|
const void *pString,
|
|
|
|
int cString,
|
|
|
|
int cGlyphs,
|
|
|
|
int iCharset,
|
|
|
|
DWORD dwFlags,
|
|
|
|
int iReqWidth,
|
|
|
|
SCRIPT_CONTROL *psControl,
|
|
|
|
SCRIPT_STATE *psState,
|
|
|
|
const int *piDx,
|
|
|
|
SCRIPT_TABDEF *pTabdef,
|
|
|
|
const BYTE *pbInClass,
|
|
|
|
SCRIPT_STRING_ANALYSIS *pssa)
|
|
|
|
{
|
2006-10-05 00:58:37 +02:00
|
|
|
FIXME("(%p,%p,%d,%d,%d,0x%x,%d,%p,%p,%p,%p,%p,%p): stub\n",
|
2005-11-15 13:02:16 +01:00
|
|
|
hdc, pString, cString, cGlyphs, iCharset, dwFlags,
|
|
|
|
iReqWidth, psControl, psState, piDx, pTabdef, pbInClass, pssa);
|
|
|
|
if (1 > cString || NULL == pString) {
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
if ((dwFlags & SSA_GLYPHS) && NULL == hdc) {
|
2006-06-06 12:21:07 +02:00
|
|
|
return E_PENDING;
|
2005-11-15 13:02:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2006-05-23 14:15:15 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptStringOut (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptStringOut(SCRIPT_STRING_ANALYSIS ssa,
|
|
|
|
int iX,
|
|
|
|
int iY,
|
|
|
|
UINT uOptions,
|
|
|
|
const RECT *prc,
|
|
|
|
int iMinSel,
|
|
|
|
int iMaxSel,
|
|
|
|
BOOL fDisabled)
|
|
|
|
{
|
|
|
|
FIXME("(%p,%d,%d,0x%1x,%p,%d,%d,%d): stub\n",
|
|
|
|
ssa, iX, iY, uOptions, prc, iMinSel, iMaxSel, fDisabled);
|
|
|
|
if (!ssa) {
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2006-07-18 11:35:07 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptStringCPtoX (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptStringCPtoX(SCRIPT_STRING_ANALYSIS ssa, int icp, BOOL fTrailing, int* pX)
|
|
|
|
{
|
|
|
|
FIXME("(%p), %d, %d, (%p): stub\n", ssa, icp, fTrailing, pX);
|
|
|
|
*pX = 0; /* Set a reasonable value */
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptStringXtoCP (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptStringXtoCP(SCRIPT_STRING_ANALYSIS ssa, int iX, int* piCh, int* piTrailing)
|
|
|
|
{
|
|
|
|
FIXME("(%p), %d, (%p), (%p): stub\n", ssa, iX, piCh, piTrailing);
|
|
|
|
*piCh = 0; /* Set a reasonable value */
|
|
|
|
*piTrailing = 0;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptStringFree (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
2005-11-15 13:02:16 +01:00
|
|
|
HRESULT WINAPI ScriptStringFree(SCRIPT_STRING_ANALYSIS *pssa) {
|
2006-06-07 15:05:14 +02:00
|
|
|
FIXME("(%p): stub\n",pssa);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptCPtoX (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptCPtoX(int iCP,
|
|
|
|
BOOL fTrailing,
|
|
|
|
int cChars,
|
|
|
|
int cGlyphs,
|
|
|
|
const WORD *pwLogClust,
|
|
|
|
const SCRIPT_VISATTR *psva,
|
|
|
|
const int *piAdvance,
|
|
|
|
const SCRIPT_ANALYSIS *psa,
|
|
|
|
int *piX)
|
|
|
|
{
|
2006-07-20 14:16:50 +02:00
|
|
|
int item;
|
|
|
|
int iPosX;
|
|
|
|
float fMaxPosX = 0;
|
|
|
|
TRACE("(%d,%d,%d,%d,%p,%p,%p,%p,%p)\n",
|
2006-06-07 15:05:14 +02:00
|
|
|
iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance,
|
|
|
|
psa, piX);
|
2006-07-20 14:16:50 +02:00
|
|
|
for (item=0; item < cGlyphs; item++) /* total piAdvance */
|
|
|
|
fMaxPosX += piAdvance[item];
|
|
|
|
iPosX = (fMaxPosX/cGlyphs)*(iCP+fTrailing);
|
|
|
|
if (iPosX > fMaxPosX)
|
|
|
|
iPosX = fMaxPosX;
|
|
|
|
*piX = iPosX; /* Return something in range */
|
|
|
|
|
|
|
|
TRACE("*piX=%d\n", *piX);
|
2006-06-07 15:05:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptXtoCP (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptXtoCP(int iX,
|
|
|
|
int cChars,
|
|
|
|
int cGlyphs,
|
|
|
|
const WORD *pwLogClust,
|
|
|
|
const SCRIPT_VISATTR *psva,
|
|
|
|
const int *piAdvance,
|
|
|
|
const SCRIPT_ANALYSIS *psa,
|
|
|
|
int *piCP,
|
|
|
|
int *piTrailing)
|
|
|
|
{
|
2006-07-20 14:16:50 +02:00
|
|
|
int item;
|
|
|
|
int iPosX = 1;
|
|
|
|
float fMaxPosX = 1;
|
|
|
|
float fAvePosX;
|
|
|
|
TRACE("(%d,%d,%d,%p,%p,%p,%p,%p,%p)\n",
|
2006-06-07 15:05:14 +02:00
|
|
|
iX, cChars, cGlyphs, pwLogClust, psva, piAdvance,
|
|
|
|
psa, piCP, piTrailing);
|
2006-07-20 14:16:50 +02:00
|
|
|
if (iX < 0) /* iX is before start of run */
|
|
|
|
{
|
|
|
|
*piCP = -1;
|
|
|
|
*piTrailing = TRUE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
2006-06-07 15:05:14 +02:00
|
|
|
|
2006-07-20 14:16:50 +02:00
|
|
|
for (item=0; item < cGlyphs; item++) /* total piAdvance */
|
|
|
|
fMaxPosX += piAdvance[item];
|
|
|
|
|
|
|
|
if (iX >= fMaxPosX) /* iX too large */
|
|
|
|
{
|
|
|
|
*piCP = cChars;
|
|
|
|
*piTrailing = FALSE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
fAvePosX = fMaxPosX / cGlyphs;
|
|
|
|
for (item = 0; item < cGlyphs && iPosX < iX; item++)
|
|
|
|
iPosX = fAvePosX * (item +1);
|
|
|
|
if (iPosX - iX > fAvePosX/2)
|
|
|
|
*piTrailing = 0;
|
|
|
|
else
|
|
|
|
*piTrailing = 1; /* yep we are over half way */
|
|
|
|
|
|
|
|
*piCP = item -1; /* Return character position */
|
|
|
|
TRACE("*piCP=%d iPposX=%d\n", *piCP, iPosX);
|
2006-06-07 15:05:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptBreak (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptBreak(const WCHAR *pwcChars, int cChars, const SCRIPT_ANALYSIS *psa,
|
|
|
|
SCRIPT_LOGATTR *psla)
|
|
|
|
{
|
|
|
|
FIXME("(%p,%d,%p,%p): stub\n",
|
|
|
|
pwcChars, cChars, psa, psla);
|
|
|
|
|
|
|
|
return S_OK;
|
2005-11-15 13:02:16 +01:00
|
|
|
}
|
|
|
|
|
2006-08-04 11:41:58 +02:00
|
|
|
static const struct
|
|
|
|
{
|
|
|
|
WCHAR start;
|
|
|
|
WCHAR end;
|
|
|
|
DWORD flag;
|
|
|
|
}
|
|
|
|
complex_ranges[] =
|
|
|
|
{
|
|
|
|
{ 0, 0x0b, SIC_COMPLEX },
|
|
|
|
{ 0x0c, 0x0c, SIC_NEUTRAL },
|
|
|
|
{ 0x0d, 0x1f, SIC_COMPLEX },
|
|
|
|
{ 0x20, 0x2f, SIC_NEUTRAL },
|
|
|
|
{ 0x30, 0x39, SIC_ASCIIDIGIT },
|
|
|
|
{ 0x3a, 0x40, SIC_NEUTRAL },
|
|
|
|
{ 0x5b, 0x60, SIC_NEUTRAL },
|
|
|
|
{ 0x7b, 0x7e, SIC_NEUTRAL },
|
|
|
|
{ 0x7f, 0x9f, SIC_COMPLEX },
|
|
|
|
{ 0xa0, 0xa5, SIC_NEUTRAL },
|
|
|
|
{ 0xa7, 0xa8, SIC_NEUTRAL },
|
|
|
|
{ 0xab, 0xab, SIC_NEUTRAL },
|
|
|
|
{ 0xad, 0xad, SIC_NEUTRAL },
|
|
|
|
{ 0xaf, 0xaf, SIC_NEUTRAL },
|
|
|
|
{ 0xb0, 0xb1, SIC_NEUTRAL },
|
|
|
|
{ 0xb4, 0xb4, SIC_NEUTRAL },
|
|
|
|
{ 0xb6, 0xb8, SIC_NEUTRAL },
|
|
|
|
{ 0xbb, 0xbf, SIC_NEUTRAL },
|
|
|
|
{ 0xd7, 0xd7, SIC_NEUTRAL },
|
|
|
|
{ 0xf7, 0xf7, SIC_NEUTRAL },
|
|
|
|
{ 0x2b9, 0x2ba, SIC_NEUTRAL },
|
|
|
|
{ 0x2c2, 0x2cf, SIC_NEUTRAL },
|
|
|
|
{ 0x2d2, 0x2df, SIC_NEUTRAL },
|
|
|
|
{ 0x2e5, 0x2e9, SIC_COMPLEX },
|
|
|
|
{ 0x2ea, 0x2ed, SIC_NEUTRAL },
|
|
|
|
{ 0x300, 0x362, SIC_COMPLEX },
|
|
|
|
{ 0x530, 0x60b, SIC_COMPLEX },
|
|
|
|
{ 0x60c, 0x60d, SIC_NEUTRAL },
|
|
|
|
{ 0x60e, 0x669, SIC_COMPLEX },
|
|
|
|
{ 0x66a, 0x66a, SIC_NEUTRAL },
|
|
|
|
{ 0x66b, 0x6e8, SIC_COMPLEX },
|
|
|
|
{ 0x6e9, 0x6e9, SIC_NEUTRAL },
|
|
|
|
{ 0x6ea, 0x7bf, SIC_COMPLEX },
|
|
|
|
{ 0x900, 0x1360, SIC_COMPLEX },
|
|
|
|
{ 0x137d, 0x137f, SIC_COMPLEX },
|
|
|
|
{ 0x1680, 0x1680, SIC_NEUTRAL },
|
|
|
|
{ 0x1780, 0x18af, SIC_COMPLEX },
|
|
|
|
{ 0x2000, 0x200a, SIC_NEUTRAL },
|
|
|
|
{ 0x200b, 0x200f, SIC_COMPLEX },
|
|
|
|
{ 0x2010, 0x2016, SIC_NEUTRAL },
|
|
|
|
{ 0x2018, 0x2022, SIC_NEUTRAL },
|
|
|
|
{ 0x2024, 0x2028, SIC_NEUTRAL },
|
|
|
|
{ 0x2029, 0x202e, SIC_COMPLEX },
|
|
|
|
{ 0x202f, 0x2037, SIC_NEUTRAL },
|
|
|
|
{ 0x2039, 0x203c, SIC_NEUTRAL },
|
|
|
|
{ 0x2044, 0x2046, SIC_NEUTRAL },
|
|
|
|
{ 0x206a, 0x206f, SIC_COMPLEX },
|
|
|
|
{ 0x207a, 0x207e, SIC_NEUTRAL },
|
|
|
|
{ 0x208a, 0x20aa, SIC_NEUTRAL },
|
|
|
|
{ 0x20ac, 0x20cf, SIC_NEUTRAL },
|
|
|
|
{ 0x20d0, 0x20ff, SIC_COMPLEX },
|
|
|
|
{ 0x2103, 0x2103, SIC_NEUTRAL },
|
|
|
|
{ 0x2105, 0x2105, SIC_NEUTRAL },
|
|
|
|
{ 0x2109, 0x2109, SIC_NEUTRAL },
|
|
|
|
{ 0x2116, 0x2116, SIC_NEUTRAL },
|
|
|
|
{ 0x2121, 0x2122, SIC_NEUTRAL },
|
|
|
|
{ 0x212e, 0x212e, SIC_NEUTRAL },
|
|
|
|
{ 0x2153, 0x2154, SIC_NEUTRAL },
|
|
|
|
{ 0x215b, 0x215e, SIC_NEUTRAL },
|
|
|
|
{ 0x2190, 0x2199, SIC_NEUTRAL },
|
|
|
|
{ 0x21b8, 0x21b9, SIC_NEUTRAL },
|
|
|
|
{ 0x21d2, 0x21d2, SIC_NEUTRAL },
|
|
|
|
{ 0x21d4, 0x21d4, SIC_NEUTRAL },
|
|
|
|
{ 0x21e7, 0x21e7, SIC_NEUTRAL },
|
|
|
|
{ 0x2200, 0x2200, SIC_NEUTRAL },
|
|
|
|
{ 0x2202, 0x2203, SIC_NEUTRAL },
|
|
|
|
{ 0x2207, 0x2208, SIC_NEUTRAL },
|
|
|
|
{ 0x220b, 0x220b, SIC_NEUTRAL },
|
|
|
|
{ 0x220f, 0x220f, SIC_NEUTRAL },
|
|
|
|
{ 0x2211, 0x2213, SIC_NEUTRAL },
|
|
|
|
{ 0x2215, 0x2215, SIC_NEUTRAL },
|
|
|
|
{ 0x221a, 0x221a, SIC_NEUTRAL },
|
|
|
|
{ 0x221d, 0x2220, SIC_NEUTRAL },
|
|
|
|
{ 0x2223, 0x2223, SIC_NEUTRAL },
|
|
|
|
{ 0x2225, 0x2225, SIC_NEUTRAL },
|
|
|
|
{ 0x2227, 0x222c, SIC_NEUTRAL },
|
|
|
|
{ 0x222e, 0x222e, SIC_NEUTRAL },
|
|
|
|
{ 0x2234, 0x2237, SIC_NEUTRAL },
|
|
|
|
{ 0x223c, 0x223d, SIC_NEUTRAL },
|
|
|
|
{ 0x2248, 0x2248, SIC_NEUTRAL },
|
|
|
|
{ 0x224c, 0x224c, SIC_NEUTRAL },
|
|
|
|
{ 0x2252, 0x2252, SIC_NEUTRAL },
|
|
|
|
{ 0x2260, 0x2261, SIC_NEUTRAL },
|
|
|
|
{ 0x2264, 0x2267, SIC_NEUTRAL },
|
|
|
|
{ 0x226a, 0x226b, SIC_NEUTRAL },
|
|
|
|
{ 0x226e, 0x226f, SIC_NEUTRAL },
|
|
|
|
{ 0x2282, 0x2283, SIC_NEUTRAL },
|
|
|
|
{ 0x2286, 0x2287, SIC_NEUTRAL },
|
|
|
|
{ 0x2295, 0x2295, SIC_NEUTRAL },
|
|
|
|
{ 0x2299, 0x2299, SIC_NEUTRAL },
|
|
|
|
{ 0x22a5, 0x22a5, SIC_NEUTRAL },
|
|
|
|
{ 0x22bf, 0x22bf, SIC_NEUTRAL },
|
|
|
|
{ 0x2312, 0x2312, SIC_NEUTRAL },
|
|
|
|
{ 0x24ea, 0x24ea, SIC_COMPLEX },
|
|
|
|
{ 0x2500, 0x254b, SIC_NEUTRAL },
|
|
|
|
{ 0x2550, 0x256d, SIC_NEUTRAL },
|
|
|
|
{ 0x256e, 0x2574, SIC_NEUTRAL },
|
|
|
|
{ 0x2581, 0x258f, SIC_NEUTRAL },
|
|
|
|
{ 0x2592, 0x2595, SIC_NEUTRAL },
|
|
|
|
{ 0x25a0, 0x25a1, SIC_NEUTRAL },
|
|
|
|
{ 0x25a3, 0x25a9, SIC_NEUTRAL },
|
|
|
|
{ 0x25b2, 0x25b3, SIC_NEUTRAL },
|
|
|
|
{ 0x25b6, 0x25b7, SIC_NEUTRAL },
|
|
|
|
{ 0x25bc, 0x25bd, SIC_NEUTRAL },
|
|
|
|
{ 0x25c0, 0x25c1, SIC_NEUTRAL },
|
|
|
|
{ 0x25c6, 0x25c8, SIC_NEUTRAL },
|
|
|
|
{ 0x25cb, 0x25cb, SIC_NEUTRAL },
|
|
|
|
{ 0x25ce, 0x25d1, SIC_NEUTRAL },
|
|
|
|
{ 0x25e2, 0x25e5, SIC_NEUTRAL },
|
|
|
|
{ 0x25ef, 0x25ef, SIC_NEUTRAL },
|
|
|
|
{ 0x2605, 0x2606, SIC_NEUTRAL },
|
|
|
|
{ 0x2609, 0x2609, SIC_NEUTRAL },
|
|
|
|
{ 0x260e, 0x260f, SIC_NEUTRAL },
|
|
|
|
{ 0x261c, 0x261c, SIC_NEUTRAL },
|
|
|
|
{ 0x261e, 0x261e, SIC_NEUTRAL },
|
|
|
|
{ 0x2640, 0x2640, SIC_NEUTRAL },
|
|
|
|
{ 0x2642, 0x2642, SIC_NEUTRAL },
|
|
|
|
{ 0x2660, 0x2661, SIC_NEUTRAL },
|
|
|
|
{ 0x2663, 0x2665, SIC_NEUTRAL },
|
|
|
|
{ 0x2667, 0x266a, SIC_NEUTRAL },
|
|
|
|
{ 0x266c, 0x266d, SIC_NEUTRAL },
|
|
|
|
{ 0x266f, 0x266f, SIC_NEUTRAL },
|
|
|
|
{ 0x273d, 0x273d, SIC_NEUTRAL },
|
|
|
|
{ 0x2e80, 0x312f, SIC_COMPLEX },
|
|
|
|
{ 0x3190, 0x31bf, SIC_COMPLEX },
|
|
|
|
{ 0x31f0, 0x31ff, SIC_COMPLEX },
|
|
|
|
{ 0x3220, 0x325f, SIC_COMPLEX },
|
|
|
|
{ 0x3280, 0xa4ff, SIC_COMPLEX },
|
|
|
|
{ 0xd800, 0xdfff, SIC_COMPLEX },
|
|
|
|
{ 0xe000, 0xf8ff, SIC_NEUTRAL },
|
|
|
|
{ 0xf900, 0xfaff, SIC_COMPLEX },
|
|
|
|
{ 0xfb13, 0xfb28, SIC_COMPLEX },
|
|
|
|
{ 0xfb29, 0xfb29, SIC_NEUTRAL },
|
|
|
|
{ 0xfb2a, 0xfb4f, SIC_COMPLEX },
|
|
|
|
{ 0xfd3e, 0xfd3f, SIC_NEUTRAL },
|
|
|
|
{ 0xfdd0, 0xfdef, SIC_COMPLEX },
|
|
|
|
{ 0xfe20, 0xfe6f, SIC_COMPLEX },
|
|
|
|
{ 0xfeff, 0xfeff, SIC_COMPLEX },
|
|
|
|
{ 0xff01, 0xff5e, SIC_COMPLEX },
|
|
|
|
{ 0xff61, 0xff9f, SIC_COMPLEX },
|
|
|
|
{ 0xffe0, 0xffe6, SIC_COMPLEX },
|
|
|
|
{ 0xffe8, 0xffee, SIC_COMPLEX },
|
|
|
|
{ 0xfff9, 0xfffb, SIC_COMPLEX },
|
|
|
|
{ 0xfffe, 0xfffe, SIC_COMPLEX }
|
|
|
|
};
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptIsComplex (USP10.@)
|
2006-08-04 11:41:58 +02:00
|
|
|
*
|
|
|
|
* Determine if a string is complex.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* chars [I] Array of characters to test.
|
|
|
|
* len [I] Length in characters.
|
|
|
|
* flag [I] Flag.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: S_FALSE
|
2005-11-23 20:14:04 +01:00
|
|
|
*
|
2006-08-04 11:41:58 +02:00
|
|
|
* NOTES
|
|
|
|
* Behaviour matches that of WinXP.
|
2005-11-23 20:14:04 +01:00
|
|
|
*/
|
2006-08-04 11:41:58 +02:00
|
|
|
HRESULT WINAPI ScriptIsComplex(const WCHAR *chars, int len, DWORD flag)
|
|
|
|
{
|
|
|
|
unsigned int i, j;
|
|
|
|
|
2006-10-05 00:58:37 +02:00
|
|
|
TRACE("(%s,%d,0x%x)\n", debugstr_wn(chars, len), len, flag);
|
2006-08-04 11:41:58 +02:00
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
for (j = 0; j < sizeof(complex_ranges)/sizeof(complex_ranges[0]); j++)
|
|
|
|
{
|
|
|
|
if (chars[i] >= complex_ranges[j].start &&
|
|
|
|
chars[i] <= complex_ranges[j].end &&
|
|
|
|
(flag & complex_ranges[j].flag)) return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return S_FALSE;
|
2005-11-15 13:02:16 +01:00
|
|
|
}
|
2006-04-20 13:50:44 +02:00
|
|
|
|
2006-02-14 17:38:20 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptShape (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptShape(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcChars,
|
|
|
|
int cChars, int cMaxGlyphs,
|
|
|
|
SCRIPT_ANALYSIS *psa, WORD *pwOutGlyphs, WORD *pwLogClust,
|
|
|
|
SCRIPT_VISATTR *psva, int *pcGlyphs)
|
|
|
|
{
|
2006-02-20 10:19:32 +01:00
|
|
|
/* Note SCRIPT_CACHE (*psc) appears to be a good place to save info that needs to be
|
|
|
|
* passed between functions. */
|
|
|
|
|
|
|
|
HDC phdc;
|
|
|
|
int cnt;
|
|
|
|
DWORD hr;
|
|
|
|
Scriptcache *pScriptcache;
|
|
|
|
*pcGlyphs = cChars;
|
|
|
|
FIXME("(%p, %p, %p, %d, %d, %p): semi-stub\n", hdc, psc, pwcChars,
|
|
|
|
cChars, cMaxGlyphs, psa);
|
2006-02-24 10:13:51 +01:00
|
|
|
if (psa) TRACE("psa values: %d, %d, %d, %d, %d, %d, %d\n", psa->eScript, psa->fRTL, psa->fLayoutRTL,
|
2006-02-20 10:19:32 +01:00
|
|
|
psa->fLinkBefore, psa->fLinkAfter,
|
|
|
|
psa->fLogicalOrder, psa->fNoGlyphIndex);
|
|
|
|
|
|
|
|
if (cChars > cMaxGlyphs) return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
if (!hdc && !*psc) {
|
|
|
|
TRACE("No Script_Cache (psc) and no hdc. Ask for one. Hdc=%p, psc=%p\n", hdc, *psc);
|
|
|
|
return E_PENDING;
|
|
|
|
} else
|
|
|
|
if (hdc && !*psc) {
|
2006-04-20 13:50:44 +02:00
|
|
|
pScriptcache = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(Scriptcache) );
|
2006-02-20 10:19:32 +01:00
|
|
|
pScriptcache->hdc = (HDC) hdc;
|
|
|
|
phdc = hdc;
|
|
|
|
*psc = (Scriptcache *) pScriptcache;
|
|
|
|
} else
|
|
|
|
if (*psc) {
|
|
|
|
pScriptcache = (Scriptcache *) *psc;
|
|
|
|
phdc = pScriptcache->hdc;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Before: ");
|
|
|
|
for (cnt = 0; cnt < cChars; cnt++)
|
|
|
|
TRACE("%4x",pwcChars[cnt]);
|
|
|
|
TRACE("\n");
|
2006-02-14 17:38:20 +01:00
|
|
|
|
2006-02-20 10:19:32 +01:00
|
|
|
if (!psa->fNoGlyphIndex) { /* Glyph translate */
|
|
|
|
hr = GetGlyphIndicesW(phdc, pwcChars, cChars, pwOutGlyphs, 0);
|
|
|
|
TRACE("After: ");
|
|
|
|
for (cnt = 0; cnt < cChars; cnt++) {
|
|
|
|
TRACE("%04x",pwOutGlyphs[cnt]);
|
|
|
|
}
|
2006-04-20 13:50:44 +02:00
|
|
|
TRACE("\n");
|
2006-02-20 10:19:32 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
TRACE("After: ");
|
|
|
|
for (cnt = 0; cnt < cChars; cnt++) { /* no translate so set up */
|
|
|
|
pwOutGlyphs[cnt] = pwcChars[cnt]; /* copy in to out and */
|
|
|
|
TRACE("%04x",pwOutGlyphs[cnt]);
|
|
|
|
}
|
|
|
|
TRACE("\n");
|
|
|
|
}
|
|
|
|
|
2006-02-24 10:13:51 +01:00
|
|
|
/* Set up a valid SCRIPT_VISATTR and LogClust for each char in this run */
|
2006-02-20 10:19:32 +01:00
|
|
|
for (cnt = 0; cnt < cChars; cnt++) {
|
2006-02-24 10:13:51 +01:00
|
|
|
psva[cnt].uJustification = 2;
|
|
|
|
psva[cnt].fClusterStart = 1;
|
2006-02-20 10:19:32 +01:00
|
|
|
psva[cnt].fDiacritic = 0;
|
|
|
|
psva[cnt].fZeroWidth = 0;
|
2006-02-24 10:13:51 +01:00
|
|
|
pwLogClust[cnt] = cnt;
|
2006-02-20 10:19:32 +01:00
|
|
|
}
|
|
|
|
return 0;
|
2006-02-14 17:38:20 +01:00
|
|
|
}
|
2006-02-20 10:19:32 +01:00
|
|
|
|
2006-02-14 17:38:20 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ScriptPlace (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptPlace(HDC hdc, SCRIPT_CACHE *psc, const WORD *pwGlyphs,
|
|
|
|
int cGlyphs, const SCRIPT_VISATTR *psva,
|
|
|
|
SCRIPT_ANALYSIS *psa, int *piAdvance, GOFFSET *pGoffset, ABC *pABC )
|
|
|
|
{
|
2006-02-21 10:24:24 +01:00
|
|
|
HDC phdc;
|
|
|
|
int wcnt;
|
|
|
|
LPABC lpABC;
|
|
|
|
Scriptcache *pScriptcache;
|
|
|
|
FIXME("(%p, %p, %p, %s, %d, %p, %p, %p): semi-stub\n", hdc, psc, pwGlyphs,
|
2006-04-09 01:15:41 +02:00
|
|
|
debugstr_wn(pwGlyphs, cGlyphs),
|
2006-02-14 17:38:20 +01:00
|
|
|
cGlyphs, psva, psa,
|
|
|
|
piAdvance);
|
|
|
|
|
2006-02-21 10:24:24 +01:00
|
|
|
/* We need a valid hdc to do any of the font calls. The spec says that hdc is optional and
|
|
|
|
* psc will be used first. If psc and hdc are not specified E_PENDING is returned to get
|
2006-10-13 02:19:42 +02:00
|
|
|
* the caller to return the hdc. For convenience, the hdc is cached in SCRIPT_CACHE. */
|
2006-02-21 10:24:24 +01:00
|
|
|
|
|
|
|
if (!hdc && !*psc) {
|
|
|
|
TRACE("No Script_Cache (psc) and no hdc. Ask for one. Hdc=%p, psc=%p\n", hdc, *psc);
|
|
|
|
return E_PENDING;
|
|
|
|
} else
|
|
|
|
if (hdc && !*psc) {
|
|
|
|
pScriptcache = HeapAlloc( GetProcessHeap(), 0, sizeof(Scriptcache) );
|
|
|
|
pScriptcache->hdc = hdc;
|
|
|
|
phdc = hdc;
|
|
|
|
*psc = pScriptcache;
|
|
|
|
} else
|
|
|
|
if (*psc) {
|
|
|
|
pScriptcache = *psc;
|
|
|
|
phdc = pScriptcache->hdc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Here we need to calculate the width of the run unit. At this point the input string
|
2006-10-13 02:19:42 +02:00
|
|
|
* has been converted to glyphs and we still need to translate back to the original chars
|
2006-04-20 13:50:44 +02:00
|
|
|
* to get the correct ABC widths. */
|
2006-02-21 10:24:24 +01:00
|
|
|
|
2006-04-20 13:50:44 +02:00
|
|
|
lpABC = HeapAlloc(GetProcessHeap(), 0 , sizeof(ABC)*cGlyphs);
|
2006-02-21 10:24:24 +01:00
|
|
|
pABC->abcA = 0;
|
|
|
|
pABC->abcB = 0;
|
|
|
|
pABC->abcC = 0;
|
2006-04-20 13:50:44 +02:00
|
|
|
if (!GetCharABCWidthsI(phdc, 0, cGlyphs, (WORD *) pwGlyphs, lpABC ))
|
|
|
|
{
|
|
|
|
WARN("Could not get ABC values\n");
|
|
|
|
for (wcnt = 0; wcnt < cGlyphs; wcnt++) {
|
|
|
|
piAdvance[wcnt] = 0;
|
|
|
|
pGoffset[wcnt].du = 0;
|
|
|
|
pGoffset[wcnt].dv = 0;
|
2006-02-21 10:24:24 +01:00
|
|
|
}
|
|
|
|
}
|
2006-04-20 13:50:44 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for (wcnt = 0; wcnt < cGlyphs ; wcnt++) { /* add up the char lengths */
|
|
|
|
TRACE(" Glyph=%04x, abcA=%d, abcB=%d, abcC=%d wcnt=%d\n",
|
|
|
|
pwGlyphs[wcnt],
|
|
|
|
lpABC[wcnt].abcA,
|
|
|
|
lpABC[wcnt].abcB,
|
|
|
|
lpABC[wcnt].abcC, wcnt);
|
|
|
|
pABC->abcA += lpABC[wcnt].abcA;
|
|
|
|
pABC->abcB += lpABC[wcnt].abcB;
|
|
|
|
pABC->abcC += lpABC[wcnt].abcC;
|
|
|
|
piAdvance[wcnt] = lpABC[wcnt].abcA + lpABC[wcnt].abcB + lpABC[wcnt].abcC;
|
|
|
|
pGoffset[wcnt].du = 0;
|
|
|
|
pGoffset[wcnt].dv = 0;
|
|
|
|
}
|
2006-02-21 10:24:24 +01:00
|
|
|
}
|
|
|
|
TRACE("Total for run: abcA=%d, abcB=%d, abcC=%d\n", pABC->abcA, pABC->abcB, pABC->abcC);
|
|
|
|
|
2006-04-20 13:50:44 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpABC );
|
|
|
|
|
2006-02-21 10:24:24 +01:00
|
|
|
return 0;
|
2006-02-14 17:38:20 +01:00
|
|
|
}
|
2006-02-14 17:38:47 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptGetCMap (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars,
|
|
|
|
int cChars, DWORD dwFlags, WORD *pwOutGlyphs)
|
|
|
|
{
|
2006-02-22 13:24:52 +01:00
|
|
|
HDC phdc;
|
|
|
|
int cnt;
|
|
|
|
DWORD hr;
|
|
|
|
Scriptcache *pScriptcache;
|
2006-10-05 00:58:37 +02:00
|
|
|
FIXME("(%p,%p,%s,%d,0x%x,%p): semi-stub\n", hdc, psc, debugstr_wn(pwcInChars,cChars),
|
2006-04-30 15:44:30 +02:00
|
|
|
cChars, dwFlags, pwOutGlyphs);
|
|
|
|
|
2006-06-06 12:14:01 +02:00
|
|
|
if (!psc)
|
2006-04-30 15:44:30 +02:00
|
|
|
return E_INVALIDARG;
|
2006-02-22 13:24:52 +01:00
|
|
|
|
|
|
|
if (!hdc && !*psc) {
|
|
|
|
TRACE("No Script_Cache (psc) and no hdc. Ask for one. Hdc=%p, psc=%p\n", hdc, *psc);
|
|
|
|
return E_PENDING;
|
|
|
|
} else
|
|
|
|
if (hdc && !*psc) {
|
|
|
|
pScriptcache = HeapAlloc( GetProcessHeap(), 0, sizeof(Scriptcache) );
|
|
|
|
pScriptcache->hdc = hdc;
|
|
|
|
phdc = hdc;
|
|
|
|
*psc = pScriptcache;
|
|
|
|
} else
|
|
|
|
if (*psc) {
|
|
|
|
pScriptcache = *psc;
|
|
|
|
phdc = pScriptcache->hdc;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Before: ");
|
|
|
|
for (cnt = 0; cnt < cChars; cnt++)
|
|
|
|
TRACE("%4x",pwcInChars[cnt]);
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
hr = GetGlyphIndicesW(phdc, pwcInChars, cChars, pwOutGlyphs, 0);
|
|
|
|
TRACE("After: ");
|
|
|
|
for (cnt = 0; cnt < cChars; cnt++) {
|
|
|
|
TRACE("%04x",pwOutGlyphs[cnt]);
|
|
|
|
}
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
return 0;
|
2006-02-14 17:38:47 +01:00
|
|
|
}
|
2006-02-21 10:47:39 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptTextOut (USP10.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UINT fuOptions,
|
|
|
|
const RECT *lprc, const SCRIPT_ANALYSIS *psa, const WCHAR *pwcReserved,
|
|
|
|
int iReserved, const WORD *pwGlyphs, int cGlyphs, const int *piAdvance,
|
|
|
|
const int *piJustify, const GOFFSET *pGoffset)
|
|
|
|
{
|
2006-04-30 15:44:30 +02:00
|
|
|
HDC phdc;
|
|
|
|
DWORD hr;
|
|
|
|
Scriptcache *pScriptcache;
|
|
|
|
TRACE ("(%p, %p, %d, %d, %04x, %p, %p, %p, %d, %p, %d, %p, %p, %p): stub\n",
|
|
|
|
hdc, psc, x, y, fuOptions, lprc, psa, pwcReserved, iReserved, pwGlyphs, cGlyphs,
|
|
|
|
piAdvance, piJustify, pGoffset);
|
|
|
|
|
2006-06-09 12:06:51 +02:00
|
|
|
if (!hdc || !psc || !piAdvance || !psa || !pwGlyphs) /* hdc is mandatory */
|
2006-04-30 15:44:30 +02:00
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2006-06-09 12:06:51 +02:00
|
|
|
if (!*psc) {
|
|
|
|
pScriptcache = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(Scriptcache) );
|
|
|
|
pScriptcache->hdc = hdc;
|
|
|
|
phdc = hdc;
|
|
|
|
*psc = pScriptcache;
|
|
|
|
} else {
|
|
|
|
pScriptcache = *psc;
|
|
|
|
phdc = pScriptcache->hdc;
|
|
|
|
}
|
2006-04-30 15:44:30 +02:00
|
|
|
|
|
|
|
fuOptions &= ETO_CLIPPED + ETO_OPAQUE;
|
|
|
|
if (!psa->fNoGlyphIndex) /* Have Glyphs? */
|
2006-10-13 02:19:42 +02:00
|
|
|
fuOptions |= ETO_GLYPH_INDEX; /* Say don't do translation to glyph */
|
2006-04-30 15:44:30 +02:00
|
|
|
|
|
|
|
hr = ExtTextOutW(phdc, x, y, fuOptions, lprc, pwGlyphs, cGlyphs, NULL);
|
|
|
|
|
|
|
|
if (hr) return S_OK;
|
|
|
|
else {
|
2006-10-05 00:58:37 +02:00
|
|
|
FIXME("ExtTextOut returned:=%d\n", hr);
|
2006-04-30 15:44:30 +02:00
|
|
|
return hr;
|
|
|
|
}
|
2006-02-21 10:47:39 +01:00
|
|
|
}
|
2006-07-19 21:45:24 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptCacheGetHeight (USP10.@)
|
|
|
|
*
|
|
|
|
* Retrieve the height of the font in the cache.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* hdc [I] Device context.
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
|
|
|
* height [O] Receives font height.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptCacheGetHeight(HDC hdc, SCRIPT_CACHE *psc, long *height)
|
|
|
|
{
|
|
|
|
HDC phdc;
|
|
|
|
Scriptcache *pScriptcache;
|
|
|
|
TEXTMETRICW metric;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", hdc, psc, height);
|
|
|
|
|
|
|
|
if (!psc || !height)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if (!hdc) return E_PENDING;
|
|
|
|
|
|
|
|
if (!*psc) {
|
|
|
|
pScriptcache = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(Scriptcache));
|
|
|
|
pScriptcache->hdc = hdc;
|
|
|
|
phdc = hdc;
|
|
|
|
*psc = pScriptcache;
|
|
|
|
} else {
|
|
|
|
pScriptcache = *psc;
|
|
|
|
phdc = pScriptcache->hdc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: get this from the cache */
|
|
|
|
if (!GetTextMetricsW(phdc, &metric))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
*height = metric.tmHeight;
|
|
|
|
return S_OK;
|
|
|
|
}
|
2006-08-04 14:55:30 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptGetGlyphABCWidth (USP10.@)
|
|
|
|
*
|
|
|
|
* Retrieve the width of a glyph.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* hdc [I] Device context.
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
|
|
|
* glyph [I] Glyph to retrieve the width for.
|
|
|
|
* abc [O] ABC widths of the glyph.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptGetGlyphABCWidth(HDC hdc, SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
|
|
|
|
{
|
|
|
|
HDC phdc;
|
|
|
|
Scriptcache *pScriptcache;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, 0x%04x, %p)\n", hdc, psc, glyph, abc);
|
|
|
|
|
|
|
|
if (!psc)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if (!hdc) return E_PENDING;
|
|
|
|
|
|
|
|
if (!*psc) {
|
|
|
|
pScriptcache = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(Scriptcache));
|
|
|
|
pScriptcache->hdc = hdc;
|
|
|
|
phdc = hdc;
|
|
|
|
*psc = pScriptcache;
|
|
|
|
} else {
|
|
|
|
pScriptcache = *psc;
|
|
|
|
phdc = pScriptcache->hdc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: get this from the cache */
|
|
|
|
if (!GetCharABCWidthsW(phdc, glyph, glyph, abc))
|
|
|
|
return E_HANDLE;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
2006-09-28 17:00:19 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptLayout (USP10.@)
|
|
|
|
*
|
|
|
|
* Map embedding levels to visual and/or logical order.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* runs [I] Size of level array.
|
|
|
|
* level [I] Array of embedding levels.
|
|
|
|
* vistolog [O] Map of embedding levels from visual to logical order.
|
|
|
|
* logtovis [O] Map of embedding levels from logical to visual order.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
* This stub works correctly for any sequence of a single
|
|
|
|
* embedding level but not for sequences of different
|
|
|
|
* embedding levels, i.e. mixtures of RTL and LTR scripts.
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptLayout(int runs, const BYTE *level, int *vistolog, int *logtovis)
|
|
|
|
{
|
|
|
|
int i, j = runs - 1, k = 0;
|
|
|
|
|
|
|
|
FIXME("(%d, %p, %p, %p): stub\n", runs, level, vistolog, logtovis);
|
|
|
|
|
|
|
|
if (!level || (!vistolog && !logtovis))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
for (i = 0; i < runs; i++)
|
|
|
|
{
|
|
|
|
if (level[i] % 2)
|
|
|
|
{
|
|
|
|
if (vistolog) *vistolog++ = j;
|
|
|
|
if (logtovis) *logtovis++ = j;
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (vistolog) *vistolog++ = k;
|
|
|
|
if (logtovis) *logtovis++ = k;
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
2006-10-06 12:43:49 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ScriptStringValidate (USP10.@)
|
|
|
|
*
|
|
|
|
* Validate a string analysis.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* ssa [I] string analysis.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: S_FALSE if invalid sequences are found
|
|
|
|
* or a non-zero HRESULT if it fails.
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI ScriptStringValidate(SCRIPT_STRING_ANALYSIS ssa)
|
|
|
|
{
|
|
|
|
FIXME("(%p): stub\n", ssa);
|
|
|
|
return S_OK;
|
|
|
|
}
|