2014-10-31 12:17:05 -06:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-08-17 23:36:00 -06:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/browser/ui/views/submenu_button.h"
|
2014-08-17 23:36:00 -06:00
|
|
|
|
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2019-11-05 16:41:20 -07:00
|
|
|
#include "ui/accessibility/ax_enums.mojom.h"
|
2014-08-17 23:36:00 -06:00
|
|
|
#include "ui/gfx/canvas.h"
|
2016-09-29 10:15:12 -06:00
|
|
|
#include "ui/gfx/color_utils.h"
|
2014-08-17 23:36:00 -06:00
|
|
|
#include "ui/gfx/text_utils.h"
|
2016-09-29 10:15:12 -06:00
|
|
|
#include "ui/views/animation/flood_fill_ink_drop_ripple.h"
|
2023-02-03 04:43:42 -07:00
|
|
|
#include "ui/views/animation/ink_drop_host.h"
|
2017-01-26 00:21:26 -07:00
|
|
|
#include "ui/views/animation/ink_drop_impl.h"
|
2014-09-01 06:22:38 -06:00
|
|
|
#include "ui/views/controls/button/label_button_border.h"
|
2014-08-17 23:36:00 -06:00
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
namespace electron {
|
2014-08-17 23:36:00 -06:00
|
|
|
|
2021-01-29 13:43:51 -07:00
|
|
|
SubmenuButton::SubmenuButton(PressedCallback callback,
|
2021-03-16 10:18:45 -06:00
|
|
|
const std::u16string& title,
|
2016-09-29 10:15:12 -06:00
|
|
|
const SkColor& background_color)
|
2024-01-03 01:52:49 -07:00
|
|
|
: views::MenuButton(std::move(callback), gfx::RemoveAccelerator(title)),
|
2016-09-29 10:15:12 -06:00
|
|
|
background_color_(background_color) {
|
2022-02-09 19:58:52 -07:00
|
|
|
#if BUILDFLAG(IS_LINUX)
|
2014-09-01 06:22:38 -06:00
|
|
|
// Dont' use native style border.
|
2018-05-15 15:33:47 -06:00
|
|
|
SetBorder(CreateDefaultBorder());
|
2014-09-01 06:22:38 -06:00
|
|
|
#endif
|
|
|
|
|
2014-08-18 02:05:41 -06:00
|
|
|
if (GetUnderlinePosition(title, &accelerator_, &underline_start_,
|
|
|
|
&underline_end_))
|
2017-04-17 02:17:02 -06:00
|
|
|
gfx::Canvas::SizeStringInt(GetText(), gfx::FontList(), &text_width_,
|
2014-08-18 00:42:21 -06:00
|
|
|
&text_height_, 0, 0);
|
2016-09-29 10:15:12 -06:00
|
|
|
|
2021-06-08 14:22:43 -06:00
|
|
|
views::InkDropHost* ink_drop = views::InkDrop::Get(this);
|
|
|
|
ink_drop->SetMode(views::InkDropHost::InkDropMode::ON);
|
|
|
|
ink_drop->SetBaseColor(
|
2019-03-12 16:29:45 -06:00
|
|
|
color_utils::BlendTowardMaxContrast(background_color_, 0x81));
|
2021-06-08 14:22:43 -06:00
|
|
|
views::InkDrop::UseInkDropForFloodFillRipple(ink_drop, false, true);
|
2014-08-17 23:36:00 -06:00
|
|
|
}
|
|
|
|
|
2019-09-16 16:12:00 -06:00
|
|
|
SubmenuButton::~SubmenuButton() = default;
|
2014-08-17 23:36:00 -06:00
|
|
|
|
2014-08-18 00:12:12 -06:00
|
|
|
void SubmenuButton::SetAcceleratorVisibility(bool visible) {
|
|
|
|
if (visible == show_underline_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
show_underline_ = visible;
|
|
|
|
SchedulePaint();
|
|
|
|
}
|
|
|
|
|
2014-08-17 23:36:00 -06:00
|
|
|
void SubmenuButton::SetUnderlineColor(SkColor color) {
|
|
|
|
underline_color_ = color;
|
|
|
|
}
|
|
|
|
|
2018-10-29 12:08:47 -06:00
|
|
|
void SubmenuButton::GetAccessibleNodeData(ui::AXNodeData* node_data) {
|
|
|
|
node_data->role = ax::mojom::Role::kPopUpButton;
|
2022-10-03 14:21:00 -06:00
|
|
|
node_data->SetName(GetAccessibleName());
|
2018-10-29 12:08:47 -06:00
|
|
|
}
|
|
|
|
|
2017-09-13 15:04:52 -06:00
|
|
|
void SubmenuButton::PaintButtonContents(gfx::Canvas* canvas) {
|
|
|
|
views::MenuButton::PaintButtonContents(canvas);
|
2014-08-17 23:36:00 -06:00
|
|
|
|
2014-08-18 00:12:12 -06:00
|
|
|
if (show_underline_ && (underline_start_ != underline_end_)) {
|
2018-10-29 12:08:47 -06: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-17 23:36:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
bool SubmenuButton::GetUnderlinePosition(const std::u16string& text,
|
2021-03-15 19:21:27 -06:00
|
|
|
char16_t* accelerator,
|
2018-04-17 19:55:30 -06:00
|
|
|
int* start,
|
|
|
|
int* end) const {
|
2014-08-17 23:36:00 -06:00
|
|
|
int pos, span;
|
2021-03-16 10:18:45 -06:00
|
|
|
std::u16string trimmed =
|
2020-12-14 11:57:36 -07:00
|
|
|
gfx::LocateAndRemoveAcceleratorChar(text, &pos, &span);
|
2014-08-17 23:36:00 -06:00
|
|
|
if (pos > -1 && span != 0) {
|
2014-08-18 02:05:41 -06:00
|
|
|
*accelerator = base::ToUpperASCII(trimmed[pos]);
|
2014-08-18 01:36:29 -06:00
|
|
|
GetCharacterPosition(trimmed, pos, start);
|
|
|
|
GetCharacterPosition(trimmed, pos + span, end);
|
2014-08-18 00:42:21 -06:00
|
|
|
return true;
|
2014-08-17 23:36:00 -06:00
|
|
|
}
|
2014-08-18 00:42:21 -06:00
|
|
|
|
|
|
|
return false;
|
2014-08-17 23:36:00 -06:00
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
void SubmenuButton::GetCharacterPosition(const std::u16string& text,
|
2018-04-17 19:55:30 -06:00
|
|
|
int index,
|
|
|
|
int* pos) const {
|
2017-04-05 06:45:46 -06:00
|
|
|
int height = 0;
|
2017-04-17 02:17:02 -06:00
|
|
|
gfx::Canvas::SizeStringInt(text.substr(0, index), gfx::FontList(), pos,
|
|
|
|
&height, 0, 0);
|
2014-08-17 23:36:00 -06:00
|
|
|
}
|
|
|
|
|
2023-11-28 14:40:12 -07:00
|
|
|
BEGIN_METADATA(SubmenuButton)
|
|
|
|
END_METADATA
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
} // namespace electron
|