blob: db1c9d072df928b89614a607d11139b805fd983e [file] [log] [blame]
// Copyright 2017 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 CHROME_BROWSER_UI_VIEWS_HOVER_BUTTON_H_
#define CHROME_BROWSER_UI_VIEWS_HOVER_BUTTON_H_
#include "base/strings/string16.h"
#include "ui/views/controls/button/label_button.h"
namespace gfx {
enum ElideBehavior;
class ImageSkia;
} // namespace gfx
namespace views {
class ButtonListener;
class Label;
class StyledLabel;
class View;
} // namespace views
// A button taking the full width of its parent that shows a background color
// when hovered over.
class HoverButton : public views::LabelButton {
public:
enum Style { STYLE_PROMINENT, STYLE_ERROR };
// Creates a single line hover button with no icon.
HoverButton(views::ButtonListener* button_listener,
const base::string16& text);
// Creates a single line hover button with an icon.
HoverButton(views::ButtonListener* button_listener,
const gfx::ImageSkia& icon,
const base::string16& text);
// Creates a HoverButton with custom subviews. |icon_view| replaces the
// LabelButton icon, and titles appear on separate rows. An empty |subtitle|
// will vertically center |title|. If |show_submenu_arrow| is true, an arrow
// is shown, analogous to menu items with submenus.
HoverButton(views::ButtonListener* button_listener,
std::unique_ptr<views::View> icon_view,
const base::string16& title,
const base::string16& subtitle,
bool show_submenu_arrow = false);
~HoverButton() override;
// views::LabelButton:
void SetBorder(std::unique_ptr<views::Border> b) override;
// Updates the title text, and applies the secondary style to the text
// specified by |range|. If |range| is invalid, no style is applied. This
// method is only supported for |HoverButton|s created with a title and
// subtitle.
void SetTitleTextWithHintRange(const base::string16& title_text,
const gfx::Range& range);
// This method is only supported for |HoverButton|s created with a title and
// non-empty subtitle.
void SetSubtitleElideBehavior(gfx::ElideBehavior elide_behavior);
// Adjusts the background and the text color according to |style|.
void SetStyle(Style style);
// Sets the text style of the title considering the color of the background.
// Passing |background_color| makes sure that the text color will not be
// changed to a color that is not readable on the specified background.
void SetTitleTextStyle(views::style::TextStyle text_style,
SkColor background_color);
void SetSubtitleColor(SkColor color);
void set_auto_compute_tooltip(bool auto_compute_tooltip) {
auto_compute_tooltip_ = auto_compute_tooltip;
}
// Sets the view to be highlighted when the button is hovered. If this
// function is not called, |this| will be used. This function can be used e.g.
// when siblings in the parent view have to be highlighted as well.
void SetHighlightingView(views::View* highlighting_view);
protected:
// views::LabelButton:
KeyClickAction GetKeyClickActionForEvent(const ui::KeyEvent& event) override;
void StateChanged(ButtonState old_state) override;
bool ShouldUseFloodFillInkDrop() const override;
// views::InkDropHostView:
SkColor GetInkDropBaseColor() const override;
std::unique_ptr<views::InkDropHighlight> CreateInkDropHighlight()
const override;
// views::View:
void Layout() override;
views::View* GetTooltipHandlerForPoint(const gfx::Point& point) override;
void OnBoundsChanged(const gfx::Rect& previous_bounds) override;
private:
views::StyledLabel* title_;
views::Label* subtitle_;
// The horizontal space the padding and icon take up. Used for calculating the
// available space for |title_|, if it exists.
int taken_width_ = 0;
// Whether this |HoverButton|'s accessible name and tooltip should be computed
// from the |title_| and |subtitle_| text.
bool auto_compute_tooltip_ = true;
// View that gets highlighted when this button is hovered.
views::View* highlighting_view_ = this;
DISALLOW_COPY_AND_ASSIGN(HoverButton);
};
#endif // CHROME_BROWSER_UI_VIEWS_HOVER_BUTTON_H_