1 // Copyright 2013 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 "chrome/browser/ui/views/location_bar/translate_icon_view.h"
7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/app/chrome_command_ids.h"
9 #include "chrome/browser/ui/browser_commands.h"
10 #include "chrome/browser/ui/view_ids.h"
11 #include "chrome/browser/ui/views/translate/translate_bubble_view.h"
12 #include "chrome/grit/generated_resources.h"
13 #include "grit/theme_resources.h"
14 #include "ui/base/l10n/l10n_util.h"
15 #include "ui/base/resource/resource_bundle.h"
16 #include "ui/gfx/paint_vector_icon.h"
17 #include "ui/gfx/vector_icons_public.h"
18 #include "ui/native_theme/common_theme.h"
19 #include "ui/native_theme/native_theme.h"
21 TranslateIconView::TranslateIconView(CommandUpdater
* command_updater
)
22 : BubbleIconView(command_updater
, IDC_TRANSLATE_PAGE
) {
23 set_id(VIEW_ID_TRANSLATE_BUTTON
);
24 SetTooltipText(l10n_util::GetStringUTF16(IDS_TOOLTIP_TRANSLATE
));
28 TranslateIconView::~TranslateIconView() {
31 void TranslateIconView::SetToggled(bool on
) {
33 CHECK(ui::CommonThemeGetSystemColor(
34 on
? ui::NativeTheme::kColorId_GoogleBlue
35 : ui::NativeTheme::kColorId_ChromeIconGrey
,
37 SetImage(gfx::CreateVectorIcon(gfx::VectorIconId::TRANSLATE
, 16, color
));
40 void TranslateIconView::OnExecuting(
41 BubbleIconView::ExecuteSource execute_source
) {
44 views::BubbleDelegateView
* TranslateIconView::GetBubble() const {
45 return TranslateBubbleView::GetCurrentBubble();