Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / ui / base / l10n / l10n_util_win.cc
blobefc43e2edd014ed5b7e44426951ede3c47daf559
1 // Copyright (c) 2011 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 #include "ui/base/l10n/l10n_util_win.h"
7 #include <windowsx.h>
8 #include <algorithm>
9 #include <iterator>
11 #include "base/i18n/rtl.h"
12 #include "base/lazy_instance.h"
13 #include "base/strings/string_number_conversions.h"
14 #include "base/strings/string_util.h"
15 #include "base/strings/utf_string_conversions.h"
16 #include "base/win/i18n.h"
17 #include "base/win/windows_version.h"
18 #include "ui/base/l10n/l10n_util.h"
19 #include "ui/gfx/display.h"
20 #include "ui/gfx/win/dpi.h"
21 #include "ui/strings/grit/app_locale_settings.h"
23 namespace {
25 void AdjustLogFont(const base::string16& font_family,
26 double font_size_scaler,
27 double dpi_scale,
28 LOGFONT* logfont) {
29 DCHECK(font_size_scaler > 0);
30 font_size_scaler = std::max(std::min(font_size_scaler, 2.0), 0.7);
31 // Font metrics are computed in pixels and scale in high-DPI mode.
32 // Normalized by the DPI scale factor in order to work in DIP with
33 // Views/Aura. Call with dpi_scale=1 to keep the size in pixels.
34 font_size_scaler /= dpi_scale;
35 logfont->lfHeight = static_cast<long>(font_size_scaler *
36 static_cast<double>(abs(logfont->lfHeight)) + 0.5) *
37 (logfont->lfHeight > 0 ? 1 : -1);
39 // TODO(jungshik): We may want to check the existence of the font.
40 // If it's not installed, we shouldn't adjust the font.
41 if (font_family != L"default") {
42 int name_len = std::min(static_cast<int>(font_family.size()),
43 LF_FACESIZE -1);
44 memcpy(logfont->lfFaceName, font_family.data(), name_len * sizeof(WORD));
45 logfont->lfFaceName[name_len] = 0;
49 bool IsFontPresent(const wchar_t* font_name) {
50 HFONT hfont = CreateFont(12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
51 font_name);
52 if (hfont == NULL)
53 return false;
54 HDC dc = GetDC(0);
55 HGDIOBJ oldFont = static_cast<HFONT>(SelectObject(dc, hfont));
56 WCHAR actual_font_name[LF_FACESIZE];
57 int size_ret = GetTextFace(dc, LF_FACESIZE, actual_font_name);
58 SelectObject(dc, oldFont);
59 DeleteObject(hfont);
60 ReleaseDC(0, dc);
61 // We don't have to worry about East Asian fonts with locale-dependent
62 // names here.
63 return (size_ret != 0) && wcscmp(font_name, actual_font_name) == 0;
66 class OverrideLocaleHolder {
67 public:
68 OverrideLocaleHolder() {}
69 const std::vector<std::string>& value() const { return value_; }
70 void swap_value(std::vector<std::string>* override_value) {
71 value_.swap(*override_value);
73 private:
74 std::vector<std::string> value_;
75 DISALLOW_COPY_AND_ASSIGN(OverrideLocaleHolder);
78 base::LazyInstance<OverrideLocaleHolder> override_locale_holder =
79 LAZY_INSTANCE_INITIALIZER;
81 } // namespace
83 namespace l10n_util {
85 int GetExtendedStyles() {
86 return !base::i18n::IsRTL() ? 0 : WS_EX_LAYOUTRTL | WS_EX_RTLREADING;
89 int GetExtendedTooltipStyles() {
90 return !base::i18n::IsRTL() ? 0 : WS_EX_LAYOUTRTL;
93 void HWNDSetRTLLayout(HWND hwnd) {
94 DWORD ex_style = ::GetWindowLong(hwnd, GWL_EXSTYLE);
96 // We don't have to do anything if the style is already set for the HWND.
97 if (!(ex_style & WS_EX_LAYOUTRTL)) {
98 ex_style |= WS_EX_LAYOUTRTL;
99 ::SetWindowLong(hwnd, GWL_EXSTYLE, ex_style);
101 // Right-to-left layout changes are not applied to the window immediately
102 // so we should make sure a WM_PAINT is sent to the window by invalidating
103 // the entire window rect.
104 ::InvalidateRect(hwnd, NULL, true);
108 bool IsLocaleSupportedByOS(const std::string& locale) {
109 // Block Amharic on Windows XP unless 'Abyssinica SIL' font is present.
110 // On Win XP, no Ethiopic/Amahric font is availabel out of box. We hard-coded
111 // 'Abyssinica SIL' in the resource bundle to use in the UI. Check
112 // for its presence to determine whether or not to support Amharic UI on XP.
113 return (base::win::GetVersion() >= base::win::VERSION_VISTA ||
114 !base::LowerCaseEqualsASCII(locale, "am") ||
115 IsFontPresent(L"Abyssinica SIL"));
118 bool NeedOverrideDefaultUIFont(base::string16* override_font_family,
119 double* font_size_scaler) {
120 // This is rather simple-minded to deal with the UI font size
121 // issue for some Indian locales (ml, bn, hi) for which
122 // the default Windows fonts are too small to be legible. For those
123 // locales, IDS_UI_FONT_FAMILY is set to an actual font family to
124 // use while for other locales, it's set to 'default'.
126 // XP and Vista or later have different font size issues and
127 // we need separate ui font specifications.
128 int ui_font_family_id = IDS_UI_FONT_FAMILY;
129 int ui_font_size_scaler_id = IDS_UI_FONT_SIZE_SCALER;
130 if (base::win::GetVersion() < base::win::VERSION_VISTA) {
131 ui_font_family_id = IDS_UI_FONT_FAMILY_XP;
132 ui_font_size_scaler_id = IDS_UI_FONT_SIZE_SCALER_XP;
135 base::string16 ui_font_family = GetStringUTF16(ui_font_family_id);
136 int scaler100;
137 if (!base::StringToInt(l10n_util::GetStringUTF16(ui_font_size_scaler_id),
138 &scaler100))
139 return false;
141 // We use the OS default in two cases:
142 // 1) The resource bundle has 'default' and '100' for font family and
143 // font scaler.
144 // 2) The resource bundle is not available for some reason and
145 // ui_font_family is empty.
146 if ((ui_font_family == L"default" && scaler100 == 100) ||
147 ui_font_family.empty())
148 return false;
149 if (override_font_family && font_size_scaler) {
150 override_font_family->swap(ui_font_family);
151 *font_size_scaler = scaler100 / 100.0;
153 return true;
156 void AdjustUIFont(LOGFONT* logfont) {
157 float dpi_scale = gfx::GetDPIScale();
158 if (gfx::Display::HasForceDeviceScaleFactor()) {
159 // If the scale is forced, we don't need to adjust it here.
160 dpi_scale = 1.0f;
162 AdjustUIFontForDIP(dpi_scale, logfont);
165 void AdjustUIFontForDIP(float dpi_scale, LOGFONT* logfont) {
166 base::string16 ui_font_family = L"default";
167 double ui_font_size_scaler = 1;
168 if (NeedOverrideDefaultUIFont(&ui_font_family, &ui_font_size_scaler) ||
169 dpi_scale != 1) {
170 AdjustLogFont(ui_font_family, ui_font_size_scaler, dpi_scale, logfont);
174 void AdjustUIFontForWindow(HWND hwnd) {
175 base::string16 ui_font_family;
176 double ui_font_size_scaler;
177 if (NeedOverrideDefaultUIFont(&ui_font_family, &ui_font_size_scaler)) {
178 LOGFONT logfont;
179 if (GetObject(GetWindowFont(hwnd), sizeof(logfont), &logfont)) {
180 double dpi_scale = 1;
181 AdjustLogFont(ui_font_family, ui_font_size_scaler, dpi_scale, &logfont);
182 HFONT hfont = CreateFontIndirect(&logfont);
183 if (hfont)
184 SetWindowFont(hwnd, hfont, FALSE);
189 void OverrideLocaleWithUILanguageList() {
190 std::vector<base::string16> ui_languages;
191 if (base::win::i18n::GetThreadPreferredUILanguageList(&ui_languages)) {
192 std::vector<std::string> ascii_languages;
193 ascii_languages.reserve(ui_languages.size());
194 std::transform(ui_languages.begin(), ui_languages.end(),
195 std::back_inserter(ascii_languages), &base::UTF16ToASCII);
196 override_locale_holder.Get().swap_value(&ascii_languages);
197 } else {
198 NOTREACHED() << "Failed to determine the UI language for locale override.";
202 const std::vector<std::string>& GetLocaleOverrides() {
203 return override_locale_holder.Get().value();
206 } // namespace l10n_util