1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/extensions/extension_action_platform_delegate_views.h"
#include <utility>
#include "base/check.h"
#include "base/memory/ptr_util.h"
#include "chrome/browser/extensions/extension_view_host.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/extensions/accelerator_priority.h"
#include "chrome/browser/ui/extensions/extension_action_view_controller.h"
#include "chrome/browser/ui/views/extensions/extension_popup.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/browser/ui/views/toolbar/toolbar_action_view_delegate_views.h"
#include "chrome/browser/ui/views/toolbar/toolbar_view.h"
#include "extensions/browser/extension_action.h"
#include "extensions/common/api/extension_action/action_info.h"
#include "extensions/common/command.h"
#include "extensions/common/extension.h"
#include "extensions/common/manifest_constants.h"
#include "ui/views/view.h"
using extensions::ActionInfo;
// static
std::unique_ptr<ExtensionActionPlatformDelegate>
ExtensionActionPlatformDelegate::Create(
ExtensionActionViewController* controller) {
return std::make_unique<ExtensionActionPlatformDelegateViews>(controller);
}
ExtensionActionPlatformDelegateViews::ExtensionActionPlatformDelegateViews(
ExtensionActionViewController* controller)
: controller_(controller) {
command_service_observation_.Observe(
extensions::CommandService::Get(controller_->browser()->profile()));
}
ExtensionActionPlatformDelegateViews::~ExtensionActionPlatformDelegateViews() {
// Should have already unregistered.
DCHECK(!action_keybinding_);
}
void ExtensionActionPlatformDelegateViews::RegisterCommand() {
// If we've already registered, do nothing.
if (action_keybinding_) {
return;
}
extensions::Command extension_command;
views::FocusManager* focus_manager =
GetDelegateViews()->GetFocusManagerForAccelerator();
if (focus_manager && controller_->GetExtensionCommand(&extension_command)) {
action_keybinding_ =
std::make_unique<ui::Accelerator>(extension_command.accelerator());
focus_manager->RegisterAccelerator(*action_keybinding_,
kExtensionAcceleratorPriority, this);
}
}
void ExtensionActionPlatformDelegateViews::UnregisterCommand() {
// If we've already unregistered, do nothing.
if (!action_keybinding_) {
return;
}
views::FocusManager* focus_manager =
GetDelegateViews()->GetFocusManagerForAccelerator();
if (focus_manager) {
focus_manager->UnregisterAccelerator(*action_keybinding_, this);
action_keybinding_.reset();
}
}
void ExtensionActionPlatformDelegateViews::ShowPopup(
std::unique_ptr<extensions::ExtensionViewHost> host,
PopupShowAction show_action,
ShowPopupCallback callback) {
// TOP_RIGHT is correct for both RTL and LTR, because the views platform
// performs the flipping in RTL cases.
views::BubbleBorder::Arrow arrow = views::BubbleBorder::TOP_RIGHT;
ExtensionPopup::ShowPopup(controller_->browser(), std::move(host),
GetDelegateViews()->GetReferenceButtonForPopup(),
arrow, show_action, std::move(callback));
}
void ExtensionActionPlatformDelegateViews::OnExtensionCommandAdded(
const std::string& extension_id,
const extensions::Command& command) {
if (extension_id != controller_->extension()->id()) {
return; // Not this action's extension.
}
if (!extensions::Command::IsActionRelatedCommand(command.command_name())) {
return;
}
RegisterCommand();
}
void ExtensionActionPlatformDelegateViews::OnExtensionCommandRemoved(
const std::string& extension_id,
const extensions::Command& command) {
if (extension_id != controller_->extension()->id()) {
return;
}
if (!extensions::Command::IsActionRelatedCommand(command.command_name())) {
return;
}
extensions::Command extension_command;
if (controller_->GetExtensionCommand(&extension_command)) {
return; // Command has not been removed.
}
UnregisterCommand();
}
void ExtensionActionPlatformDelegateViews::OnCommandServiceDestroying() {
DCHECK(command_service_observation_.IsObserving());
command_service_observation_.Reset();
}
bool ExtensionActionPlatformDelegateViews::AcceleratorPressed(
const ui::Accelerator& accelerator) {
DCHECK(controller_->CanHandleAccelerators());
if (controller_->IsShowingPopup()) {
controller_->HidePopup();
} else {
controller_->ExecuteUserAction(
ToolbarActionViewController::InvocationSource::kCommand);
}
return true;
}
bool ExtensionActionPlatformDelegateViews::CanHandleAccelerators() const {
return controller_->CanHandleAccelerators();
}
ToolbarActionViewDelegateViews*
ExtensionActionPlatformDelegateViews::GetDelegateViews() const {
return static_cast<ToolbarActionViewDelegateViews*>(
controller_->view_delegate());
}
|