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

ash / system / video_conference / bubble / settings_button.h [blame]

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_SYSTEM_VIDEO_CONFERENCE_BUBBLE_SETTINGS_BUTTON_H_
#define ASH_SYSTEM_VIDEO_CONFERENCE_BUBBLE_SETTINGS_BUTTON_H_

#include "ash/style/icon_button.h"
#include "ui/base/metadata/metadata_header_macros.h"

namespace ash::video_conference {

// The settings button, consisting of a gear icon and a drop down arrow icon,
// opens the VC settings menu when clicked.
class SettingsButton : public views::Button {
  METADATA_HEADER(SettingsButton, views::Button)

 public:
  explicit SettingsButton(base::OnceClosure close_bubble_callback);
  ~SettingsButton() override;
  SettingsButton(const SettingsButton&) = delete;
  SettingsButton& operator=(const SettingsButton&) = delete;

 private:
  class MenuController;

  // Shows the context menu using `MenuController`. This method is passed in to
  // the `Button` view as the `OnPressedCallback`.
  void OnButtonActivated(const ui::Event& event);

  // The context menu, which will be set as the controller to show the settings
  // button menu view.
  std::unique_ptr<MenuController> context_menu_;
};

}  // namespace ash::video_conference

#endif  // ASH_SYSTEM_VIDEO_CONFERENCE_BUBBLE_SETTINGS_BUTTON_H_