1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_GFX_FONT_RENDER_PARAMS_H_
6 #define UI_GFX_FONT_RENDER_PARAMS_H_
11 #include "third_party/skia/include/core/SkFontHost.h"
12 #include "ui/gfx/gfx_export.h"
16 // A collection of parameters describing how text should be rendered on Linux.
17 struct GFX_EXPORT FontRenderParams
{
21 // Level of hinting to be applied.
29 // Different subpixel orders to be used for subpixel rendering.
30 enum SubpixelRendering
{
31 SUBPIXEL_RENDERING_NONE
= 0,
32 SUBPIXEL_RENDERING_RGB
,
33 SUBPIXEL_RENDERING_BGR
,
34 SUBPIXEL_RENDERING_VRGB
,
35 SUBPIXEL_RENDERING_VBGR
,
38 // Antialiasing (grayscale if |subpixel_rendering| is SUBPIXEL_RENDERING_NONE
39 // and RGBA otherwise).
42 // Should subpixel positioning (i.e. fractional X positions for glyphs) be
44 // TODO(derat): Remove this; we don't set it in the browser and mostly ignore
45 // it in Blink: http://crbug.com/396659
46 bool subpixel_positioning
;
48 // Should FreeType's autohinter be used (as opposed to Freetype's bytecode
49 // interpreter, which uses fonts' own hinting instructions)?
52 // Should embedded bitmaps in fonts should be used?
58 // Whether subpixel rendering should be used or not, and if so, the display's
60 SubpixelRendering subpixel_rendering
;
62 static SkFontHost::LCDOrder
SubpixelRenderingToSkiaLCDOrder(
63 SubpixelRendering subpixel_rendering
);
64 static SkFontHost::LCDOrientation
SubpixelRenderingToSkiaLCDOrientation(
65 SubpixelRendering subpixel_rendering
);
68 // A query used to determine the appropriate FontRenderParams.
69 struct GFX_EXPORT FontRenderParamsQuery
{
70 FontRenderParamsQuery();
71 ~FontRenderParamsQuery();
73 bool is_empty() const {
74 return families
.empty() && pixel_size
<= 0 && point_size
<= 0 && style
< 0;
77 // Requested font families, or empty if unset.
78 std::vector
<std::string
> families
;
80 // Font size in pixels or points, or 0 if unset.
84 // gfx::Font::FontStyle bit field, or -1 if unset.
87 // The device scale factor of the display, or 0 if unset.
88 float device_scale_factor
;
91 // Returns the appropriate parameters for rendering the font described by
92 // |query|. If |family_out| is non-NULL, it will be updated to contain the
93 // recommended font family from |query.families|.
94 GFX_EXPORT FontRenderParams
GetFontRenderParams(
95 const FontRenderParamsQuery
& query
,
96 std::string
* family_out
);
98 // Clears GetFontRenderParams()'s cache. Intended to be called by tests that are
99 // changing Fontconfig's configuration.
100 // TODO(derat): This is only defined for Linux, but OS_LINUX doesn't seem to be
101 // set when font_render_params_linux_unittest.cc includes this header. Figure
102 // out what's going on here.
103 GFX_EXPORT
void ClearFontRenderParamsCacheForTest();
105 #if defined(OS_CHROMEOS)
106 // Gets the device scale factor to query the FontRenderParams.
107 float GetFontRenderParamsDeviceScaleFactor();
109 // Sets the device scale factor for FontRenderParams to decide
110 // if it should enable subpixel positioning.
111 GFX_EXPORT
void SetFontRenderParamsDeviceScaleFactor(
112 float device_scale_factor
);
117 #endif // UI_GFX_FONT_RENDER_PARAMS_H_