2021-04-09 01:15:51 +02:00
|
|
|
// Copyright (c) 2021 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright (c) 2012 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 "libcef/browser/simple_menu_model_impl.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "libcef/browser/thread_util.h"
|
|
|
|
#include "libcef/common/task_runner_impl.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Value based on the documentation on SimpleMenuModel::GetIndexOfCommandId().
|
|
|
|
const int kInvalidIndex = -1;
|
|
|
|
const int kInvalidCommandId = -1;
|
|
|
|
const int kInvalidGroupId = -1;
|
|
|
|
|
|
|
|
cef_menu_item_type_t GetCefItemType(ui::MenuModel::ItemType type) {
|
|
|
|
switch (type) {
|
|
|
|
case ui::MenuModel::TYPE_COMMAND:
|
|
|
|
return MENUITEMTYPE_COMMAND;
|
|
|
|
case ui::MenuModel::TYPE_CHECK:
|
|
|
|
return MENUITEMTYPE_CHECK;
|
|
|
|
case ui::MenuModel::TYPE_RADIO:
|
|
|
|
return MENUITEMTYPE_RADIO;
|
|
|
|
case ui::MenuModel::TYPE_SEPARATOR:
|
|
|
|
return MENUITEMTYPE_SEPARATOR;
|
|
|
|
case ui::MenuModel::TYPE_SUBMENU:
|
|
|
|
return MENUITEMTYPE_SUBMENU;
|
|
|
|
default:
|
|
|
|
return MENUITEMTYPE_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
CefSimpleMenuModelImpl::CefSimpleMenuModelImpl(
|
|
|
|
ui::SimpleMenuModel* model,
|
|
|
|
ui::SimpleMenuModel::Delegate* delegate,
|
|
|
|
StateDelegate* state_delegate,
|
|
|
|
bool is_owned,
|
|
|
|
bool is_submenu)
|
|
|
|
: supported_thread_id_(base::PlatformThread::CurrentId()),
|
|
|
|
model_(model),
|
|
|
|
delegate_(delegate),
|
|
|
|
state_delegate_(state_delegate),
|
|
|
|
is_owned_(is_owned),
|
|
|
|
is_submenu_(is_submenu) {
|
|
|
|
DCHECK(model_);
|
|
|
|
DCHECK(delegate_);
|
|
|
|
DCHECK(state_delegate_);
|
|
|
|
}
|
|
|
|
|
|
|
|
CefSimpleMenuModelImpl::~CefSimpleMenuModelImpl() {
|
|
|
|
// Detach() must be called before object destruction.
|
|
|
|
DCHECK(!model_);
|
|
|
|
DCHECK(submenumap_.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefSimpleMenuModelImpl::Detach() {
|
|
|
|
DCHECK(VerifyContext());
|
|
|
|
|
|
|
|
if (!submenumap_.empty()) {
|
|
|
|
auto it = submenumap_.begin();
|
|
|
|
for (; it != submenumap_.end(); ++it) {
|
|
|
|
it->second->Detach();
|
|
|
|
}
|
|
|
|
submenumap_.clear();
|
|
|
|
}
|
|
|
|
|
2023-01-02 23:59:03 +01:00
|
|
|
if (is_owned_) {
|
2021-04-09 01:15:51 +02:00
|
|
|
delete model_;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
model_ = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::IsSubMenu() {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
return is_submenu_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::Clear() {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->Clear();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
size_t CefSimpleMenuModelImpl::GetCount() {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return 0;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return model_->GetItemCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::AddSeparator() {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->AddSeparator(ui::NORMAL_SEPARATOR);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::AddItem(int command_id, const CefString& label) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->AddItem(command_id, label);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::AddCheckItem(int command_id,
|
|
|
|
const CefString& label) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->AddCheckItem(command_id, label);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::AddRadioItem(int command_id,
|
|
|
|
const CefString& label,
|
|
|
|
int group_id) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->AddRadioItem(command_id, label, group_id);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefMenuModel> CefSimpleMenuModelImpl::AddSubMenu(
|
|
|
|
int command_id,
|
|
|
|
const CefString& label) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return nullptr;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
auto new_menu = CreateNewSubMenu(nullptr);
|
|
|
|
model_->AddSubMenu(command_id, label, new_menu->model());
|
|
|
|
return new_menu;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::InsertSeparatorAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->InsertSeparatorAt(index, ui::NORMAL_SEPARATOR);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::InsertItemAt(size_t index,
|
2021-04-09 01:15:51 +02:00
|
|
|
int command_id,
|
|
|
|
const CefString& label) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->InsertItemAt(index, command_id, label);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::InsertCheckItemAt(size_t index,
|
2021-04-09 01:15:51 +02:00
|
|
|
int command_id,
|
|
|
|
const CefString& label) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->InsertCheckItemAt(index, command_id, label);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::InsertRadioItemAt(size_t index,
|
2021-04-09 01:15:51 +02:00
|
|
|
int command_id,
|
|
|
|
const CefString& label,
|
|
|
|
int group_id) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->InsertRadioItemAt(index, command_id, label, group_id);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefMenuModel> CefSimpleMenuModelImpl::InsertSubMenuAt(
|
2022-07-25 19:49:32 +02:00
|
|
|
size_t index,
|
2021-04-09 01:15:51 +02:00
|
|
|
int command_id,
|
|
|
|
const CefString& label) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return nullptr;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
auto new_menu = CreateNewSubMenu(nullptr);
|
|
|
|
model_->InsertSubMenuAt(index, command_id, label, new_menu->model());
|
|
|
|
return new_menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::Remove(int command_id) {
|
|
|
|
return RemoveAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::RemoveAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
auto* sub_menu =
|
|
|
|
static_cast<ui::SimpleMenuModel*>(model_->GetSubmenuModelAt(index));
|
|
|
|
if (sub_menu) {
|
|
|
|
auto it = submenumap_.find(sub_menu);
|
|
|
|
if (it != submenumap_.end()) {
|
|
|
|
it->second->Detach();
|
|
|
|
submenumap_.erase(it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
model_->RemoveItemAt(index);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CefSimpleMenuModelImpl::GetIndexOf(int command_id) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return kInvalidIndex;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
auto index = model_->GetIndexOfCommandId(command_id);
|
2023-01-02 23:59:03 +01:00
|
|
|
if (index.has_value()) {
|
2022-07-25 19:49:32 +02:00
|
|
|
return static_cast<int>(*index);
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2022-07-25 19:49:32 +02:00
|
|
|
return -1;
|
2021-04-09 01:15:51 +02:00
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
int CefSimpleMenuModelImpl::GetCommandIdAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return kInvalidCommandId;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return model_->GetCommandIdAt(index);
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::SetCommandIdAt(size_t index, int command_id) {
|
2021-04-09 01:15:51 +02:00
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefString CefSimpleMenuModelImpl::GetLabel(int command_id) {
|
|
|
|
return GetLabelAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
CefString CefSimpleMenuModelImpl::GetLabelAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return CefString();
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return model_->GetLabelAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetLabel(int command_id, const CefString& label) {
|
|
|
|
return SetLabelAt(GetIndexOf(command_id), label);
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::SetLabelAt(size_t index, const CefString& label) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->SetLabel(index, label);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefSimpleMenuModelImpl::MenuItemType CefSimpleMenuModelImpl::GetType(
|
|
|
|
int command_id) {
|
|
|
|
return GetTypeAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
CefSimpleMenuModelImpl::MenuItemType CefSimpleMenuModelImpl::GetTypeAt(
|
2022-07-25 19:49:32 +02:00
|
|
|
size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return MENUITEMTYPE_NONE;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return GetCefItemType(model_->GetTypeAt(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
int CefSimpleMenuModelImpl::GetGroupId(int command_id) {
|
|
|
|
return GetGroupIdAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
int CefSimpleMenuModelImpl::GetGroupIdAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return kInvalidGroupId;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return model_->GetGroupIdAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetGroupId(int command_id, int group_id) {
|
|
|
|
return SetGroupIdAt(GetIndexOf(command_id), group_id);
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::SetGroupIdAt(size_t index, int group_id) {
|
2021-04-09 01:15:51 +02:00
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefMenuModel> CefSimpleMenuModelImpl::GetSubMenu(int command_id) {
|
|
|
|
return GetSubMenuAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
CefRefPtr<CefMenuModel> CefSimpleMenuModelImpl::GetSubMenuAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return nullptr;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
auto* sub_model =
|
|
|
|
static_cast<ui::SimpleMenuModel*>(model_->GetSubmenuModelAt(index));
|
|
|
|
auto it = submenumap_.find(sub_model);
|
2023-01-02 23:59:03 +01:00
|
|
|
if (it != submenumap_.end()) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return it->second;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
return CreateNewSubMenu(sub_model);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::IsVisible(int command_id) {
|
|
|
|
return IsVisibleAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::IsVisibleAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return model_->IsVisibleAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetVisible(int command_id, bool visible) {
|
|
|
|
return SetVisibleAt(GetIndexOf(command_id), visible);
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::SetVisibleAt(size_t index, bool visible) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->SetVisibleAt(index, visible);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::IsEnabled(int command_id) {
|
|
|
|
return IsEnabledAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::IsEnabledAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return model_->IsEnabledAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetEnabled(int command_id, bool enabled) {
|
|
|
|
return SetEnabledAt(GetIndexOf(command_id), enabled);
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::SetEnabledAt(size_t index, bool enabled) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
model_->SetEnabledAt(index, enabled);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::IsChecked(int command_id) {
|
|
|
|
return IsCheckedAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::IsCheckedAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return model_->IsItemCheckedAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetChecked(int command_id, bool checked) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || command_id == kInvalidIndex) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
state_delegate_->SetChecked(command_id, checked);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::SetCheckedAt(size_t index, bool checked) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return SetChecked(GetCommandIdAt(index), checked);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::HasAccelerator(int command_id) {
|
|
|
|
return HasAcceleratorAt(GetIndexOf(command_id));
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::HasAcceleratorAt(size_t index) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
ui::Accelerator accelerator;
|
|
|
|
return model_->GetAcceleratorAt(index, &accelerator);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetAccelerator(int command_id,
|
|
|
|
int key_code,
|
|
|
|
bool shift_pressed,
|
|
|
|
bool ctrl_pressed,
|
|
|
|
bool alt_pressed) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || command_id == kInvalidIndex) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
int modifiers = 0;
|
2023-01-02 23:59:03 +01:00
|
|
|
if (shift_pressed) {
|
2021-04-09 01:15:51 +02:00
|
|
|
modifiers |= ui::EF_SHIFT_DOWN;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
|
|
|
if (ctrl_pressed) {
|
2021-04-09 01:15:51 +02:00
|
|
|
modifiers |= ui::EF_CONTROL_DOWN;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
|
|
|
if (alt_pressed) {
|
2021-04-09 01:15:51 +02:00
|
|
|
modifiers |= ui::EF_ALT_DOWN;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
state_delegate_->SetAccelerator(
|
|
|
|
command_id,
|
|
|
|
ui::Accelerator(static_cast<ui::KeyboardCode>(key_code), modifiers));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::SetAcceleratorAt(size_t index,
|
2021-04-09 01:15:51 +02:00
|
|
|
int key_code,
|
|
|
|
bool shift_pressed,
|
|
|
|
bool ctrl_pressed,
|
|
|
|
bool alt_pressed) {
|
|
|
|
return SetAccelerator(GetCommandIdAt(index), key_code, shift_pressed,
|
|
|
|
ctrl_pressed, alt_pressed);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::RemoveAccelerator(int command_id) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || command_id == kInvalidIndex) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-06-04 03:34:56 +02:00
|
|
|
state_delegate_->SetAccelerator(command_id, absl::nullopt);
|
2021-04-09 01:15:51 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::RemoveAcceleratorAt(size_t index) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return RemoveAccelerator(GetCommandIdAt(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::GetAccelerator(int command_id,
|
|
|
|
int& key_code,
|
|
|
|
bool& shift_pressed,
|
|
|
|
bool& ctrl_pressed,
|
|
|
|
bool& alt_pressed) {
|
|
|
|
return GetAcceleratorAt(GetIndexOf(command_id), key_code, shift_pressed,
|
|
|
|
ctrl_pressed, alt_pressed);
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::GetAcceleratorAt(size_t index,
|
2021-04-09 01:15:51 +02:00
|
|
|
int& key_code,
|
|
|
|
bool& shift_pressed,
|
|
|
|
bool& ctrl_pressed,
|
|
|
|
bool& alt_pressed) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!VerifyContext() || !ValidIndex(index)) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
ui::Accelerator accel;
|
|
|
|
if (model_->GetAcceleratorAt(index, &accel)) {
|
|
|
|
key_code = accel.key_code();
|
|
|
|
shift_pressed = accel.modifiers() & ui::EF_SHIFT_DOWN;
|
|
|
|
ctrl_pressed = accel.modifiers() & ui::EF_CONTROL_DOWN;
|
|
|
|
alt_pressed = accel.modifiers() & ui::EF_ALT_DOWN;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetColor(int command_id,
|
|
|
|
cef_menu_color_type_t color_type,
|
|
|
|
cef_color_t color) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetColorAt(int index,
|
|
|
|
cef_menu_color_type_t color_type,
|
|
|
|
cef_color_t color) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::GetColor(int command_id,
|
|
|
|
cef_menu_color_type_t color_type,
|
|
|
|
cef_color_t& color) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::GetColorAt(int index,
|
|
|
|
cef_menu_color_type_t color_type,
|
|
|
|
cef_color_t& color) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetFontList(int command_id,
|
|
|
|
const CefString& font_list) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::SetFontListAt(int index,
|
|
|
|
const CefString& font_list) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSimpleMenuModelImpl::VerifyContext() {
|
|
|
|
if (base::PlatformThread::CurrentId() != supported_thread_id_) {
|
|
|
|
// This object should only be accessed from the thread that created it.
|
|
|
|
NOTREACHED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!model_) {
|
2021-04-09 01:15:51 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 01:15:51 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:49:32 +02:00
|
|
|
bool CefSimpleMenuModelImpl::ValidIndex(size_t index) {
|
|
|
|
return index < model_->GetItemCount();
|
2021-04-09 01:15:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefSimpleMenuModelImpl> CefSimpleMenuModelImpl::CreateNewSubMenu(
|
|
|
|
ui::SimpleMenuModel* model) {
|
|
|
|
bool is_owned = false;
|
|
|
|
if (!model) {
|
|
|
|
model = new ui::SimpleMenuModel(delegate_);
|
|
|
|
is_owned = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefSimpleMenuModelImpl> new_impl = new CefSimpleMenuModelImpl(
|
|
|
|
model, delegate_, state_delegate_, is_owned, /*is_submodel=*/true);
|
|
|
|
submenumap_.insert(std::make_pair(model, new_impl));
|
|
|
|
return new_impl;
|
|
|
|
}
|