2010-03-10 04:46:41 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 04:12:37 -07: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 04:46:41 -08:00
|
|
|
|
|
|
|
#ifndef GFX_MACFONT_H
|
|
|
|
#define GFX_MACFONT_H
|
|
|
|
|
2013-06-23 05:03:39 -07:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2010-03-10 04:46:41 -08:00
|
|
|
#include "gfxFont.h"
|
|
|
|
#include "cairo.h"
|
2013-10-07 16:15:59 -07:00
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
|
|
|
|
|
|
class MacOSFontEntry;
|
2010-03-10 04:46:41 -08:00
|
|
|
|
|
|
|
class gfxMacFont : public gfxFont
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gfxMacFont(MacOSFontEntry *aFontEntry, const gfxFontStyle *aFontStyle,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aNeedsBold);
|
2010-03-10 04:46:41 -08:00
|
|
|
|
|
|
|
virtual ~gfxMacFont();
|
|
|
|
|
2010-06-11 12:14:38 -07:00
|
|
|
CGFontRef GetCGFontRef() const { return mCGFont; }
|
2010-03-10 04:46:41 -08:00
|
|
|
|
|
|
|
/* overrides for the pure virtual methods in gfxFont */
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual uint32_t GetSpaceGlyph() {
|
2010-03-10 04:46:41 -08:00
|
|
|
return mSpaceGlyph;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool SetupCairoFont(gfxContext *aContext);
|
2010-03-10 04:46:41 -08:00
|
|
|
|
2011-06-22 01:49:57 -07:00
|
|
|
/* override Measure to add padding for antialiasing */
|
|
|
|
virtual RunMetrics Measure(gfxTextRun *aTextRun,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aStart, uint32_t aEnd,
|
2011-06-22 01:49:57 -07:00
|
|
|
BoundingBoxType aBoundingBoxType,
|
|
|
|
gfxContext *aContextForTightBoundingBox,
|
2014-10-16 01:40:19 -07:00
|
|
|
Spacing *aSpacing, uint16_t aOrientation);
|
2011-06-22 01:49:57 -07:00
|
|
|
|
2012-09-24 08:02:49 -07:00
|
|
|
virtual mozilla::TemporaryRef<mozilla::gfx::ScaledFont> GetScaledFont(mozilla::gfx::DrawTarget *aTarget);
|
2011-11-17 20:00:38 -08:00
|
|
|
|
2014-10-24 09:32:23 -07:00
|
|
|
virtual mozilla::TemporaryRef<mozilla::gfx::GlyphRenderingOptions>
|
|
|
|
GetGlyphRenderingOptions(const TextRunDrawParams* aRunParams = nullptr) MOZ_OVERRIDE;
|
|
|
|
|
2013-10-14 19:19:47 -07:00
|
|
|
virtual void AddSizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
|
|
|
FontCacheSizes* aSizes) const;
|
|
|
|
virtual void AddSizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
|
|
|
FontCacheSizes* aSizes) const;
|
2012-03-23 05:14:16 -07:00
|
|
|
|
2012-04-11 07:55:31 -07:00
|
|
|
virtual FontType GetType() const { return FONT_TYPE_MAC; }
|
|
|
|
|
2010-03-10 04:46:41 -08:00
|
|
|
protected:
|
2014-09-29 23:37:40 -07:00
|
|
|
virtual const Metrics& GetHorizontalMetrics() {
|
|
|
|
return mMetrics;
|
|
|
|
}
|
|
|
|
|
2011-01-07 04:38:28 -08:00
|
|
|
// override to prefer CoreText shaping with fonts that depend on AAT
|
2014-05-31 00:12:40 -07:00
|
|
|
virtual bool ShapeText(gfxContext *aContext,
|
2014-01-04 07:02:17 -08:00
|
|
|
const char16_t *aText,
|
2014-05-31 00:12:40 -07:00
|
|
|
uint32_t aOffset,
|
|
|
|
uint32_t aLength,
|
|
|
|
int32_t aScript,
|
2014-10-01 12:25:48 -07:00
|
|
|
bool aVertical,
|
2014-05-31 00:12:40 -07:00
|
|
|
gfxShapedText *aShapedText);
|
2011-01-07 04:38:28 -08:00
|
|
|
|
2010-03-10 04:46:41 -08:00
|
|
|
void InitMetrics();
|
2011-06-24 10:55:27 -07:00
|
|
|
void InitMetricsFromPlatform();
|
2010-03-10 04:46:41 -08:00
|
|
|
|
2010-10-07 00:59:16 -07: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 07:02:17 -08:00
|
|
|
gfxFloat GetCharWidth(CFDataRef aCmap, char16_t aUniChar,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t *aGlyphID, gfxFloat aConvFactor);
|
2010-06-11 12:14:38 -07:00
|
|
|
|
2011-06-24 10:55:27 -07: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 12:14:38 -07:00
|
|
|
CGFontRef mCGFont;
|
2010-03-10 04:46:41 -08:00
|
|
|
|
|
|
|
cairo_font_face_t *mFontFace;
|
|
|
|
|
2014-05-31 00:12:40 -07:00
|
|
|
nsAutoPtr<gfxFontShaper> mCoreTextShaper;
|
|
|
|
|
2010-03-10 04:46:41 -08:00
|
|
|
Metrics mMetrics;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mSpaceGlyph;
|
2010-03-10 04:46:41 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_MACFONT_H */
|