1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/gfx/font_render_params_linux.h"
#include "base/logging.h"
#if defined(TOOLKIT_GTK)
#include <gtk/gtk.h>
#else
#include <fontconfig/fontconfig.h>
#include "base/command_line.h"
#include "ui/base/ui_base_switches.h"
#endif
namespace gfx {
namespace {
// Initializes |params| with the system's default settings.
void LoadDefaults(FontRenderParams* params) {
#if defined(TOOLKIT_GTK)
params->antialiasing = true;
params->subpixel_positioning = false;
params->autohinter = false;
params->hinting = FontRenderParams::HINTING_SLIGHT;
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_NONE;
GtkSettings* gtk_settings = gtk_settings_get_default();
CHECK(gtk_settings);
gint gtk_antialias = 0;
gint gtk_hinting = 0;
gchar* gtk_hint_style = NULL;
gchar* gtk_rgba = NULL;
g_object_get(gtk_settings,
"gtk-xft-antialias", >k_antialias,
"gtk-xft-hinting", >k_hinting,
"gtk-xft-hintstyle", >k_hint_style,
"gtk-xft-rgba", >k_rgba,
NULL);
// g_object_get() doesn't tell us whether the properties were present or not,
// but if they aren't (because gnome-settings-daemon isn't running), we'll get
// NULL values for the strings.
if (gtk_hint_style && gtk_rgba) {
params->antialiasing = gtk_antialias;
if (gtk_hinting == 0 || strcmp(gtk_hint_style, "hintnone") == 0)
params->hinting = FontRenderParams::HINTING_NONE;
else if (strcmp(gtk_hint_style, "hintslight") == 0)
params->hinting = FontRenderParams::HINTING_SLIGHT;
else if (strcmp(gtk_hint_style, "hintmedium") == 0)
params->hinting = FontRenderParams::HINTING_MEDIUM;
else if (strcmp(gtk_hint_style, "hintfull") == 0)
params->hinting = FontRenderParams::HINTING_FULL;
if (strcmp(gtk_rgba, "none") == 0)
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_NONE;
else if (strcmp(gtk_rgba, "rgb") == 0)
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_RGB;
else if (strcmp(gtk_rgba, "bgr") == 0)
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_BGR;
else if (strcmp(gtk_rgba, "vrgb") == 0)
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_VRGB;
else if (strcmp(gtk_rgba, "vbgr") == 0)
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_VBGR;
}
g_free(gtk_hint_style);
g_free(gtk_rgba);
#else
// For non-GTK builds (read: Aura), just use reasonable hardcoded values.
params->antialiasing = true;
params->autohinter = true;
// Fetch default subpixel rendering settings from FontConfig.
FcPattern* pattern = FcPatternCreate();
FcResult result;
FcPattern* match = FcFontMatch(0, pattern, &result);
DCHECK(match);
int fc_rgba = FC_RGBA_RGB;
FcPatternGetInteger(match, FC_RGBA, 0, &fc_rgba);
FcPatternDestroy(pattern);
FcPatternDestroy(match);
switch (fc_rgba) {
case FC_RGBA_RGB:
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_RGB;
break;
case FC_RGBA_BGR:
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_BGR;
break;
case FC_RGBA_VRGB:
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_VRGB;
break;
case FC_RGBA_VBGR:
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_VBGR;
break;
default:
params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_NONE;
}
if (CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableTextSubpixelPositioning)) {
// To enable subpixel positioning, we need to disable hinting.
params->subpixel_positioning = true;
params->hinting = FontRenderParams::HINTING_NONE;
} else {
params->subpixel_positioning = false;
params->hinting = FontRenderParams::HINTING_SLIGHT;
}
#endif
}
} // namespace
const FontRenderParams& GetDefaultFontRenderParams() {
static bool loaded_defaults = false;
static FontRenderParams default_params;
if (!loaded_defaults)
LoadDefaults(&default_params);
return default_params;
}
} // namespace gfx
|