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
ash / wm / overview / birch / birch_bar_util.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_WM_OVERVIEW_BIRCH_BIRCH_BAR_UTIL_H_
#define ASH_WM_OVERVIEW_BIRCH_BIRCH_BAR_UTIL_H_
#include <string>
#include "ash/wm/overview/birch/birch_bar_constants.h"
#include "ash/wm/overview/birch/tab_app_selection_host.h"
#include "ui/views/controls/button/button.h"
namespace ash::birch_bar_util {
// Creates a button for the glanceables chip with given `callback` and `label`,
// e.g. the join button of calendar chip.
std::unique_ptr<views::Button> CreateAddonButton(
views::Button::PressedCallback callback,
const std::u16string& label);
// Creates a button for the glanceables chip with given `callback` and
// `button_icon`, e.g. the expand/collapse button of coral chip.
std::unique_ptr<views::Button> CreateCoralAddonButton(
views::Button::PressedCallback callback,
const gfx::VectorIcon& button_icon);
// Creates a weather temperature view which consists of two labels, one is for
// the temperature degree and the other is for the degree unit (Fahrenheit v.s.
// Celsius).
std::unique_ptr<views::View> CreateWeatherTemperatureView(
const std::u16string& temp_str,
bool fahrenheit);
// Gets suggestion type from the given command Id.
BirchSuggestionType CommandIdToSuggestionType(int command_id);
// Returns the visible tab app selection host if there is one.
TabAppSelectionHost* GetVisibleTabAppSelectionHost();
} // namespace ash::birch_bar_util
#endif // ASH_WM_OVERVIEW_BIRCH_BIRCH_BAR_UTIL_H_