2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
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/. */
|
2007-03-27 07:24:49 +04:00
|
|
|
|
|
|
|
#ifndef GFX_FONTMISSINGGLYPHS_H
|
|
|
|
#define GFX_FONTMISSINGGLYPHS_H
|
|
|
|
|
2014-10-28 17:40:42 +03:00
|
|
|
#include "mozilla/Attributes.h"
|
2018-08-01 20:02:18 +03:00
|
|
|
#include "mozilla/gfx/MatrixFwd.h"
|
2014-10-28 17:40:42 +03:00
|
|
|
#include "mozilla/gfx/Rect.h"
|
2007-03-27 07:24:49 +04:00
|
|
|
|
2014-10-28 17:40:42 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
class DrawTarget;
|
|
|
|
class Pattern;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
2013-10-08 03:15:59 +04:00
|
|
|
|
2007-03-27 07:24:49 +04:00
|
|
|
/**
|
|
|
|
* This class should not be instantiated. It's just a container
|
|
|
|
* for some helper functions.
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
class gfxFontMissingGlyphs final {
|
2014-10-28 17:40:42 +03:00
|
|
|
typedef mozilla::gfx::DrawTarget DrawTarget;
|
|
|
|
typedef mozilla::gfx::Float Float;
|
2018-08-01 20:02:18 +03:00
|
|
|
typedef mozilla::gfx::Matrix Matrix;
|
2014-10-28 17:40:42 +03:00
|
|
|
typedef mozilla::gfx::Pattern Pattern;
|
|
|
|
typedef mozilla::gfx::Rect Rect;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-01-07 02:35:02 +03:00
|
|
|
gfxFontMissingGlyphs() = delete; // prevent instantiation
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2007-03-27 07:24:49 +04:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Draw hexboxes for a missing glyph.
|
|
|
|
* @param aChar the UTF16 codepoint for the character
|
2014-10-28 17:40:42 +03:00
|
|
|
* @param aRect the glyph-box for the glyph that is missing
|
|
|
|
* @param aDrawTarget the DrawTarget to draw to
|
|
|
|
* @param aPattern the pattern currently being used to paint
|
2013-02-07 04:19:46 +04:00
|
|
|
* @param aAppUnitsPerDevPixel the appUnits to devPixel ratio we're using,
|
|
|
|
* (so we can scale glyphs to a sensible size)
|
2018-01-19 00:10:14 +03:00
|
|
|
* @param aMat optional local-space orientation matrix
|
2007-03-27 07:24:49 +04:00
|
|
|
*/
|
2014-10-28 17:40:42 +03:00
|
|
|
static void DrawMissingGlyph(uint32_t aChar, const Rect& aRect,
|
|
|
|
DrawTarget& aDrawTarget, const Pattern& aPattern,
|
2018-01-19 00:10:14 +03:00
|
|
|
uint32_t aAppUnitsPerDevPixel,
|
|
|
|
const Matrix* aMat = nullptr);
|
2007-03-27 07:24:49 +04:00
|
|
|
/**
|
|
|
|
* @return the desired minimum width for a glyph-box that will allow
|
|
|
|
* the hexboxes to be drawn reasonably.
|
|
|
|
*/
|
2014-10-28 17:40:42 +03:00
|
|
|
static Float GetDesiredMinWidth(uint32_t aChar, uint32_t aAppUnitsPerDevUnit);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-08-21 19:40:36 +03:00
|
|
|
static void Purge();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-08-21 19:40:36 +03:00
|
|
|
static void Shutdown();
|
2007-03-27 07:24:49 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|