2010-03-10 12:46:41 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-03-10 12:46:41 +00:00
|
|
|
|
|
|
|
#ifndef GFX_MACFONT_H
|
|
|
|
#define GFX_MACFONT_H
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2010-03-10 12:46:41 +00:00
|
|
|
#include "gfxFont.h"
|
|
|
|
#include "cairo.h"
|
2013-10-07 23:15:59 +00:00
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
|
|
|
|
|
|
class MacOSFontEntry;
|
2010-03-10 12:46:41 +00:00
|
|
|
|
|
|
|
class gfxMacFont : public gfxFont
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gfxMacFont(MacOSFontEntry *aFontEntry, const gfxFontStyle *aFontStyle,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aNeedsBold);
|
2010-03-10 12:46:41 +00:00
|
|
|
|
|
|
|
virtual ~gfxMacFont();
|
|
|
|
|
2010-06-11 19:14:38 +00:00
|
|
|
CGFontRef GetCGFontRef() const { return mCGFont; }
|
2010-03-10 12:46:41 +00:00
|
|
|
|
|
|
|
/* overrides for the pure virtual methods in gfxFont */
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual uint32_t GetSpaceGlyph() override {
|
2010-03-10 12:46:41 +00:00
|
|
|
return mSpaceGlyph;
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool SetupCairoFont(gfxContext *aContext) override;
|
2010-03-10 12:46:41 +00:00
|
|
|
|
2011-06-22 08:49:57 +00:00
|
|
|
/* override Measure to add padding for antialiasing */
|
|
|
|
virtual RunMetrics Measure(gfxTextRun *aTextRun,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aStart, uint32_t aEnd,
|
2011-06-22 08:49:57 +00:00
|
|
|
BoundingBoxType aBoundingBoxType,
|
|
|
|
gfxContext *aContextForTightBoundingBox,
|
2014-11-17 09:59:50 +00:00
|
|
|
Spacing *aSpacing,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint16_t aOrientation) override;
|
2011-06-22 08:49:57 +00:00
|
|
|
|
2014-11-17 09:59:49 +00:00
|
|
|
// We need to provide hinted (non-linear) glyph widths if using a font
|
|
|
|
// with embedded color bitmaps (Apple Color Emoji), as Core Text renders
|
|
|
|
// the glyphs with non-linear scaling at small pixel sizes.
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool ProvidesGlyphWidths() const override {
|
2014-11-17 09:59:49 +00:00
|
|
|
return mFontEntry->HasFontTable(TRUETYPE_TAG('s','b','i','x'));
|
|
|
|
}
|
|
|
|
|
2014-11-17 09:59:50 +00:00
|
|
|
virtual int32_t GetGlyphWidth(DrawTarget& aDrawTarget,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint16_t aGID) override;
|
2014-11-17 09:59:49 +00:00
|
|
|
|
2014-11-17 09:59:50 +00:00
|
|
|
virtual mozilla::TemporaryRef<mozilla::gfx::ScaledFont>
|
2015-03-21 16:28:04 +00:00
|
|
|
GetScaledFont(mozilla::gfx::DrawTarget *aTarget) override;
|
2011-11-18 04:00:38 +00:00
|
|
|
|
2014-10-24 16:32:23 +00:00
|
|
|
virtual mozilla::TemporaryRef<mozilla::gfx::GlyphRenderingOptions>
|
2015-03-21 16:28:04 +00:00
|
|
|
GetGlyphRenderingOptions(const TextRunDrawParams* aRunParams = nullptr) override;
|
2014-10-24 16:32:23 +00:00
|
|
|
|
2013-10-15 02:19:47 +00:00
|
|
|
virtual void AddSizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
2015-03-21 16:28:04 +00:00
|
|
|
FontCacheSizes* aSizes) const override;
|
2013-10-15 02:19:47 +00:00
|
|
|
virtual void AddSizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
2015-03-21 16:28:04 +00:00
|
|
|
FontCacheSizes* aSizes) const override;
|
2012-03-23 12:14:16 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual FontType GetType() const override { return FONT_TYPE_MAC; }
|
2012-04-11 14:55:31 +00:00
|
|
|
|
2010-03-10 12:46:41 +00:00
|
|
|
protected:
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual const Metrics& GetHorizontalMetrics() override {
|
2014-09-30 06:37:40 +00:00
|
|
|
return mMetrics;
|
|
|
|
}
|
|
|
|
|
2011-01-07 12:38:28 +00:00
|
|
|
// override to prefer CoreText shaping with fonts that depend on AAT
|
2014-05-31 07:12:40 +00:00
|
|
|
virtual bool ShapeText(gfxContext *aContext,
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t *aText,
|
2014-05-31 07:12:40 +00:00
|
|
|
uint32_t aOffset,
|
|
|
|
uint32_t aLength,
|
|
|
|
int32_t aScript,
|
2014-10-01 19:25:48 +00:00
|
|
|
bool aVertical,
|
2015-03-21 16:28:04 +00:00
|
|
|
gfxShapedText *aShapedText) override;
|
2011-01-07 12:38:28 +00:00
|
|
|
|
2010-03-10 12:46:41 +00:00
|
|
|
void InitMetrics();
|
2011-06-24 17:55:27 +00:00
|
|
|
void InitMetricsFromPlatform();
|
2010-03-10 12:46:41 +00:00
|
|
|
|
2010-10-07 07:59:16 +00:00
|
|
|
// Get width and glyph ID for a character; uses aConvFactor
|
|
|
|
// to convert font units as returned by CG to actual dimensions
|
2014-01-04 15:02:17 +00:00
|
|
|
gfxFloat GetCharWidth(CFDataRef aCmap, char16_t aUniChar,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t *aGlyphID, gfxFloat aConvFactor);
|
2010-06-11 19:14:38 +00:00
|
|
|
|
2011-06-24 17:55:27 +00:00
|
|
|
// a weak reference to the CoreGraphics font: this is owned by the
|
|
|
|
// MacOSFontEntry, it is not retained or released by gfxMacFont
|
2010-06-11 19:14:38 +00:00
|
|
|
CGFontRef mCGFont;
|
2010-03-10 12:46:41 +00:00
|
|
|
|
2014-11-17 09:59:49 +00:00
|
|
|
// a Core Text font reference, created only if we're using CT to measure
|
|
|
|
// glyph widths; otherwise null.
|
|
|
|
CTFontRef mCTFont;
|
|
|
|
|
2010-03-10 12:46:41 +00:00
|
|
|
cairo_font_face_t *mFontFace;
|
|
|
|
|
2014-05-31 07:12:40 +00:00
|
|
|
nsAutoPtr<gfxFontShaper> mCoreTextShaper;
|
|
|
|
|
2010-03-10 12:46:41 +00:00
|
|
|
Metrics mMetrics;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mSpaceGlyph;
|
2010-03-10 12:46:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_MACFONT_H */
|