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_font_util.h"
7 #include "base/logging.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "ui/base/l10n/l10n_util.h"
10 #include "ui/gfx/font.h"
14 int GetLocalizedContentsWidthForFont(int col_resource_id
,
15 const gfx::Font
& font
) {
17 base::StringToInt(l10n_util::GetStringUTF8(col_resource_id
), &chars
);
18 int width
= font
.GetExpectedTextWidth(chars
);
23 int GetLocalizedContentsHeightForFont(int row_resource_id
,
24 const gfx::Font
& font
) {
26 base::StringToInt(l10n_util::GetStringUTF8(row_resource_id
), &lines
);
27 int height
= font
.GetHeight() * lines
;
32 gfx::Size
GetLocalizedContentsSizeForFont(int col_resource_id
,
34 const gfx::Font
& font
) {
35 return gfx::Size(GetLocalizedContentsWidthForFont(col_resource_id
, font
),
36 GetLocalizedContentsHeightForFont(row_resource_id
, font
));