#include "ui/views/views_delegate.h"
#include <utility>
#include "base/command_line.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "ui/views/widget/native_widget_private.h"
#if defined(USE_AURA)
#include "ui/views/touchui/touch_selection_menu_runner_views.h"
#endif
namespace views {
namespace {
ViewsDelegate* views_delegate = …;
}
ViewsDelegate::ViewsDelegate() { … }
ViewsDelegate::~ViewsDelegate() { … }
ViewsDelegate* ViewsDelegate::GetInstance() { … }
void ViewsDelegate::SaveWindowPlacement(const Widget* widget,
const std::string& window_name,
const gfx::Rect& bounds,
ui::WindowShowState show_state) { … }
bool ViewsDelegate::GetSavedWindowPlacement(
const Widget* widget,
const std::string& window_name,
gfx::Rect* bounds,
ui::WindowShowState* show_state) const { … }
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) { … }
bool ViewsDelegate::ShouldCloseMenuIfMouseCaptureLost() const { … }
#if BUILDFLAG(IS_CHROMEOS_LACROS)
bool ViewsDelegate::ShouldWindowHaveRoundedCorners(
const gfx::NativeWindow window) const {
return false;
}
#endif
#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 { … }
#endif
std::unique_ptr<NonClientFrameView>
ViewsDelegate::CreateDefaultNonClientFrameView(Widget* widget) { … }
bool ViewsDelegate::IsShuttingDown() const { … }
void ViewsDelegate::AddRef() { … }
void ViewsDelegate::ReleaseRef() { … }
void ViewsDelegate::OnBeforeWidgetInit(
Widget::InitParams* params,
internal::NativeWidgetDelegate* delegate) { … }
bool ViewsDelegate::WindowManagerProvidesTitleBar(bool maximized) { … }
#if BUILDFLAG(IS_MAC)
ui::ContextFactory* ViewsDelegate::GetContextFactory() {
return nullptr;
}
#endif
std::string ViewsDelegate::GetApplicationName() { … }
#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) { … }
#endif
}