summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/android/FontPlatformData.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
commit9364f22aed35e1a1e9d07c121510f80be3ab0502 (patch)
treed49911209b132da58d838efa852daf28d516df21 /WebCore/platform/graphics/android/FontPlatformData.h
parent87eb0cb35bad8784770ebc807e6c982432e47107 (diff)
downloadexternal_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.zip
external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.gz
external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.bz2
Initial Contribution
Diffstat (limited to 'WebCore/platform/graphics/android/FontPlatformData.h')
-rw-r--r--WebCore/platform/graphics/android/FontPlatformData.h104
1 files changed, 104 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/android/FontPlatformData.h b/WebCore/platform/graphics/android/FontPlatformData.h
new file mode 100644
index 0000000..d6933d9
--- /dev/null
+++ b/WebCore/platform/graphics/android/FontPlatformData.h
@@ -0,0 +1,104 @@
+/*
+ * This file is part of the internal font implementation. It should not be included by anyone other than
+ * FontMac.cpp, FontWin.cpp and Font.cpp.
+ *
+ * Copyright (C) 2006 Apple Computer, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 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
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ */
+
+#ifndef FontPlatformData_H
+#define FontPlatformData_H
+
+class SkPaint;
+class SkTypeface;
+
+namespace WebCore {
+
+class FontPlatformData
+{
+public:
+ static FontPlatformData Deleted()
+ {
+ return FontPlatformData(NULL, -1, false, false);
+ }
+
+ FontPlatformData();
+ FontPlatformData(const FontPlatformData&);
+ FontPlatformData(SkTypeface*, float textSize, bool fakeBold, bool fakeItalic);
+ FontPlatformData(const FontPlatformData& src, float textSize);
+ ~FontPlatformData();
+
+ FontPlatformData& operator=(const FontPlatformData&);
+ bool operator==(const FontPlatformData& a) const;
+
+ void setupPaint(SkPaint*) const;
+ unsigned hash() const;
+
+private:
+ SkTypeface* mTypeface;
+ float mTextSize;
+ bool mFakeBold;
+ bool mFakeItalic;
+};
+
+#if 0 // windows port
+class FontPlatformData
+{
+public:
+ class Deleted {};
+
+ // Used for deleted values in the font cache's hash tables.
+ FontPlatformData(Deleted)
+ : m_font((HFONT)-1), m_fontFace(0), m_scaledFont(0), m_size(0)
+ {}
+
+ FontPlatformData()
+ : m_font(0), m_fontFace(0), m_scaledFont(0), m_size(0)
+ {}
+
+ FontPlatformData(HFONT, int size);
+ ~FontPlatformData();
+
+ HFONT hfont() const { return m_font; }
+ cairo_font_face_t* fontFace() const { return m_fontFace; }
+ cairo_scaled_font_t* scaledFont() const { return m_scaledFont; }
+
+ int size() const { return m_size; }
+
+ unsigned hash() const
+ {
+ return StringImpl::computeHash((UChar*)(&m_font), sizeof(HFONT) / sizeof(UChar));
+ }
+
+ bool operator==(const FontPlatformData& other) const
+ {
+ return m_font == other.m_font && m_fontFace == other.m_fontFace &&
+ m_scaledFont == other.m_scaledFont && m_size == other.m_size;
+ }
+
+private:
+ HFONT m_font;
+ cairo_font_face_t* m_fontFace;
+ cairo_scaled_font_t* m_scaledFont;
+ int m_size;
+};
+#endif
+
+}
+
+#endif