2011-12-09 22:32:29 +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/. */
|
2011-12-09 22:32:29 +00:00
|
|
|
|
|
|
|
#ifndef GFX_GRAPHITESHAPER_H
|
|
|
|
#define GFX_GRAPHITESHAPER_H
|
|
|
|
|
|
|
|
#include "gfxFont.h"
|
|
|
|
|
2012-01-26 11:20:57 +00:00
|
|
|
struct gr_face;
|
|
|
|
struct gr_font;
|
|
|
|
struct gr_segment;
|
2011-12-09 22:32:29 +00:00
|
|
|
|
|
|
|
class gfxGraphiteShaper : public gfxFontShaper {
|
|
|
|
public:
|
|
|
|
gfxGraphiteShaper(gfxFont *aFont);
|
|
|
|
virtual ~gfxGraphiteShaper();
|
|
|
|
|
2013-01-04 18:35:37 +00:00
|
|
|
virtual bool ShapeText(gfxContext *aContext,
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t *aText,
|
2013-01-04 18:35:37 +00:00
|
|
|
uint32_t aOffset,
|
|
|
|
uint32_t aLength,
|
|
|
|
int32_t aScript,
|
|
|
|
gfxShapedText *aShapedText);
|
2011-12-09 22:32:29 +00:00
|
|
|
|
|
|
|
static void Shutdown();
|
|
|
|
|
|
|
|
protected:
|
2013-01-21 09:24:08 +00:00
|
|
|
nsresult SetGlyphsFromSegment(gfxContext *aContext,
|
|
|
|
gfxShapedText *aShapedText,
|
2013-01-04 18:35:37 +00:00
|
|
|
uint32_t aOffset,
|
|
|
|
uint32_t aLength,
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t *aText,
|
2013-01-04 18:35:37 +00:00
|
|
|
gr_segment *aSegment);
|
2011-12-09 22:32:29 +00:00
|
|
|
|
2013-05-16 16:29:20 +00:00
|
|
|
static float GrGetAdvance(const void* appFontHandle, uint16_t glyphid);
|
2011-12-09 22:32:29 +00:00
|
|
|
|
2013-05-16 16:29:20 +00:00
|
|
|
gr_face *mGrFace; // owned by the font entry; shaper must call
|
|
|
|
// gfxFontEntry::ReleaseGrFace when finished with it
|
|
|
|
gr_font *mGrFont; // owned by the shaper itself
|
|
|
|
|
|
|
|
struct CallbackData {
|
|
|
|
gfxFont *mFont;
|
|
|
|
gfxGraphiteShaper *mShaper;
|
|
|
|
gfxContext *mContext;
|
|
|
|
};
|
2011-12-09 22:32:29 +00:00
|
|
|
|
2013-05-16 16:29:20 +00:00
|
|
|
CallbackData mCallbackData;
|
2014-06-23 03:09:16 +00:00
|
|
|
bool mFallbackToSmallCaps; // special fallback for the petite-caps case
|
2011-12-09 22:32:29 +00:00
|
|
|
|
|
|
|
// Convert HTML 'lang' (BCP47) to Graphite language code
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint32_t GetGraphiteTagForLang(const nsCString& aLang);
|
2013-09-02 08:41:57 +00:00
|
|
|
static nsTHashtable<nsUint32HashKey> *sLanguageTags;
|
2011-12-09 22:32:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_GRAPHITESHAPER_H */
|