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
|
// 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/playback_image_button.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/ui/color/chrome_color_id.h"
#include "chrome/browser/ui/views/overlay/constants.h"
#include "chrome/grit/generated_resources.h"
#include "components/vector_icons/vector_icons.h"
#include "media/base/media_switches.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/color/color_id.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/background.h"
#include "ui/views/vector_icons.h"
namespace {
constexpr int kPlaybackButtonIconSize = 24;
} // namespace
PlaybackImageButton::PlaybackImageButton(PressedCallback callback)
: OverlayWindowImageButton(std::move(callback)) {
// For the 2024 updated UI, we're in charge of our own size, and the icons
// never change.
if (base::FeatureList::IsEnabled(
media::kVideoPictureInPictureControlsUpdate2024)) {
SetSize(gfx::Size(kCenterButtonSize, kCenterButtonSize));
play_image_ = ui::ImageModel::FromVectorIcon(
vector_icons::kPlayArrowIcon, ui::kColorSysOnSecondaryContainer,
kPlaybackButtonIconSize);
pause_image_ = ui::ImageModel::FromVectorIcon(vector_icons::kPauseIcon,
kColorPipWindowForeground,
kPlaybackButtonIconSize);
replay_image_ = ui::ImageModel::FromVectorIcon(
vector_icons::kReplayIcon, ui::kColorSysOnSecondaryContainer,
kPlaybackButtonIconSize);
UpdateImageAndText();
}
// Accessibility.
const std::u16string playback_accessible_button_label(
l10n_util::GetStringUTF16(
IDS_PICTURE_IN_PICTURE_PLAY_PAUSE_CONTROL_ACCESSIBLE_TEXT));
GetViewAccessibility().SetName(playback_accessible_button_label);
}
void PlaybackImageButton::OnBoundsChanged(const gfx::Rect& rect) {
if (base::FeatureList::IsEnabled(
media::kVideoPictureInPictureControlsUpdate2024)) {
return;
}
int icon_size = std::max(0, width() - (2 * kPipWindowIconPadding));
play_image_ = ui::ImageModel::FromVectorIcon(
vector_icons::kPlayArrowIcon, kColorPipWindowForeground, icon_size);
pause_image_ = ui::ImageModel::FromVectorIcon(
vector_icons::kPauseIcon, kColorPipWindowForeground, icon_size);
replay_image_ = ui::ImageModel::FromVectorIcon(
vector_icons::kReplayIcon, kColorPipWindowForeground, icon_size);
UpdateImageAndText();
}
void PlaybackImageButton::SetPlaybackState(
const VideoOverlayWindowViews::PlaybackState playback_state) {
if (playback_state_ == playback_state) {
return;
}
playback_state_ = playback_state;
UpdateImageAndText();
}
void PlaybackImageButton::UpdateImageAndText() {
switch (playback_state_) {
case VideoOverlayWindowViews::kPlaying: {
SetImageModel(views::Button::STATE_NORMAL, pause_image_);
SetPauseButtonBackground();
std::u16string pause_text =
l10n_util::GetStringUTF16(IDS_PICTURE_IN_PICTURE_PAUSE_CONTROL_TEXT);
SetTooltipText(pause_text);
GetViewAccessibility().SetName(pause_text);
break;
}
case VideoOverlayWindowViews::kPaused: {
SetImageModel(views::Button::STATE_NORMAL, play_image_);
SetPlayButtonBackground();
std::u16string play_text =
l10n_util::GetStringUTF16(IDS_PICTURE_IN_PICTURE_PLAY_CONTROL_TEXT);
SetTooltipText(play_text);
GetViewAccessibility().SetName(play_text);
break;
}
case VideoOverlayWindowViews::kEndOfVideo: {
SetImageModel(views::Button::STATE_NORMAL, replay_image_);
SetPlayButtonBackground();
std::u16string replay_text =
l10n_util::GetStringUTF16(IDS_PICTURE_IN_PICTURE_REPLAY_CONTROL_TEXT);
SetTooltipText(replay_text);
GetViewAccessibility().SetName(replay_text);
break;
}
}
SchedulePaint();
}
void PlaybackImageButton::SetPlayButtonBackground() {
if (!base::FeatureList::IsEnabled(
media::kVideoPictureInPictureControlsUpdate2024)) {
return;
}
SetBackground(views::CreateRoundedRectBackground(
ui::kColorSysSecondaryContainer, kCenterButtonSize / 2));
}
void PlaybackImageButton::SetPauseButtonBackground() {
if (!base::FeatureList::IsEnabled(
media::kVideoPictureInPictureControlsUpdate2024)) {
return;
}
SetBackground(views::CreateRoundedRectBackground(
SkColorSetARGB(0x33, 0xFF, 0xFF, 0xFF), kCenterButtonSize / 2));
}
BEGIN_METADATA(PlaybackImageButton)
END_METADATA
|