2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-08-18 13:36:00 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/ui/views/submenu_button.h"
|
2014-08-18 13:36:00 +08:00
|
|
|
|
2018-09-12 19:25:56 -05:00
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
|
2014-08-18 13:36:00 +08:00
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2019-11-05 18:41:20 -05:00
|
|
|
#include "ui/accessibility/ax_enums.mojom.h"
|
2014-08-18 13:36:00 +08:00
|
|
|
#include "ui/gfx/canvas.h"
|
2016-09-29 09:15:12 -07:00
|
|
|
#include "ui/gfx/color_utils.h"
|
2014-08-18 13:36:00 +08:00
|
|
|
#include "ui/gfx/text_utils.h"
|
2016-09-29 09:15:12 -07:00
|
|
|
#include "ui/views/animation/flood_fill_ink_drop_ripple.h"
|
|
|
|
#include "ui/views/animation/ink_drop_host_view.h"
|
2017-01-26 16:21:26 +09:00
|
|
|
#include "ui/views/animation/ink_drop_impl.h"
|
2014-09-01 20:22:38 +08:00
|
|
|
#include "ui/views/controls/button/label_button_border.h"
|
2014-08-18 13:36:00 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2014-08-18 13:36:00 +08:00
|
|
|
|
2021-01-30 05:43:51 +09:00
|
|
|
SubmenuButton::SubmenuButton(PressedCallback callback,
|
|
|
|
const base::string16& title,
|
2016-09-29 09:15:12 -07:00
|
|
|
const SkColor& background_color)
|
2021-01-30 05:43:51 +09:00
|
|
|
: views::MenuButton(callback, gfx::RemoveAccelerator(title)),
|
2016-09-29 09:15:12 -07:00
|
|
|
background_color_(background_color) {
|
2014-09-01 20:22:38 +08:00
|
|
|
#if defined(OS_LINUX)
|
|
|
|
// Dont' use native style border.
|
2018-05-15 14:33:47 -07:00
|
|
|
SetBorder(CreateDefaultBorder());
|
2014-09-01 20:22:38 +08:00
|
|
|
#endif
|
|
|
|
|
2014-08-18 16:05:41 +08:00
|
|
|
if (GetUnderlinePosition(title, &accelerator_, &underline_start_,
|
|
|
|
&underline_end_))
|
2017-04-17 17:17:02 +09:00
|
|
|
gfx::Canvas::SizeStringInt(GetText(), gfx::FontList(), &text_width_,
|
2014-08-18 14:42:21 +08:00
|
|
|
&text_height_, 0, 0);
|
2016-09-29 09:15:12 -07:00
|
|
|
|
2016-12-02 17:44:09 +09:00
|
|
|
SetInkDropMode(InkDropMode::ON);
|
2020-10-15 18:30:41 -07:00
|
|
|
SetInkDropBaseColor(
|
2019-03-12 23:29:45 +01:00
|
|
|
color_utils::BlendTowardMaxContrast(background_color_, 0x81));
|
2014-08-18 13:36:00 +08:00
|
|
|
}
|
|
|
|
|
2019-09-16 18:12:00 -04:00
|
|
|
SubmenuButton::~SubmenuButton() = default;
|
2014-08-18 13:36:00 +08:00
|
|
|
|
2016-09-29 09:15:12 -07:00
|
|
|
std::unique_ptr<views::InkDropRipple> SubmenuButton::CreateInkDropRipple()
|
|
|
|
const {
|
2017-01-26 16:10:28 +09:00
|
|
|
std::unique_ptr<views::InkDropRipple> ripple(
|
|
|
|
new views::FloodFillInkDropRipple(
|
2018-04-17 21:55:30 -04:00
|
|
|
size(), GetInkDropCenterBasedOnLastEvent(), GetInkDropBaseColor(),
|
2020-10-15 18:30:41 -07:00
|
|
|
GetInkDropVisibleOpacity()));
|
2017-01-26 16:10:28 +09:00
|
|
|
return ripple;
|
2016-09-29 09:15:12 -07:00
|
|
|
}
|
|
|
|
|
2017-01-26 16:10:28 +09:00
|
|
|
std::unique_ptr<views::InkDrop> SubmenuButton::CreateInkDrop() {
|
|
|
|
std::unique_ptr<views::InkDropImpl> ink_drop =
|
2017-11-27 14:02:37 +01:00
|
|
|
views::Button::CreateDefaultInkDropImpl();
|
2017-01-26 16:10:28 +09:00
|
|
|
ink_drop->SetShowHighlightOnHover(false);
|
2019-03-12 23:29:45 +01:00
|
|
|
ink_drop->SetShowHighlightOnFocus(true);
|
2017-01-26 16:10:28 +09:00
|
|
|
return std::move(ink_drop);
|
2016-09-29 09:15:12 -07:00
|
|
|
}
|
|
|
|
|
2014-08-18 14:12:12 +08:00
|
|
|
void SubmenuButton::SetAcceleratorVisibility(bool visible) {
|
|
|
|
if (visible == show_underline_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
show_underline_ = visible;
|
|
|
|
SchedulePaint();
|
|
|
|
}
|
|
|
|
|
2014-08-18 13:36:00 +08:00
|
|
|
void SubmenuButton::SetUnderlineColor(SkColor color) {
|
|
|
|
underline_color_ = color;
|
|
|
|
}
|
|
|
|
|
2018-10-29 19:08:47 +01:00
|
|
|
void SubmenuButton::GetAccessibleNodeData(ui::AXNodeData* node_data) {
|
2019-01-10 23:36:28 +05:30
|
|
|
node_data->SetName(GetAccessibleName());
|
2018-10-29 19:08:47 +01:00
|
|
|
node_data->role = ax::mojom::Role::kPopUpButton;
|
|
|
|
}
|
|
|
|
|
2017-09-14 00:04:52 +03:00
|
|
|
void SubmenuButton::PaintButtonContents(gfx::Canvas* canvas) {
|
|
|
|
views::MenuButton::PaintButtonContents(canvas);
|
2014-08-18 13:36:00 +08:00
|
|
|
|
2014-08-18 14:12:12 +08:00
|
|
|
if (show_underline_ && (underline_start_ != underline_end_)) {
|
2018-10-29 19:08:47 +01:00
|
|
|
float padding = (width() - text_width_) / 2;
|
|
|
|
float underline_height = (height() + text_height_) / 2 - 2;
|
|
|
|
canvas->DrawSharpLine(
|
|
|
|
gfx::PointF(underline_start_ + padding, underline_height),
|
|
|
|
gfx::PointF(underline_end_ + padding, underline_height),
|
|
|
|
underline_color_);
|
2014-08-18 13:36:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-18 16:05:41 +08:00
|
|
|
bool SubmenuButton::GetUnderlinePosition(const base::string16& text,
|
|
|
|
base::char16* accelerator,
|
2018-04-17 21:55:30 -04:00
|
|
|
int* start,
|
|
|
|
int* end) const {
|
2014-08-18 13:36:00 +08:00
|
|
|
int pos, span;
|
2020-12-14 10:57:36 -08:00
|
|
|
base::string16 trimmed =
|
|
|
|
gfx::LocateAndRemoveAcceleratorChar(text, &pos, &span);
|
2014-08-18 13:36:00 +08:00
|
|
|
if (pos > -1 && span != 0) {
|
2014-08-18 16:05:41 +08:00
|
|
|
*accelerator = base::ToUpperASCII(trimmed[pos]);
|
2014-08-18 15:36:29 +08:00
|
|
|
GetCharacterPosition(trimmed, pos, start);
|
|
|
|
GetCharacterPosition(trimmed, pos + span, end);
|
2014-08-18 14:42:21 +08:00
|
|
|
return true;
|
2014-08-18 13:36:00 +08:00
|
|
|
}
|
2014-08-18 14:42:21 +08:00
|
|
|
|
|
|
|
return false;
|
2014-08-18 13:36:00 +08:00
|
|
|
}
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
void SubmenuButton::GetCharacterPosition(const base::string16& text,
|
|
|
|
int index,
|
|
|
|
int* pos) const {
|
2017-04-05 14:45:46 +02:00
|
|
|
int height = 0;
|
2017-04-17 17:17:02 +09:00
|
|
|
gfx::Canvas::SizeStringInt(text.substr(0, index), gfx::FontList(), pos,
|
|
|
|
&height, 0, 0);
|
2014-08-18 13:36:00 +08:00
|
|
|
}
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|