2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Foundation code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Vladimir Vukicevic <vladimir@pobox.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "gfxPlatform.h"
|
|
|
|
|
|
|
|
#if defined(XP_WIN)
|
|
|
|
#include "gfxWindowsPlatform.h"
|
|
|
|
#elif defined(XP_MACOSX)
|
|
|
|
#include "gfxPlatformMac.h"
|
2007-03-29 14:48:46 -07:00
|
|
|
#include "gfxQuartzFontCache.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#elif defined(MOZ_WIDGET_GTK2)
|
|
|
|
#include "gfxPlatformGtk.h"
|
2008-04-19 06:19:04 -07:00
|
|
|
#elif defined(MOZ_WIDGET_QT)
|
|
|
|
#include "gfxQtPlatform.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#elif defined(XP_BEOS)
|
|
|
|
#include "gfxBeOSPlatform.h"
|
|
|
|
#elif defined(XP_OS2)
|
|
|
|
#include "gfxOS2Platform.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxImageSurface.h"
|
2007-03-29 14:48:46 -07:00
|
|
|
#include "gfxTextRunCache.h"
|
2007-07-03 20:39:01 -07:00
|
|
|
#include "gfxTextRunWordCache.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIPref.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
|
|
|
|
#ifdef MOZ_ENABLE_GLITZ
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "cairo.h"
|
2007-07-23 15:02:17 -07:00
|
|
|
#include "lcms.h"
|
|
|
|
|
2008-01-30 16:23:36 -08:00
|
|
|
#include "plstr.h"
|
2007-07-23 15:02:17 -07:00
|
|
|
#include "nsIPrefService.h"
|
|
|
|
#include "nsIPrefBranch.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
gfxPlatform *gPlatform = nsnull;
|
|
|
|
int gGlitzState = -1;
|
2008-07-16 20:09:08 -07:00
|
|
|
|
|
|
|
// These two may point to the same profile
|
2007-07-23 15:02:17 -07:00
|
|
|
static cmsHPROFILE gCMSOutputProfile = nsnull;
|
2008-07-16 20:09:08 -07:00
|
|
|
static cmsHPROFILE gCMSsRGBProfile = nsnull;
|
|
|
|
|
2007-07-23 15:02:17 -07:00
|
|
|
static cmsHTRANSFORM gCMSRGBTransform = nsnull;
|
2007-08-30 09:21:16 -07:00
|
|
|
static cmsHTRANSFORM gCMSInverseRGBTransform = nsnull;
|
2007-07-23 15:02:17 -07:00
|
|
|
static cmsHTRANSFORM gCMSRGBATransform = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-11 21:55:36 -07:00
|
|
|
static const char *CMPrefName = "gfx.color_management.mode";
|
|
|
|
static const char *CMPrefNameOld = "gfx.color_management.enabled";
|
|
|
|
static const char *CMIntentPrefName = "gfx.color_management.rendering_intent";
|
|
|
|
static void MigratePrefs();
|
|
|
|
|
2008-01-30 16:23:36 -08:00
|
|
|
// this needs to match the list of pref font.default.xx entries listed in all.js!
|
|
|
|
// the order *must* match the order in eFontPrefLang
|
|
|
|
static const char *gPrefLangNames[] = {
|
|
|
|
"x-western",
|
|
|
|
"x-central-euro",
|
|
|
|
"ja",
|
|
|
|
"zh-TW",
|
|
|
|
"zh-CN",
|
|
|
|
"zh-HK",
|
|
|
|
"ko",
|
|
|
|
"x-cyrillic",
|
|
|
|
"x-baltic",
|
|
|
|
"el",
|
|
|
|
"tr",
|
|
|
|
"th",
|
|
|
|
"he",
|
|
|
|
"ar",
|
|
|
|
"x-devanagari",
|
|
|
|
"x-tamil",
|
|
|
|
"x-armn",
|
|
|
|
"x-beng",
|
|
|
|
"x-cans",
|
|
|
|
"x-ethi",
|
|
|
|
"x-geor",
|
|
|
|
"x-gujr",
|
|
|
|
"x-guru",
|
|
|
|
"x-khmr",
|
|
|
|
"x-mlym",
|
2008-04-03 21:23:18 -07:00
|
|
|
"x-orya",
|
|
|
|
"x-telu",
|
|
|
|
"x-knda",
|
|
|
|
"x-sinh",
|
2008-01-30 16:23:36 -08:00
|
|
|
"x-unicode",
|
|
|
|
"x-user-def"
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
gfxPlatform*
|
|
|
|
gfxPlatform::GetPlatform()
|
|
|
|
{
|
2007-03-29 14:48:46 -07:00
|
|
|
return gPlatform;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
gfxPlatform::Init()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!gPlatform, "Already started???");
|
2007-03-22 10:30:00 -07:00
|
|
|
#if defined(XP_WIN)
|
2007-03-29 14:48:46 -07:00
|
|
|
gPlatform = new gfxWindowsPlatform;
|
2007-03-22 10:30:00 -07:00
|
|
|
#elif defined(XP_MACOSX)
|
2007-03-29 14:48:46 -07:00
|
|
|
gPlatform = new gfxPlatformMac;
|
2007-03-22 10:30:00 -07:00
|
|
|
#elif defined(MOZ_WIDGET_GTK2)
|
2007-03-29 14:48:46 -07:00
|
|
|
gPlatform = new gfxPlatformGtk;
|
2008-04-19 06:19:04 -07:00
|
|
|
#elif defined(MOZ_WIDGET_QT)
|
|
|
|
gPlatform = new gfxQtPlatform;
|
2007-03-22 10:30:00 -07:00
|
|
|
#elif defined(XP_BEOS)
|
2007-03-29 14:48:46 -07:00
|
|
|
gPlatform = new gfxBeOSPlatform;
|
2007-03-22 10:30:00 -07:00
|
|
|
#elif defined(XP_OS2)
|
2007-03-29 14:48:46 -07:00
|
|
|
gPlatform = new gfxOS2Platform;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2007-03-29 14:48:46 -07:00
|
|
|
if (!gPlatform)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
#if defined(XP_MACOSX)
|
|
|
|
rv = gfxQuartzFontCache::Init();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_ERROR("Could not initialize gfxQuartzFontCache");
|
|
|
|
Shutdown();
|
|
|
|
return rv;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-03-29 14:48:46 -07:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-04-03 20:32:43 -07:00
|
|
|
rv = gfxFontCache::Init();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_ERROR("Could not initialize gfxFontCache");
|
|
|
|
Shutdown();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2007-07-03 20:39:01 -07:00
|
|
|
rv = gfxTextRunWordCache::Init();
|
2007-03-29 14:48:46 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
2007-07-03 20:39:01 -07:00
|
|
|
NS_ERROR("Could not initialize gfxTextRunWordCache");
|
|
|
|
Shutdown();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = gfxTextRunCache::Init();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_ERROR("Could not initialize gfxTextRunCache");
|
2007-03-29 14:48:46 -07:00
|
|
|
Shutdown();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2008-08-11 21:55:36 -07:00
|
|
|
/* Pref migration hook. */
|
|
|
|
MigratePrefs();
|
|
|
|
|
2007-03-29 14:48:46 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gfxPlatform::Shutdown()
|
|
|
|
{
|
2007-03-29 14:48:46 -07:00
|
|
|
// These may be called before the corresponding subsystems have actually
|
|
|
|
// started up. That's OK, they can handle it.
|
2007-07-03 20:39:01 -07:00
|
|
|
gfxTextRunCache::Shutdown();
|
|
|
|
gfxTextRunWordCache::Shutdown();
|
2007-04-03 20:32:43 -07:00
|
|
|
gfxFontCache::Shutdown();
|
2007-03-29 14:48:46 -07:00
|
|
|
#if defined(XP_MACOSX)
|
|
|
|
gfxQuartzFontCache::Shutdown();
|
|
|
|
#endif
|
2008-07-16 20:09:08 -07:00
|
|
|
|
|
|
|
// Free the various non-null transforms and loaded profiles
|
|
|
|
if (gCMSRGBTransform) {
|
|
|
|
cmsDeleteTransform(gCMSRGBTransform);
|
|
|
|
gCMSRGBTransform = nsnull;
|
|
|
|
}
|
|
|
|
if (gCMSInverseRGBTransform) {
|
|
|
|
cmsDeleteTransform(gCMSInverseRGBTransform);
|
|
|
|
gCMSInverseRGBTransform = nsnull;
|
|
|
|
}
|
|
|
|
if (gCMSRGBATransform) {
|
|
|
|
cmsDeleteTransform(gCMSRGBATransform);
|
|
|
|
gCMSRGBATransform = nsnull;
|
|
|
|
}
|
|
|
|
if (gCMSOutputProfile) {
|
|
|
|
cmsCloseProfile(gCMSOutputProfile);
|
|
|
|
|
|
|
|
// handle the aliased case
|
|
|
|
if (gCMSsRGBProfile == gCMSOutputProfile)
|
|
|
|
gCMSsRGBProfile = nsnull;
|
|
|
|
gCMSOutputProfile = nsnull;
|
|
|
|
}
|
|
|
|
if (gCMSsRGBProfile) {
|
|
|
|
cmsCloseProfile(gCMSsRGBProfile);
|
|
|
|
gCMSsRGBProfile = nsnull;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
delete gPlatform;
|
|
|
|
gPlatform = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxPlatform::~gfxPlatform()
|
|
|
|
{
|
|
|
|
// The cairo folks think we should only clean up in debug builds,
|
|
|
|
// but we're generally in the habit of trying to shut down as
|
|
|
|
// cleanly as possible even in production code, so call this
|
|
|
|
// cairo_debug_* function unconditionally.
|
2007-10-25 18:21:50 -07:00
|
|
|
//
|
|
|
|
// because cairo can assert and thus crash on shutdown, don't do this in release builds
|
2008-02-11 22:47:40 -08:00
|
|
|
#if MOZ_TREE_CAIRO && (defined(DEBUG) || defined(NS_BUILD_REFCNT_LOGGING) || defined(NS_TRACE_MALLOC))
|
2007-03-22 10:30:00 -07:00
|
|
|
cairo_debug_reset_static_data();
|
2007-10-25 18:21:50 -07:00
|
|
|
#endif
|
2007-10-06 00:26:13 -07:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
// It would be nice to do this (although it might need to be after
|
|
|
|
// the cairo shutdown that happens in ~gfxPlatform). It even looks
|
|
|
|
// idempotent. But it has fatal assertions that fire if stuff is
|
|
|
|
// leaked, and we hit them.
|
|
|
|
FcFini();
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
gfxPlatform::UseGlitz()
|
|
|
|
{
|
|
|
|
#ifdef MOZ_ENABLE_GLITZ
|
|
|
|
if (gGlitzState == -1) {
|
|
|
|
if (getenv("MOZ_GLITZ"))
|
|
|
|
gGlitzState = 1;
|
|
|
|
else
|
|
|
|
gGlitzState = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gGlitzState)
|
|
|
|
return PR_TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gfxPlatform::SetUseGlitz(PRBool use)
|
|
|
|
{
|
|
|
|
gGlitzState = (use ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxASurface>
|
2007-11-27 01:35:18 -08:00
|
|
|
gfxPlatform::OptimizeImage(gfxImageSurface *aSurface,
|
|
|
|
gfxASurface::gfxImageFormat format)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
const gfxIntSize& surfaceSize = aSurface->GetSize();
|
|
|
|
|
2007-11-27 01:35:18 -08:00
|
|
|
nsRefPtr<gfxASurface> optSurface = CreateOffscreenSurface(surfaceSize, format);
|
|
|
|
if (!optSurface || optSurface->CairoStatus() != 0)
|
2007-03-22 10:30:00 -07:00
|
|
|
return nsnull;
|
|
|
|
|
2007-12-31 20:42:49 -08:00
|
|
|
gfxContext tmpCtx(optSurface);
|
|
|
|
tmpCtx.SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
tmpCtx.SetSource(aSurface);
|
|
|
|
tmpCtx.Paint();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
gfxASurface *ret = optSurface;
|
|
|
|
NS_ADDREF(ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
gfxPlatform::GetFontList(const nsACString& aLangGroup,
|
|
|
|
const nsACString& aGenericFamily,
|
|
|
|
nsStringArray& aListOfFonts)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
gfxPlatform::UpdateFontList()
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
AppendGenericFontFromPref(nsString& aFonts, const char *aLangGroup, const char *aGenericName)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPref> prefs(do_GetService(NS_PREF_CONTRACTID));
|
|
|
|
if (!prefs)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsCAutoString prefName;
|
2007-12-27 17:28:26 -08:00
|
|
|
nsXPIDLString nameValue, nameListValue;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsXPIDLString genericName;
|
|
|
|
if (aGenericName) {
|
|
|
|
genericName = NS_ConvertASCIItoUTF16(aGenericName);
|
|
|
|
} else {
|
|
|
|
prefName.AssignLiteral("font.default.");
|
|
|
|
prefName.Append(aLangGroup);
|
|
|
|
prefs->CopyUnicharPref(prefName.get(), getter_Copies(genericName));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCAutoString genericDotLang;
|
|
|
|
genericDotLang.Assign(NS_ConvertUTF16toUTF8(genericName));
|
|
|
|
genericDotLang.AppendLiteral(".");
|
|
|
|
genericDotLang.Append(aLangGroup);
|
|
|
|
|
2007-12-27 17:28:26 -08:00
|
|
|
// fetch font.name.xxx value
|
2007-03-22 10:30:00 -07:00
|
|
|
prefName.AssignLiteral("font.name.");
|
|
|
|
prefName.Append(genericDotLang);
|
2007-12-27 17:28:26 -08:00
|
|
|
rv = prefs->CopyUnicharPref(prefName.get(), getter_Copies(nameValue));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
if (!aFonts.IsEmpty())
|
|
|
|
aFonts.AppendLiteral(", ");
|
2007-12-27 17:28:26 -08:00
|
|
|
aFonts.Append(nameValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-12-27 17:28:26 -08:00
|
|
|
// fetch font.name-list.xxx value
|
2007-03-22 10:30:00 -07:00
|
|
|
prefName.AssignLiteral("font.name-list.");
|
|
|
|
prefName.Append(genericDotLang);
|
2007-12-27 17:28:26 -08:00
|
|
|
rv = prefs->CopyUnicharPref(prefName.get(), getter_Copies(nameListValue));
|
|
|
|
if (NS_SUCCEEDED(rv) && !nameListValue.Equals(nameValue)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!aFonts.IsEmpty())
|
|
|
|
aFonts.AppendLiteral(", ");
|
2007-12-27 17:28:26 -08:00
|
|
|
aFonts.Append(nameListValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-07-18 07:22:06 -07:00
|
|
|
gfxPlatform::GetPrefFonts(const char *aLangGroup, nsString& aFonts, PRBool aAppendUnicode)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
aFonts.Truncate();
|
|
|
|
|
|
|
|
AppendGenericFontFromPref(aFonts, aLangGroup, nsnull);
|
2007-07-18 07:22:06 -07:00
|
|
|
if (aAppendUnicode)
|
|
|
|
AppendGenericFontFromPref(aFonts, "x-unicode", nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-30 16:23:36 -08:00
|
|
|
PRBool gfxPlatform::ForEachPrefFont(eFontPrefLang aLangArray[], PRUint32 aLangArrayLen, PrefFontCallback aCallback,
|
|
|
|
void *aClosure)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPref> prefs(do_GetService(NS_PREF_CONTRACTID));
|
|
|
|
if (!prefs)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
PRUint32 i;
|
|
|
|
|
|
|
|
for (i = 0; i < aLangArrayLen; i++) {
|
|
|
|
eFontPrefLang prefLang = aLangArray[i];
|
|
|
|
const char *langGroup = GetPrefLangName(prefLang);
|
|
|
|
|
|
|
|
nsCAutoString prefName;
|
|
|
|
nsXPIDLString nameValue, nameListValue;
|
|
|
|
|
|
|
|
nsXPIDLString genericName;
|
|
|
|
prefName.AssignLiteral("font.default.");
|
|
|
|
prefName.Append(langGroup);
|
|
|
|
prefs->CopyUnicharPref(prefName.get(), getter_Copies(genericName));
|
|
|
|
|
|
|
|
nsCAutoString genericDotLang;
|
|
|
|
genericDotLang.Assign(NS_ConvertUTF16toUTF8(genericName));
|
|
|
|
genericDotLang.AppendLiteral(".");
|
|
|
|
genericDotLang.Append(langGroup);
|
|
|
|
|
|
|
|
// fetch font.name.xxx value
|
|
|
|
prefName.AssignLiteral("font.name.");
|
|
|
|
prefName.Append(genericDotLang);
|
|
|
|
rv = prefs->CopyUnicharPref(prefName.get(), getter_Copies(nameValue));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
if (!aCallback(prefLang, nameValue, aClosure))
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fetch font.name-list.xxx value
|
|
|
|
prefName.AssignLiteral("font.name-list.");
|
|
|
|
prefName.Append(genericDotLang);
|
|
|
|
rv = prefs->CopyUnicharPref(prefName.get(), getter_Copies(nameListValue));
|
|
|
|
if (NS_SUCCEEDED(rv) && !nameListValue.Equals(nameValue)) {
|
|
|
|
if (!aCallback(prefLang, nameListValue, aClosure))
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
eFontPrefLang
|
|
|
|
gfxPlatform::GetFontPrefLangFor(const char* aLang)
|
|
|
|
{
|
|
|
|
if (!aLang || !aLang[0])
|
|
|
|
return eFontPrefLang_Others;
|
|
|
|
for (PRUint32 i = 0; i < PRUint32(eFontPrefLang_LangCount); ++i) {
|
|
|
|
if (!PL_strcasecmp(gPrefLangNames[i], aLang))
|
|
|
|
return eFontPrefLang(i);
|
|
|
|
}
|
|
|
|
return eFontPrefLang_Others;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char*
|
|
|
|
gfxPlatform::GetPrefLangName(eFontPrefLang aLang)
|
|
|
|
{
|
|
|
|
if (PRUint32(aLang) < PRUint32(eFontPrefLang_AllCount))
|
|
|
|
return gPrefLangNames[PRUint32(aLang)];
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PRUint32 kFontPrefLangCJKMask = (1 << (PRUint32) eFontPrefLang_Japanese) | (1 << (PRUint32) eFontPrefLang_ChineseTW)
|
|
|
|
| (1 << (PRUint32) eFontPrefLang_ChineseCN) | (1 << (PRUint32) eFontPrefLang_ChineseHK)
|
2008-01-31 00:41:09 -08:00
|
|
|
| (1 << (PRUint32) eFontPrefLang_Korean) | (1 << (PRUint32) eFontPrefLang_CJKSet);
|
2008-01-30 16:23:36 -08:00
|
|
|
PRBool
|
|
|
|
gfxPlatform::IsLangCJK(eFontPrefLang aLang)
|
|
|
|
{
|
|
|
|
return kFontPrefLangCJKMask & (1 << (PRUint32) aLang);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gfxPlatform::AppendPrefLang(eFontPrefLang aPrefLangs[], PRUint32& aLen, eFontPrefLang aAddLang)
|
|
|
|
{
|
|
|
|
if (aLen >= kMaxLenPrefLangList) return;
|
|
|
|
|
|
|
|
// make sure
|
|
|
|
PRUint32 i = 0;
|
|
|
|
while (i < aLen && aPrefLangs[i] != aAddLang) {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == aLen) {
|
|
|
|
aPrefLangs[aLen] = aAddLang;
|
|
|
|
aLen++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-11 21:55:36 -07:00
|
|
|
eCMSMode
|
|
|
|
gfxPlatform::GetCMSMode()
|
2007-07-23 15:02:17 -07:00
|
|
|
{
|
2008-08-11 21:55:36 -07:00
|
|
|
static eCMSMode sMode = eCMSMode_Off;
|
|
|
|
static PRBool initialized = PR_FALSE;
|
|
|
|
|
|
|
|
if (initialized == PR_FALSE) {
|
|
|
|
initialized = PR_TRUE;
|
2007-07-23 15:02:17 -07:00
|
|
|
nsCOMPtr<nsIPrefBranch> prefs = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
|
|
|
if (prefs) {
|
2008-08-11 21:55:36 -07:00
|
|
|
PRInt32 mode;
|
2007-07-23 15:02:17 -07:00
|
|
|
nsresult rv =
|
2008-08-11 21:55:36 -07:00
|
|
|
prefs->GetIntPref(CMPrefName, &mode);
|
|
|
|
if (NS_SUCCEEDED(rv) && (mode >= 0) && (mode < eCMSMode_AllCount)) {
|
|
|
|
sMode = static_cast<eCMSMode>(mode);
|
2007-07-23 15:02:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-08-11 21:55:36 -07:00
|
|
|
return sMode;
|
2007-07-23 15:02:17 -07:00
|
|
|
}
|
|
|
|
|
2008-07-23 10:33:12 -07:00
|
|
|
/* Chris Murphy (CM consultant) suggests this as a default in the event that we
|
|
|
|
cannot reproduce relative + Black Point Compensation. BPC brings an
|
|
|
|
unacceptable performance overhead, so we go with perceptual. */
|
|
|
|
#define INTENT_DEFAULT INTENT_PERCEPTUAL
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
gfxPlatform::GetRenderingIntent()
|
|
|
|
{
|
|
|
|
/* -2 means that we haven't tried querying the pref service yet. */
|
|
|
|
static int sIntent = -2;
|
|
|
|
|
|
|
|
if (sIntent == -2) {
|
|
|
|
|
|
|
|
/* Try to query the pref system for a rendering intent. */
|
|
|
|
nsCOMPtr<nsIPrefBranch> prefs = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
|
|
|
if (prefs) {
|
|
|
|
PRInt32 pIntent;
|
2008-08-11 21:55:36 -07:00
|
|
|
nsresult rv = prefs->GetIntPref(CMIntentPrefName, &pIntent);
|
2008-07-23 10:33:12 -07:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
|
|
|
|
/* If the pref is within range, use it as an override. */
|
|
|
|
if ((pIntent >= INTENT_MIN) && (pIntent <= INTENT_MAX))
|
|
|
|
sIntent = pIntent;
|
|
|
|
|
|
|
|
/* If the pref is out of range, use embedded profile. */
|
|
|
|
else
|
|
|
|
sIntent = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we didn't get a valid intent from prefs, use the default. */
|
|
|
|
if (sIntent == -2)
|
|
|
|
sIntent = INTENT_DEFAULT;
|
|
|
|
}
|
|
|
|
return sIntent;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-23 15:02:17 -07:00
|
|
|
cmsHPROFILE
|
|
|
|
gfxPlatform::GetPlatformCMSOutputProfile()
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmsHPROFILE
|
|
|
|
gfxPlatform::GetCMSOutputProfile()
|
|
|
|
{
|
|
|
|
if (!gCMSOutputProfile) {
|
|
|
|
/* Default lcms error action is to abort on error - change */
|
|
|
|
#ifdef DEBUG_tor
|
|
|
|
cmsErrorAction(LCMS_ERROR_SHOW);
|
|
|
|
#else
|
|
|
|
cmsErrorAction(LCMS_ERROR_IGNORE);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrefBranch> prefs = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
|
|
|
if (prefs) {
|
|
|
|
nsXPIDLCString fname;
|
|
|
|
nsresult rv =
|
|
|
|
prefs->GetCharPref("gfx.color_management.display_profile",
|
|
|
|
getter_Copies(fname));
|
|
|
|
if (NS_SUCCEEDED(rv) && !fname.IsEmpty()) {
|
|
|
|
gCMSOutputProfile = cmsOpenProfileFromFile(fname, "r");
|
|
|
|
#ifdef DEBUG_tor
|
|
|
|
if (gCMSOutputProfile)
|
|
|
|
fprintf(stderr,
|
|
|
|
"ICM profile read from %s successfully\n",
|
|
|
|
fname.get());
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gCMSOutputProfile) {
|
|
|
|
gCMSOutputProfile =
|
|
|
|
gfxPlatform::GetPlatform()->GetPlatformCMSOutputProfile();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gCMSOutputProfile) {
|
2008-07-16 20:09:08 -07:00
|
|
|
gCMSOutputProfile = GetCMSsRGBProfile();
|
2007-07-23 15:02:17 -07:00
|
|
|
}
|
2008-08-15 13:59:18 -07:00
|
|
|
|
|
|
|
/* Precache the LUT16 Interpolations for the output profile. See
|
|
|
|
bug 444661 for details. */
|
2008-08-16 14:44:51 -07:00
|
|
|
cmsPrecacheProfile(gCMSOutputProfile, CMS_PRECACHE_LI168_REVERSE);
|
2007-07-23 15:02:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return gCMSOutputProfile;
|
|
|
|
}
|
|
|
|
|
2008-07-16 20:09:08 -07:00
|
|
|
cmsHPROFILE
|
|
|
|
gfxPlatform::GetCMSsRGBProfile()
|
|
|
|
{
|
2008-08-15 13:59:18 -07:00
|
|
|
if (!gCMSsRGBProfile) {
|
|
|
|
|
|
|
|
/* Create the profile using lcms. */
|
2008-07-16 20:09:08 -07:00
|
|
|
gCMSsRGBProfile = cmsCreate_sRGBProfile();
|
2008-08-15 13:59:18 -07:00
|
|
|
|
|
|
|
/* Precache the Fixed-point Interpolations for sRGB as an input
|
|
|
|
profile. See bug 444661 for details. */
|
2008-08-16 14:44:51 -07:00
|
|
|
cmsPrecacheProfile(gCMSsRGBProfile, CMS_PRECACHE_LI16F_FORWARD);
|
2008-08-15 13:59:18 -07:00
|
|
|
}
|
2008-07-16 20:09:08 -07:00
|
|
|
return gCMSsRGBProfile;
|
|
|
|
}
|
|
|
|
|
2007-07-23 15:02:17 -07:00
|
|
|
cmsHTRANSFORM
|
|
|
|
gfxPlatform::GetCMSRGBTransform()
|
|
|
|
{
|
|
|
|
if (!gCMSRGBTransform) {
|
|
|
|
cmsHPROFILE inProfile, outProfile;
|
|
|
|
outProfile = GetCMSOutputProfile();
|
2008-07-16 20:09:08 -07:00
|
|
|
inProfile = GetCMSsRGBProfile();
|
2007-07-23 15:02:17 -07:00
|
|
|
|
|
|
|
if (!inProfile || !outProfile)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
gCMSRGBTransform = cmsCreateTransform(inProfile, TYPE_RGB_8,
|
|
|
|
outProfile, TYPE_RGB_8,
|
2008-08-16 14:44:51 -07:00
|
|
|
INTENT_PERCEPTUAL, cmsFLAGS_FLOATSHAPER);
|
2007-07-23 15:02:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return gCMSRGBTransform;
|
|
|
|
}
|
|
|
|
|
2007-08-30 09:21:16 -07:00
|
|
|
cmsHTRANSFORM
|
|
|
|
gfxPlatform::GetCMSInverseRGBTransform()
|
|
|
|
{
|
|
|
|
if (!gCMSInverseRGBTransform) {
|
|
|
|
cmsHPROFILE inProfile, outProfile;
|
|
|
|
inProfile = GetCMSOutputProfile();
|
2008-07-16 20:09:08 -07:00
|
|
|
outProfile = GetCMSsRGBProfile();
|
2007-08-30 09:21:16 -07:00
|
|
|
|
|
|
|
if (!inProfile || !outProfile)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
gCMSInverseRGBTransform = cmsCreateTransform(inProfile, TYPE_RGB_8,
|
|
|
|
outProfile, TYPE_RGB_8,
|
2008-08-16 14:44:51 -07:00
|
|
|
INTENT_PERCEPTUAL, cmsFLAGS_FLOATSHAPER);
|
2007-08-30 09:21:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return gCMSInverseRGBTransform;
|
|
|
|
}
|
|
|
|
|
2007-07-23 15:02:17 -07:00
|
|
|
cmsHTRANSFORM
|
|
|
|
gfxPlatform::GetCMSRGBATransform()
|
|
|
|
{
|
|
|
|
if (!gCMSRGBATransform) {
|
|
|
|
cmsHPROFILE inProfile, outProfile;
|
|
|
|
outProfile = GetCMSOutputProfile();
|
2008-07-16 20:09:08 -07:00
|
|
|
inProfile = GetCMSsRGBProfile();
|
2007-07-23 15:02:17 -07:00
|
|
|
|
|
|
|
if (!inProfile || !outProfile)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
gCMSRGBATransform = cmsCreateTransform(inProfile, TYPE_RGBA_8,
|
|
|
|
outProfile, TYPE_RGBA_8,
|
2008-08-18 16:44:37 -07:00
|
|
|
INTENT_PERCEPTUAL, cmsFLAGS_FLOATSHAPER);
|
2007-07-23 15:02:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return gCMSRGBATransform;
|
|
|
|
}
|
2008-08-11 21:55:36 -07:00
|
|
|
|
|
|
|
static void MigratePrefs()
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Load the pref service. If we don't get it die quietly since this isn't
|
|
|
|
critical code. */
|
|
|
|
nsCOMPtr<nsIPrefBranch> prefs = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
|
|
|
if (!prefs)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Migrate from the boolean color_management.enabled pref - we now use
|
|
|
|
color_management.mode. */
|
|
|
|
PRBool hasOldCMPref;
|
|
|
|
nsresult rv =
|
|
|
|
prefs->PrefHasUserValue(CMPrefNameOld, &hasOldCMPref);
|
|
|
|
if (NS_SUCCEEDED(rv) && (hasOldCMPref == PR_TRUE)) {
|
|
|
|
PRBool CMWasEnabled;
|
|
|
|
rv = prefs->GetBoolPref(CMPrefNameOld, &CMWasEnabled);
|
|
|
|
if (NS_SUCCEEDED(rv) && (CMWasEnabled == PR_TRUE))
|
|
|
|
prefs->SetIntPref(CMPrefName, eCMSMode_All);
|
|
|
|
prefs->ClearUserPref(CMPrefNameOld);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|