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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/shortcuts/shortcut_icon_generator.h"
#include <string>
#include "base/i18n/case_conversion.h"
#include "base/strings/utf_string_conversion_utils.h"
#include "build/build_config.h"
#include "cc/paint/paint_flags.h"
#include "chrome/grit/platform_locale_settings.h"
#include "components/url_formatter/url_formatter.h"
#include "net/base/registry_controlled_domains/registry_controlled_domain.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/font.h"
#include "ui/gfx/font_list.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/image/canvas_image_source.h"
namespace shortcuts {
namespace {
// Generates a square container icon of |output_size| by drawing the given
// |icon_letter| into a rounded background of |color|.
class GeneratedIconImageSource : public gfx::CanvasImageSource {
public:
explicit GeneratedIconImageSource(char32_t icon_letter,
SquareSizePx output_size)
: gfx::CanvasImageSource(gfx::Size(output_size, output_size)),
icon_letter_(icon_letter),
output_size_(output_size) {}
GeneratedIconImageSource(const GeneratedIconImageSource&) = delete;
GeneratedIconImageSource& operator=(const GeneratedIconImageSource&) = delete;
~GeneratedIconImageSource() override = default;
private:
// gfx::CanvasImageSource overrides:
void Draw(gfx::Canvas* canvas) override {
SquareSizePx icon_size = output_size_ * 3 / 4;
int icon_inset = output_size_ / 8;
const size_t border_radius = output_size_ / 16;
const size_t font_size = output_size_ * 7 / 16;
std::string font_name =
l10n_util::GetStringUTF8(IDS_SANS_SERIF_FONT_FAMILY);
#if BUILDFLAG(IS_CHROMEOS)
// With adaptive icons, we generate full size square icons as they will be
// masked by the OS.
icon_size = output_size_;
icon_inset = 0;
const std::string kChromeOSFontFamily = "Noto Sans";
font_name = kChromeOSFontFamily;
#endif
// Use a dark gray so it will stand out on the black shelf.
constexpr SkColor color = SK_ColorDKGRAY;
// Draw a rounded rect of the given |color|.
cc::PaintFlags background_flags;
background_flags.setAntiAlias(true);
background_flags.setColor(color);
gfx::Rect icon_rect(icon_inset, icon_inset, icon_size, icon_size);
canvas->DrawRoundRect(icon_rect, border_radius, background_flags);
// The text rect's size needs to be odd to center the text correctly.
gfx::Rect text_rect(icon_inset, icon_inset, icon_size + 1, icon_size + 1);
canvas->DrawStringRectWithFlags(
IconLetterToString(icon_letter_),
gfx::FontList(gfx::Font(font_name, font_size)),
color_utils::GetColorWithMaxContrast(color), text_rect,
gfx::Canvas::TEXT_ALIGN_CENTER);
}
char32_t icon_letter_;
int output_size_;
};
// Gets the first code point of a string.
char32_t FirstCodepoint(const std::u16string& str) {
DCHECK(!str.empty());
size_t index = 0;
base_icu::UChar32 cp;
if (!base::ReadUnicodeCharacter(str.data(), str.size(), &index, &cp)) {
// U+FFFD REPLACEMENT CHARACTER
return 0xfffd;
}
return cp;
}
} // namespace
SkBitmap GenerateBitmap(SquareSizePx output_size, char32_t icon_letter) {
gfx::ImageSkia icon_image(
std::make_unique<GeneratedIconImageSource>(icon_letter, output_size),
gfx::Size(output_size, output_size));
SkBitmap dst;
if (dst.tryAllocPixels(icon_image.bitmap()->info())) {
icon_image.bitmap()->readPixels(dst.info(), dst.getPixels(), dst.rowBytes(),
0, 0);
}
return dst;
}
char32_t GenerateIconLetterFromUrl(const GURL& app_url) {
std::string app_url_part = " ";
const std::string domain_and_registry =
net::registry_controlled_domains::GetDomainAndRegistry(
app_url,
net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES);
if (!domain_and_registry.empty()) {
app_url_part = domain_and_registry;
} else if (app_url.has_host()) {
app_url_part = app_url.host();
}
// Translate punycode into unicode before retrieving the first letter.
const std::u16string string_for_display =
url_formatter::IDNToUnicode(app_url_part);
return FirstCodepoint(base::i18n::ToUpper(string_for_display));
}
char32_t GenerateIconLetterFromName(const std::u16string& app_name) {
CHECK(!app_name.empty());
return FirstCodepoint(base::i18n::ToUpper(app_name));
}
std::u16string IconLetterToString(char32_t cp) {
std::u16string str;
base::WriteUnicodeCharacter(cp, &str);
return str;
}
} // namespace shortcuts
|