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 153 154 155
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/views_delegate.h"
#include <utility>
#include "base/command_line.h"
#include "build/build_config.h"
#include "ui/accessibility/accessibility_features.h"
#include "ui/base/mojom/window_show_state.mojom.h"
#include "ui/views/widget/native_widget_private.h"
#if defined(USE_AURA)
#include "ui/views/accessibility/tree/browser_views_ax_manager.h"
#include "ui/views/touchui/touch_selection_menu_runner_views.h"
#endif
namespace views {
namespace {
ViewsDelegate* views_delegate = nullptr;
} // namespace
ViewsDelegate::ViewsDelegate() {
DCHECK(!views_delegate);
views_delegate = this;
#if BUILDFLAG(ENABLE_DESKTOP_AURA) || BUILDFLAG(IS_CHROMEOS)
// TouchSelectionMenuRunnerViews is not supported on Mac or Cast.
// It is also not used on Ash (the ChromeViewsDelegate() for Ash will
// immediately replace this). But tests running without the Chrome layer
// will not get the replacement.
touch_selection_menu_runner_ =
std::make_unique<TouchSelectionMenuRunnerViews>();
#endif
}
ViewsDelegate::~ViewsDelegate() {
DCHECK_EQ(this, views_delegate);
views_delegate = nullptr;
}
ViewsDelegate* ViewsDelegate::GetInstance() {
return views_delegate;
}
void ViewsDelegate::SaveWindowPlacement(const Widget* widget,
const std::string& window_name,
const gfx::Rect& bounds,
ui::mojom::WindowShowState show_state) {
}
bool ViewsDelegate::GetSavedWindowPlacement(
const Widget* widget,
const std::string& window_name,
gfx::Rect* bounds,
ui::mojom::WindowShowState* show_state) const {
return false;
}
void ViewsDelegate::NotifyMenuItemFocused(const std::u16string& menu_name,
const std::u16string& menu_item_name,
int item_index,
int item_count,
bool has_submenu) {}
ViewsDelegate::ProcessMenuAcceleratorResult
ViewsDelegate::ProcessAcceleratorWhileMenuShowing(
const ui::Accelerator& accelerator) {
return ProcessMenuAcceleratorResult::LEAVE_MENU_OPEN;
}
bool ViewsDelegate::ShouldCloseMenuIfMouseCaptureLost() const {
return true;
}
#if BUILDFLAG(IS_WIN)
HICON ViewsDelegate::GetDefaultWindowIcon() const {
return nullptr;
}
HICON ViewsDelegate::GetSmallWindowIcon() const {
return nullptr;
}
bool ViewsDelegate::IsWindowInMetro(gfx::NativeWindow window) const {
return false;
}
#elif BUILDFLAG(ENABLE_DESKTOP_AURA) && \
(BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS))
gfx::ImageSkia* ViewsDelegate::GetDefaultWindowIcon() const {
return nullptr;
}
#endif
std::unique_ptr<NonClientFrameView>
ViewsDelegate::CreateDefaultNonClientFrameView(Widget* widget) {
return nullptr;
}
bool ViewsDelegate::IsShuttingDown() const {
return false;
}
void ViewsDelegate::AddRef() {}
void ViewsDelegate::ReleaseRef() {}
void ViewsDelegate::OnBeforeWidgetInit(
Widget::InitParams* params,
internal::NativeWidgetDelegate* delegate) {}
bool ViewsDelegate::WindowManagerProvidesTitleBar(bool maximized) {
return false;
}
void ViewsDelegate::InitializeViewsAXManager() {
#if BUILDFLAG(ENABLE_DESKTOP_AURA)
if (::features::IsAccessibilityTreeForViewsEnabled() &&
!browser_views_ax_manager_handle_) {
browser_views_ax_manager_handle_ = views::BrowserViewsAXManager::Create();
}
#endif
}
#if BUILDFLAG(IS_MAC)
ui::ContextFactory* ViewsDelegate::GetContextFactory() {
return nullptr;
}
#endif
std::string ViewsDelegate::GetApplicationName() {
base::FilePath program = base::CommandLine::ForCurrentProcess()->GetProgram();
return program.BaseName().AsUTF8Unsafe();
}
#if BUILDFLAG(IS_WIN)
int ViewsDelegate::GetAppbarAutohideEdges(HMONITOR monitor,
base::OnceClosure callback) {
return EDGE_BOTTOM;
}
#endif
#if defined(USE_AURA)
void ViewsDelegate::SetTouchSelectionMenuRunner(
std::unique_ptr<TouchSelectionMenuRunnerViews> menu_runner) {
touch_selection_menu_runner_ = std::move(menu_runner);
}
#endif
} // namespace views
|