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 2012 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/ui/views/page_action/zoom_view.h"
#include "base/i18n/number_formatting.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/ui/view_ids.h"
#include "chrome/browser/ui/views/location_bar/zoom_bubble_view.h"
#include "chrome/grit/generated_resources.h"
#include "components/omnibox/browser/location_bar_model.h"
#include "components/zoom/zoom_controller.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/events/event.h"
#include "ui/gfx/geometry/size.h"
#include "ui/views/accessibility/view_accessibility.h"
ZoomView::ZoomView(IconLabelBubbleView::Delegate* icon_label_bubble_delegate,
PageActionIconView::Delegate* page_action_icon_delegate)
: PageActionIconView(nullptr,
0,
icon_label_bubble_delegate,
page_action_icon_delegate,
"Zoom"),
icon_(&kZoomMinusIcon) {
SetVisible(false);
GetViewAccessibility().SetName(l10n_util::GetStringFUTF16(
IDS_TOOLTIP_ZOOM, base::FormatPercent(current_zoom_percent_)));
}
ZoomView::~ZoomView() = default;
void ZoomView::UpdateImpl() {
ZoomChangedForActiveTab(false);
}
bool ZoomView::ShouldBeVisible(bool can_show_bubble) const {
if (delegate()->ShouldHidePageActionIcons()) {
return false;
}
if (can_show_bubble) {
return true;
}
if (HasAssociatedBubble()) {
return true;
}
DCHECK(GetWebContents());
zoom::ZoomController* zoom_controller =
zoom::ZoomController::FromWebContents(GetWebContents());
return zoom_controller && !zoom_controller->IsAtDefaultZoom();
}
bool ZoomView::HasAssociatedBubble() const {
if (!GetBubble()) {
return false;
}
// Bubbles may be hosted in their own widget so use their anchor view as a
// more reliable way of determining whether this icon belongs to the same
// browser window.
if (!GetBubble()->GetAnchorView()) {
return false;
}
return GetBubble()->GetAnchorView()->GetWidget() == GetWidget();
}
void ZoomView::ZoomChangedForActiveTab(bool can_show_bubble) {
content::WebContents* web_contents = GetWebContents();
if (!web_contents) {
return;
}
if (ShouldBeVisible(can_show_bubble)) {
zoom::ZoomController* zoom_controller =
zoom::ZoomController::FromWebContents(web_contents);
current_zoom_percent_ = zoom_controller->GetZoomPercent();
GetViewAccessibility().SetName(l10n_util::GetStringFUTF16(
IDS_TOOLTIP_ZOOM, base::FormatPercent(current_zoom_percent_)));
// The icon is hidden when the zoom level is default.
icon_ = zoom_controller && zoom_controller->GetZoomRelativeToDefault() ==
zoom::ZoomController::ZOOM_BELOW_DEFAULT_ZOOM
? &kZoomMinusChromeRefreshIcon
: &kZoomPlusChromeRefreshIcon;
UpdateIconImage();
// Visibility must be enabled before the bubble is shown to ensure the
// bubble anchors correctly.
SetVisible(true);
if (can_show_bubble) {
ZoomBubbleView::ShowBubble(web_contents, ZoomBubbleView::AUTOMATIC);
} else {
ZoomBubbleView::RefreshBubbleIfShowing(web_contents);
}
} else {
// Close the bubble first to ensure focus is not lost when SetVisible(false)
// is called. See crbug.com/913829.
if (HasAssociatedBubble()) {
ZoomBubbleView::CloseCurrentBubble();
}
SetVisible(false);
}
}
void ZoomView::OnExecuting(PageActionIconView::ExecuteSource source) {
ZoomBubbleView::ShowBubble(GetWebContents(), ZoomBubbleView::USER_GESTURE);
}
views::BubbleDialogDelegate* ZoomView::GetBubble() const {
return ZoomBubbleView::GetZoomBubble();
}
const gfx::VectorIcon& ZoomView::GetVectorIcon() const {
return *icon_;
}
BEGIN_METADATA(ZoomView)
END_METADATA
|