summaryrefslogtreecommitdiffstats
path: root/skia/include/SkFontHost.h
diff options
context:
space:
mode:
authorinitial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98>2008-07-27 00:09:42 +0000
committerinitial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98>2008-07-27 00:09:42 +0000
commitae2c20f398933a9e86c387dcc465ec0f71065ffc (patch)
treede668b1411e2ee0b4e49b6d8f8b68183134ac990 /skia/include/SkFontHost.h
parent09911bf300f1a419907a9412154760efd0b7abc3 (diff)
downloadchromium_src-ae2c20f398933a9e86c387dcc465ec0f71065ffc.zip
chromium_src-ae2c20f398933a9e86c387dcc465ec0f71065ffc.tar.gz
chromium_src-ae2c20f398933a9e86c387dcc465ec0f71065ffc.tar.bz2
Add skia to the repository.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/include/SkFontHost.h')
-rw-r--r--skia/include/SkFontHost.h100
1 files changed, 100 insertions, 0 deletions
diff --git a/skia/include/SkFontHost.h b/skia/include/SkFontHost.h
new file mode 100644
index 0000000..7440295
--- /dev/null
+++ b/skia/include/SkFontHost.h
@@ -0,0 +1,100 @@
+/* include/graphics/SkFontHost.h
+**
+** Copyright 2006, Google Inc.
+**
+** Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+#ifndef SkFontHost_DEFINED
+#define SkFontHost_DEFINED
+
+#include "SkScalerContext.h"
+#include "SkTypeface.h"
+
+class SkDescriptor;
+class SkStream;
+class SkWStream;
+
+/** \class SkFontHost
+
+ This class is ported to each environment. It is responsible for bridging the gap
+ between SkTypeface and the resulting platform-specific instance of SkScalerContext.
+*/
+class SkFontHost {
+public:
+ /** Return the closest matching typeface given either an existing family
+ (specified by a typeface in that family) or by a familyName, and a
+ requested style.
+ 1) If familyFace is null, use famillyName.
+ 2) If famillyName is null, use familyFace.
+ 3) If both are null, return the default font that best matches style
+ */
+ static SkTypeface* FindTypeface(const SkTypeface* familyFace,
+ const char famillyName[],
+ SkTypeface::Style style);
+
+ /** Return the typeface associated with the uniqueID, or null if that ID
+ does not match any faces.
+ */
+ static SkTypeface* ResolveTypeface(uint32_t uniqueID);
+
+ /** Return a new stream to read the font data, or null if the uniqueID does
+ not match an existing typeface
+ */
+ static SkStream* OpenStream(uint32_t uniqueID);
+ static void CloseStream(uint32_t uniqueID, SkStream*);
+
+ /** Return a new typeface given the data buffer (owned by the caller).
+ If the data does not represent a valid font, return null.
+ */
+ static SkTypeface* CreateTypeface(SkStream*);
+
+ ///////////////////////////////////////////////////////////////////////////
+
+ /** Write a unique identifier to the stream, so that the same typeface can
+ be retrieved with Deserialize().
+ */
+ static void Serialize(const SkTypeface*, SkWStream*);
+ static SkTypeface* Deserialize(SkStream*);
+
+ ///////////////////////////////////////////////////////////////////////////
+
+ /** Return a subclass of SkScalarContext
+ */
+ static SkScalerContext* CreateScalerContext(const SkDescriptor* desc);
+ /** Return a scalercontext using the "fallback" font. If there is no designated
+ fallback, return null.
+ */
+ static SkScalerContext* CreateFallbackScalerContext(const SkScalerContext::Rec&);
+
+ /** Return the number of bytes (approx) that should be purged from the font
+ cache. The input parameter is the cache's estimate of how much as been
+ allocated by the cache so far.
+ To purge (basically) everything, return the input parameter.
+ To purge nothing, return 0
+ */
+ static size_t ShouldPurgeFontCache(size_t sizeAllocatedSoFar);
+
+ /** Return SkScalerContext gamma flag, or 0, based on the paint that will be
+ used to draw something with antialiasing.
+ */
+ static int ComputeGammaFlag(const SkPaint& paint);
+
+ /** Return NULL or a pointer to 256 bytes for the black (table[0]) and
+ white (table[1]) gamma tables.
+ */
+ static void GetGammaTables(const uint8_t* tables[2]);
+};
+
+#endif
+