2011-12-10 02:32:29 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 15:12:37 +04: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-10 02:32:29 +04:00
|
|
|
|
|
|
|
#ifndef GFX_GRAPHITESHAPER_H
|
|
|
|
#define GFX_GRAPHITESHAPER_H
|
|
|
|
|
|
|
|
#include "gfxFont.h"
|
|
|
|
|
2015-12-07 01:13:19 +03:00
|
|
|
#include "mozilla/gfx/2D.h"
|
|
|
|
|
2012-01-26 15:20:57 +04:00
|
|
|
struct gr_face;
|
|
|
|
struct gr_font;
|
|
|
|
struct gr_segment;
|
2011-12-10 02:32:29 +04:00
|
|
|
|
|
|
|
class gfxGraphiteShaper : public gfxFontShaper {
|
|
|
|
public:
|
2014-08-08 05:17:30 +04:00
|
|
|
explicit gfxGraphiteShaper(gfxFont *aFont);
|
2011-12-10 02:32:29 +04:00
|
|
|
virtual ~gfxGraphiteShaper();
|
|
|
|
|
2017-04-03 19:49:17 +03:00
|
|
|
bool ShapeText(DrawTarget *aDrawTarget,
|
|
|
|
const char16_t *aText,
|
|
|
|
uint32_t aOffset,
|
|
|
|
uint32_t aLength,
|
|
|
|
Script aScript,
|
|
|
|
bool aVertical,
|
|
|
|
RoundingFlags aRounding,
|
|
|
|
gfxShapedText *aShapedText) override;
|
2011-12-10 02:32:29 +04:00
|
|
|
|
|
|
|
static void Shutdown();
|
|
|
|
|
|
|
|
protected:
|
2017-04-03 19:49:17 +03:00
|
|
|
nsresult SetGlyphsFromSegment(gfxShapedText *aShapedText,
|
2013-01-04 22:35:37 +04:00
|
|
|
uint32_t aOffset,
|
|
|
|
uint32_t aLength,
|
2014-01-04 19:02:17 +04:00
|
|
|
const char16_t *aText,
|
2017-04-03 19:49:17 +03:00
|
|
|
gr_segment *aSegment,
|
|
|
|
RoundingFlags aRounding);
|
2011-12-10 02:32:29 +04:00
|
|
|
|
2013-05-16 20:29:20 +04:00
|
|
|
static float GrGetAdvance(const void* appFontHandle, uint16_t glyphid);
|
2011-12-10 02:32:29 +04:00
|
|
|
|
2013-05-16 20:29:20 +04: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 {
|
2015-12-07 01:13:19 +03:00
|
|
|
gfxFont* mFont;
|
|
|
|
mozilla::gfx::DrawTarget* mDrawTarget;
|
2013-05-16 20:29:20 +04:00
|
|
|
};
|
2011-12-10 02:32:29 +04:00
|
|
|
|
2013-05-16 20:29:20 +04:00
|
|
|
CallbackData mCallbackData;
|
2014-06-23 07:09:16 +04:00
|
|
|
bool mFallbackToSmallCaps; // special fallback for the petite-caps case
|
2011-12-10 02:32:29 +04:00
|
|
|
|
|
|
|
// Convert HTML 'lang' (BCP47) to Graphite language code
|
2012-08-22 19:56:38 +04:00
|
|
|
static uint32_t GetGraphiteTagForLang(const nsCString& aLang);
|
2013-09-02 12:41:57 +04:00
|
|
|
static nsTHashtable<nsUint32HashKey> *sLanguageTags;
|
2011-12-10 02:32:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_GRAPHITESHAPER_H */
|