blob: 3059802347aa7edc85a32419533ff1ce764fd001 [file] [log] [blame]
// Copyright 2013 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.
#include "ash/shelf/overflow_button.h"
#include <memory>
#include "ash/resources/vector_icons/vector_icons.h"
#include "ash/shelf/shelf.h"
#include "ash/shelf/shelf_constants.h"
#include "ash/shelf/shelf_view.h"
#include "ash/strings/grit/ash_strings.h"
#include "chromeos/chromeos_switches.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/image/image_skia_operations.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/gfx/skbitmap_operations.h"
#include "ui/views/animation/flood_fill_ink_drop_ripple.h"
#include "ui/views/animation/ink_drop_impl.h"
#include "ui/views/animation/ink_drop_mask.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/layout/fill_layout.h"
namespace ash {
OverflowButton::OverflowButton(ShelfView* shelf_view, Shelf* shelf)
: Button(nullptr),
shelf_view_(shelf_view),
shelf_(shelf),
background_color_(kShelfDefaultBaseColor) {
DCHECK(shelf_view_);
SetInkDropMode(InkDropMode::ON);
set_ink_drop_base_color(kShelfInkDropBaseColor);
set_ink_drop_visible_opacity(kShelfInkDropVisibleOpacity);
set_hide_ink_drop_when_showing_context_menu(false);
SetFocusBehavior(FocusBehavior::ACCESSIBLE_ONLY);
SetAccessibleName(l10n_util::GetStringUTF16(IDS_ASH_SHELF_OVERFLOW_NAME));
horizontal_dots_image_view_ = new views::ImageView();
horizontal_dots_image_view_->SetImage(
gfx::CreateVectorIcon(kShelfOverflowHorizontalDotsIcon, kShelfIconColor));
SetLayoutManager(std::make_unique<views::FillLayout>());
background_color_ = kShelfControlPermanentHighlightBackground;
AddChildView(horizontal_dots_image_view_);
}
OverflowButton::~OverflowButton() = default;
std::unique_ptr<views::InkDrop> OverflowButton::CreateInkDrop() {
std::unique_ptr<views::InkDropImpl> ink_drop =
CreateDefaultFloodFillInkDropImpl();
ink_drop->SetShowHighlightOnHover(false);
ink_drop->SetAutoHighlightMode(views::InkDropImpl::AutoHighlightMode::NONE);
return std::move(ink_drop);
}
std::unique_ptr<views::InkDropRipple> OverflowButton::CreateInkDropRipple()
const {
gfx::Insets insets = GetLocalBounds().InsetsFrom(CalculateButtonBounds());
return std::make_unique<views::FloodFillInkDropRipple>(
size(), insets, GetInkDropCenterBasedOnLastEvent(), GetInkDropBaseColor(),
ink_drop_visible_opacity());
}
bool OverflowButton::ShouldEnterPushedState(const ui::Event& event) {
if (shelf_view_->IsShowingOverflowBubble())
return false;
return Button::ShouldEnterPushedState(event);
}
void OverflowButton::NotifyClick(const ui::Event& event) {
Button::NotifyClick(event);
shelf_view_->ButtonPressed(this, event, GetInkDrop());
}
std::unique_ptr<views::InkDropMask> OverflowButton::CreateInkDropMask() const {
gfx::Insets insets = GetLocalBounds().InsetsFrom(CalculateButtonBounds());
return std::make_unique<views::RoundRectInkDropMask>(
size(), insets, ShelfConstants::overflow_button_corner_radius());
}
void OverflowButton::PaintButtonContents(gfx::Canvas* canvas) {
gfx::Rect bounds = CalculateButtonBounds();
PaintBackground(canvas, bounds);
}
void OverflowButton::PaintBackground(gfx::Canvas* canvas,
const gfx::Rect& bounds) {
cc::PaintFlags flags;
flags.setAntiAlias(true);
flags.setColor(background_color_);
canvas->DrawRoundRect(bounds, ShelfConstants::overflow_button_corner_radius(),
flags);
}
gfx::Rect OverflowButton::CalculateButtonBounds() const {
const int overflow_button_size = ShelfConstants::overflow_button_size();
ShelfAlignment alignment = shelf_->alignment();
gfx::Rect content_bounds = GetContentsBounds();
// Align the button to the top of a bottom-aligned shelf, to the right edge
// a left-aligned shelf, and to the left edge of a right-aligned shelf.
const int inset = (ShelfConstants::shelf_size() - overflow_button_size) / 2;
const int x = alignment == SHELF_ALIGNMENT_LEFT
? content_bounds.right() - inset - overflow_button_size
: content_bounds.x() + inset;
return gfx::Rect(x, content_bounds.y() + inset, overflow_button_size,
overflow_button_size);
}
} // namespace ash