[go: nahoru, domu]

blob: 29a44deefc5625773b92f6c6f818e3d5bc2b1ac9 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_TRAY_TRAY_POPUP_UTILS_H_
#define ASH_SYSTEM_TRAY_TRAY_POPUP_UTILS_H_
#include <memory>
#include <string>
#include "ash/login_status.h"
#include "ash/system/tray/tray_constants.h"
#include "ash/system/tray/tray_popup_ink_drop_style.h"
#include "ash/system/tray/tri_view.h"
#include "base/strings/string16.h"
#include "ui/views/controls/button/button.h"
namespace views {
class Button;
class ImageView;
class InkDrop;
class InkDropRipple;
class InkDropHighlight;
class InkDropHostView;
class Label;
class LabelButton;
class Painter;
class Separator;
class ToggleButton;
} // namespace views
namespace ash {
class HoverHighlightView;
class UnfocusableLabel;
// Factory/utility functions used by the system menu.
class TrayPopupUtils {
public:
enum class FontStyle {
// Topmost header rows for default view and detailed view.
kTitle,
// Topmost header for secondary tray bubbles
kPodMenuHeader,
// Small title used for selections in tray bubbles.
kSmallTitle,
// Text in sub-section header rows in detailed views.
kSubHeader,
// Main text used by detailed view rows.
kDetailedViewLabel,
// System information text (e.g. date/time, battery status, "Scanning for
// devices..." seen in the Bluetooth detailed view, etc).
kSystemInfo,
};
// Creates a default container view to be used by system menu rows that are
// either a single targetable area or not targetable at all. The caller takes
// over ownership of the created view.
//
// The returned view consists of 3 regions: START, CENTER, and END. Any child
// Views added to the START and END containers will be added horizontally and
// any Views added to the CENTER container will be added vertically.
//
// The START and END containers have a fixed minimum width but can grow into
// the CENTER container if space is required and available.
//
// The CENTER container has a flexible width.
static TriView* CreateDefaultRowView();
// Creates a container view to be used by system menu sub-section header rows.
// The caller takes over ownership of the created view.
//
// The returned view contains at least CENTER and END regions having the same
// properties as when using |CreateMultiTargetRowView|. |start_visible|
// determines whether the START region should be visible or not. If START is
// not visible, extra padding is added to the left of the contents.
//
// The START (if visible) and END containers have a fixed minimum width but
// can grow into the CENTER container if space is required and available. The
// CENTER container has a flexible width.
//
// TODO(mohsen): Merge this into TrayDetailedView::AddScrollListSubHeader()
// once network and VPN also use TrayDetailedView::AddScrollListSubHeader().
static TriView* CreateSubHeaderRowView(bool start_visible);
// Creates a container view to be used by system menu rows that want to embed
// a targetable area within one (or more) of the containers OR by any row
// that requires a non-default layout within the container views. The returned
// view will have the following configurations:
// - default minimum row height
// - default minimum width for the START and END containers
// - default left and right insets
// - default container flex values
// - Each container view will have a FillLayout installed on it
//
// The caller takes over ownership of the created view.
//
// The START and END containers have a fixed minimum width but can grow into
// the CENTER container if space is required and available. The CENTER
// container has a flexible width.
//
// Clients can use ConfigureContainer() to configure their own container views
// before adding them to the returned TriView.
static TriView* CreateMultiTargetRowView();
// Returns a label that has been configured for system menu layout. This
// should be used by all rows that require a label, i.e. both default and
// detailed rows should use this.
//
// TODO(bruthig): Update all system menu rows to use this.
static views::Label* CreateDefaultLabel();
// Returns a label that has been configured for system menu layout and does
// not allow accessibility focus.
static UnfocusableLabel* CreateUnfocusableLabel();
// Returns an image view to be used in the main image region of a system menu
// row. This should be used by all rows that have a main image, i.e. both
// default and detailed rows should use this.
//
// TODO(bruthig): Update all system menu rows to use this.
static views::ImageView* CreateMainImageView();
// Returns a ToggleButton that has been configured for system menu layout.
static views::ToggleButton* CreateToggleButton(
views::Button::PressedCallback callback,
int accessible_name_id);
// Creates a default focus painter used for most things in tray popups.
static std::unique_ptr<views::Painter> CreateFocusPainter();
// Common setup for various buttons in the system menu.
static void ConfigureTrayPopupButton(views::Button* button);
// Sets up |view| to be a sticky header in a tray detail scroll view.
static void ConfigureAsStickyHeader(views::View* view);
// Configures |container_view| just like CreateDefaultRowView() would
// configure |container| on its returned TriView. To be used when mutliple
// targetable areas are required within a single row.
static void ConfigureContainer(TriView::Container container,
views::View* container_view);
// Creates a button for use in the system menu. For MD, this is a prominent
// text
// button. For non-MD, this does the same thing as the above. Caller assumes
// ownership.
static views::LabelButton* CreateTrayPopupButton(
views::Button::PressedCallback callback,
const std::u16string& text);
// Creates and returns a vertical separator to be used between two items in a
// material design system menu row. The caller assumes ownership of the
// returned separator.
static views::Separator* CreateVerticalSeparator();
// Creates in InkDrop instance for |host|.
// All styles are configured to show the highlight when the ripple is visible.
//
// All targetable views in the system menu should delegate
// InkDropHost::CreateInkDrop() calls here.
static std::unique_ptr<views::InkDrop> CreateInkDrop(
views::InkDropHostView* host);
// Creates an InkDropRipple instance for |host| according to the
// |ink_drop_style|. The ripple will be centered on |center_point|.
//
// All targetable views in the system menu should delegate
// InkDropHost::CreateInkDropRipple() calls here.
static std::unique_ptr<views::InkDropRipple> CreateInkDropRipple(
TrayPopupInkDropStyle ink_drop_style,
const views::View* host,
const gfx::Point& center_point);
// Creates in InkDropHighlight instance for |host|.
//
// All targetable views in the system menu should delegate
// InkDropHost::CreateInkDropHighlight() calls here.
static std::unique_ptr<views::InkDropHighlight> CreateInkDropHighlight(
const views::View* host);
// Installs a HighlightPathGenerator matching the TrayPopupInkDropStyle.
static void InstallHighlightPathGenerator(
views::View* host,
TrayPopupInkDropStyle ink_drop_style);
// Creates and returns a horizontal separator line to be drawn between rows
// in a detailed view. If |left_inset| is true, then the separator is inset on
// the left by the width normally occupied by an icon. Caller assumes
// ownership of the returned separator.
static views::Separator* CreateListItemSeparator(bool left_inset);
// Returns true if it is possible to open WebUI settings in a browser window,
// i.e. the user is logged in, not on the lock screen, not adding a secondary
// user, and not in the supervised user creation flow.
static bool CanOpenWebUISettings();
// Initializes a row in the system menu as checkable and update the check mark
// status of this row. If |enterprise_managed| is true, adds an enterprise
// managed icon to the row.
static void InitializeAsCheckableRow(HoverHighlightView* container,
bool checked,
bool enterprise_managed);
// Updates the visibility and a11y state of the checkable row |container|.
static void UpdateCheckMarkVisibility(HoverHighlightView* container,
bool visible);
// Updates the toggle button colors based on the current color mode.
static void UpdateToggleButtonColors(views::ToggleButton* toggle);
// Sets the font list for |label| based on |style|.
static void SetLabelFontList(views::Label* label, FontStyle style);
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(TrayPopupUtils);
};
} // namespace ash
#endif // ASH_SYSTEM_TRAY_TRAY_POPUP_UTILS_H_