2009-05-05 05:52:37 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright 2009 Austin English
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2016-03-30 12:00:26 +02:00
|
|
|
#include "wingdi.h"
|
2016-04-02 11:19:17 +02:00
|
|
|
#include "winreg.h"
|
2009-07-16 05:00:22 +02:00
|
|
|
#include "t2embapi.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(t2embed);
|
2009-05-05 05:52:37 +02:00
|
|
|
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
|
|
{
|
|
|
|
switch (fdwReason)
|
|
|
|
{
|
|
|
|
case DLL_WINE_PREATTACH:
|
|
|
|
return FALSE; /* prefer native version */
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls(hinstDLL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2009-07-16 05:00:22 +02:00
|
|
|
|
|
|
|
LONG WINAPI TTLoadEmbeddedFont(HANDLE *phFontReference, ULONG ulFlags,
|
|
|
|
ULONG *pulPrivStatus, ULONG ulPrivs,
|
|
|
|
ULONG *pulStatus, READEMBEDPROC lpfnReadFromStream,
|
|
|
|
LPVOID lpvReadStream, LPWSTR szWinFamilyName,
|
|
|
|
LPSTR szMacFamilyName, TTLOADINFO *pTTLoadInfo)
|
|
|
|
{
|
|
|
|
FIXME("(%p 0x%08x %p 0x%08x %p %p %p %s %s %p) stub\n", phFontReference,
|
|
|
|
ulFlags, pulPrivStatus, ulPrivs, pulStatus, lpfnReadFromStream,
|
|
|
|
lpvReadStream, debugstr_w(szWinFamilyName), szMacFamilyName,
|
|
|
|
pTTLoadInfo);
|
|
|
|
|
|
|
|
return E_API_NOTIMPL;
|
|
|
|
}
|
2010-03-30 19:48:32 +02:00
|
|
|
|
2011-03-03 13:09:56 +01:00
|
|
|
LONG WINAPI TTEmbedFont(HDC hDC, ULONG ulFlags, ULONG ulCharSet, ULONG *pulPrivStatus,
|
|
|
|
ULONG *pulStatus, WRITEEMBEDPROC lpfnWriteToStream, LPVOID lpvWriteStream,
|
|
|
|
USHORT *pusCharCodeSet, USHORT usCharCodeCount, USHORT usLanguage,
|
|
|
|
TTEMBEDINFO *pTTEmbedInfo)
|
|
|
|
{
|
|
|
|
FIXME("(%p 0x%08x 0x%08x %p %p %p %p %p %u %u %p) stub\n", hDC,
|
|
|
|
ulFlags, ulCharSet, pulPrivStatus, pulStatus, lpfnWriteToStream,
|
|
|
|
lpvWriteStream, pusCharCodeSet, usCharCodeCount, usLanguage,
|
|
|
|
pTTEmbedInfo);
|
|
|
|
|
|
|
|
return E_API_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2010-03-30 19:48:32 +02:00
|
|
|
LONG WINAPI TTGetEmbeddingType(HDC hDC, ULONG *status)
|
|
|
|
{
|
2016-03-30 12:00:26 +02:00
|
|
|
OUTLINETEXTMETRICW otm;
|
2016-08-12 00:45:20 +02:00
|
|
|
WORD fsType;
|
2016-03-30 12:00:26 +02:00
|
|
|
|
|
|
|
TRACE("(%p %p)\n", hDC, status);
|
|
|
|
|
|
|
|
if (!hDC)
|
|
|
|
return E_HDCINVALID;
|
|
|
|
|
|
|
|
otm.otmSize = sizeof(otm);
|
|
|
|
if (!GetOutlineTextMetricsW(hDC, otm.otmSize, &otm))
|
|
|
|
return E_NOTATRUETYPEFONT;
|
|
|
|
|
|
|
|
if (!status)
|
|
|
|
return E_PERMISSIONSINVALID;
|
|
|
|
|
2016-08-12 00:45:20 +02:00
|
|
|
otm.otmfsType = (fsType = otm.otmfsType) & 0xf;
|
2016-03-30 12:00:26 +02:00
|
|
|
if (otm.otmfsType == LICENSE_INSTALLABLE)
|
|
|
|
*status = EMBED_INSTALLABLE;
|
|
|
|
else if (otm.otmfsType & LICENSE_EDITABLE)
|
|
|
|
*status = EMBED_EDITABLE;
|
2016-08-10 23:19:21 +02:00
|
|
|
else if (otm.otmfsType & LICENSE_PREVIEWPRINT)
|
|
|
|
*status = EMBED_PREVIEWPRINT;
|
|
|
|
else if (otm.otmfsType & LICENSE_NOEMBEDDING)
|
|
|
|
*status = EMBED_NOEMBEDDING;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WARN("unrecognized flags, %#x\n", otm.otmfsType);
|
|
|
|
*status = EMBED_INSTALLABLE;
|
|
|
|
}
|
2016-03-30 12:00:26 +02:00
|
|
|
|
2016-08-12 00:45:20 +02:00
|
|
|
TRACE("fsType 0x%04x, status %u\n", fsType, *status);
|
2016-03-30 12:00:26 +02:00
|
|
|
return E_NONE;
|
2010-03-30 19:48:32 +02:00
|
|
|
}
|
2010-04-27 20:37:57 +02:00
|
|
|
|
2016-04-02 11:19:17 +02:00
|
|
|
LONG WINAPI TTIsEmbeddingEnabledForFacename(LPCSTR facename, BOOL *enabled)
|
|
|
|
{
|
|
|
|
static const WCHAR exclusionlistW[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'S','h','a','r','e','d',' ','T','o','o','l','s','\\','t','2','e','m','b','e','d',0};
|
|
|
|
DWORD index;
|
|
|
|
HKEY hkey;
|
|
|
|
LONG ret;
|
|
|
|
|
|
|
|
TRACE("(%s %p)\n", debugstr_a(facename), enabled);
|
|
|
|
|
|
|
|
if (!facename)
|
|
|
|
return E_FACENAMEINVALID;
|
|
|
|
|
|
|
|
if (!enabled)
|
|
|
|
return E_PBENABLEDINVALID;
|
|
|
|
|
|
|
|
*enabled = TRUE;
|
|
|
|
if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, exclusionlistW, 0, GENERIC_READ, &hkey))
|
2016-08-12 00:45:20 +02:00
|
|
|
goto out;
|
2016-04-02 11:19:17 +02:00
|
|
|
|
|
|
|
*enabled = TRUE;
|
|
|
|
ret = ERROR_SUCCESS;
|
|
|
|
index = 0;
|
|
|
|
while (ret != ERROR_NO_MORE_ITEMS)
|
|
|
|
{
|
|
|
|
DWORD name_len, value_len, value, type;
|
|
|
|
CHAR name[LF_FACESIZE];
|
|
|
|
|
2018-08-08 22:20:00 +02:00
|
|
|
name_len = ARRAY_SIZE(name);
|
2016-04-02 11:19:17 +02:00
|
|
|
value_len = sizeof(value);
|
|
|
|
ret = RegEnumValueA(hkey, index++, name, &name_len, NULL, &type, (BYTE*)&value, &value_len);
|
|
|
|
if (ret || type != REG_DWORD)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!lstrcmpiA(name, facename))
|
|
|
|
{
|
|
|
|
*enabled = !!value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
|
2016-08-12 00:45:20 +02:00
|
|
|
out:
|
|
|
|
TRACE("embedding %s for %s\n", *enabled ? "enabled" : "disabled", debugstr_a(facename));
|
2016-04-02 11:19:17 +02:00
|
|
|
return E_NONE;
|
|
|
|
}
|
|
|
|
|
2010-04-27 20:37:57 +02:00
|
|
|
LONG WINAPI TTIsEmbeddingEnabled(HDC hDC, BOOL *enabled)
|
|
|
|
{
|
2016-04-02 11:19:18 +02:00
|
|
|
OUTLINETEXTMETRICA *otm;
|
|
|
|
LONG ret;
|
|
|
|
UINT len;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", hDC, enabled);
|
|
|
|
|
|
|
|
if (!hDC)
|
|
|
|
return E_HDCINVALID;
|
|
|
|
|
|
|
|
len = GetOutlineTextMetricsA(hDC, 0, NULL);
|
|
|
|
if (!len)
|
|
|
|
return E_ERRORACCESSINGFACENAME;
|
|
|
|
|
|
|
|
otm = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
if (!otm)
|
|
|
|
return E_NOFREEMEMORY;
|
|
|
|
|
|
|
|
GetOutlineTextMetricsA(hDC, len, otm);
|
2016-08-12 00:45:19 +02:00
|
|
|
ret = TTIsEmbeddingEnabledForFacename((LPCSTR)otm + (ULONG_PTR)otm->otmpFaceName, enabled);
|
2016-04-02 11:19:18 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, otm);
|
|
|
|
return ret;
|
2010-04-27 20:37:57 +02:00
|
|
|
}
|
2014-07-24 06:27:33 +02:00
|
|
|
|
|
|
|
LONG WINAPI TTDeleteEmbeddedFont(HANDLE hFontReference, ULONG flags, ULONG *status)
|
|
|
|
{
|
|
|
|
FIXME("(%p 0x%08x %p) stub\n", hFontReference, flags, status);
|
|
|
|
return E_API_NOTIMPL;
|
|
|
|
}
|