File: playback_image_button.cc

package info (click to toggle)
chromium 138.0.7204.183-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 6,080,960 kB
  • sloc: cpp: 34,937,079; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,954; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,811; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (137 lines) | stat: -rw-r--r-- 4,804 bytes parent folder | download | duplicates (2)
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