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
|
// 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/ui/views/overlay/resize_handle_button.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/ui/color/chrome_color_id.h"
#include "chrome/grit/generated_resources.h"
#include "ui/base/hit_test.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/base/models/image_model.h"
#include "ui/gfx/image/image_skia_operations.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/gfx/skbitmap_operations.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/vector_icons.h"
namespace {
constexpr int kResizeHandleButtonMargin = 4;
constexpr int kResizeHandleButtonSize = 16;
} // namespace
ResizeHandleButton::ResizeHandleButton(PressedCallback callback)
: views::ImageButton(std::move(callback)) {
SetSize(gfx::Size(kResizeHandleButtonSize, kResizeHandleButtonSize));
// The ResizeHandleButton has no action and is just for display to hint to the
// user that the window can be dragged. It should not be focusable.
SetFocusBehavior(FocusBehavior::NEVER);
// Accessibility.
const std::u16string resize_button_label(
l10n_util::GetStringUTF16(IDS_PICTURE_IN_PICTURE_RESIZE_HANDLE_TEXT));
GetViewAccessibility().SetName(resize_button_label);
SetTooltipText(resize_button_label);
}
ResizeHandleButton::~ResizeHandleButton() = default;
void ResizeHandleButton::OnThemeChanged() {
views::ImageButton::OnThemeChanged();
UpdateImageForQuadrant();
}
int ResizeHandleButton::GetHTComponent() const {
switch (current_quadrant_) {
case VideoOverlayWindowViews::WindowQuadrant::kBottomLeft:
return HTTOPRIGHT;
case VideoOverlayWindowViews::WindowQuadrant::kBottomRight:
return HTTOPLEFT;
case VideoOverlayWindowViews::WindowQuadrant::kTopLeft:
return HTBOTTOMRIGHT;
case VideoOverlayWindowViews::WindowQuadrant::kTopRight:
return HTBOTTOMLEFT;
}
}
void ResizeHandleButton::SetPosition(
const gfx::Size& size,
VideoOverlayWindowViews::WindowQuadrant quadrant) {
// The resize handle should appear towards the center of the working area.
// This is determined as the opposite quadrant on the window.
switch (quadrant) {
case VideoOverlayWindowViews::WindowQuadrant::kBottomLeft:
views::ImageButton::SetPosition(gfx::Point(
size.width() - kResizeHandleButtonSize - kResizeHandleButtonMargin,
kResizeHandleButtonMargin));
break;
case VideoOverlayWindowViews::WindowQuadrant::kBottomRight:
views::ImageButton::SetPosition(
gfx::Point(kResizeHandleButtonMargin, kResizeHandleButtonMargin));
break;
case VideoOverlayWindowViews::WindowQuadrant::kTopLeft:
views::ImageButton::SetPosition(gfx::Point(
size.width() - kResizeHandleButtonSize - kResizeHandleButtonMargin,
size.height() - kResizeHandleButtonSize - kResizeHandleButtonMargin));
break;
case VideoOverlayWindowViews::WindowQuadrant::kTopRight:
views::ImageButton::SetPosition(gfx::Point(
kResizeHandleButtonMargin,
size.height() - kResizeHandleButtonSize - kResizeHandleButtonMargin));
break;
}
// Also rotate the icon to match the new corner.
SetQuadrant(quadrant);
}
void ResizeHandleButton::SetQuadrant(
VideoOverlayWindowViews::WindowQuadrant quadrant) {
if (current_quadrant_ == quadrant) {
return;
}
current_quadrant_ = quadrant;
if (GetWidget()) {
UpdateImageForQuadrant();
}
}
void ResizeHandleButton::UpdateImageForQuadrant() {
const SkColor color = GetColorProvider()->GetColor(kColorPipWindowForeground);
gfx::ImageSkia icon =
gfx::CreateVectorIcon(kResizeHandleIcon, kResizeHandleButtonSize, color);
switch (current_quadrant_) {
case VideoOverlayWindowViews::WindowQuadrant::kBottomLeft:
SetImageHorizontalAlignment(views::ImageButton::ALIGN_RIGHT);
SetImageVerticalAlignment(views::ImageButton::ALIGN_TOP);
break;
case VideoOverlayWindowViews::WindowQuadrant::kBottomRight:
SetImageHorizontalAlignment(views::ImageButton::ALIGN_LEFT);
SetImageVerticalAlignment(views::ImageButton::ALIGN_TOP);
icon = gfx::ImageSkiaOperations::CreateRotatedImage(
icon, SkBitmapOperations::ROTATION_270_CW);
break;
case VideoOverlayWindowViews::WindowQuadrant::kTopLeft:
SetImageHorizontalAlignment(views::ImageButton::ALIGN_RIGHT);
SetImageVerticalAlignment(views::ImageButton::ALIGN_BOTTOM);
icon = gfx::ImageSkiaOperations::CreateRotatedImage(
icon, SkBitmapOperations::ROTATION_90_CW);
break;
case VideoOverlayWindowViews::WindowQuadrant::kTopRight:
SetImageHorizontalAlignment(views::ImageButton::ALIGN_LEFT);
SetImageVerticalAlignment(views::ImageButton::ALIGN_BOTTOM);
icon = gfx::ImageSkiaOperations::CreateRotatedImage(
icon, SkBitmapOperations::ROTATION_180_CW);
break;
}
SetImageModel(views::Button::STATE_NORMAL,
ui::ImageModel::FromImageSkia(icon));
}
BEGIN_METADATA(ResizeHandleButton)
END_METADATA
|