diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/ui/views/widget/widget_delegate.cc | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/ui/views/widget/widget_delegate.cc')
-rw-r--r-- | chromium/ui/views/widget/widget_delegate.cc | 47 |
1 files changed, 44 insertions, 3 deletions
diff --git a/chromium/ui/views/widget/widget_delegate.cc b/chromium/ui/views/widget/widget_delegate.cc index 4ba80f860b3..6916ad1c393 100644 --- a/chromium/ui/views/widget/widget_delegate.cc +++ b/chromium/ui/views/widget/widget_delegate.cc @@ -7,6 +7,7 @@ #include "base/check.h" #include "base/strings/utf_string_conversions.h" #include "ui/accessibility/ax_enums.mojom.h" +#include "ui/base/l10n/l10n_util.h" #include "ui/display/display.h" #include "ui/display/screen.h" #include "ui/gfx/image/image_skia.h" @@ -46,7 +47,7 @@ View* WidgetDelegate::GetInitiallyFocusedView() { return nullptr; } -BubbleDialogDelegateView* WidgetDelegate::AsBubbleDialogDelegate() { +BubbleDialogDelegate* WidgetDelegate::AsBubbleDialogDelegate() { return nullptr; } @@ -75,11 +76,12 @@ ui::ModalType WidgetDelegate::GetModalType() const { } ax::mojom::Role WidgetDelegate::GetAccessibleWindowRole() { - return ax::mojom::Role::kWindow; + return params_.accessible_role; } base::string16 WidgetDelegate::GetAccessibleWindowTitle() const { - return GetWindowTitle(); + return params_.accessible_title.empty() ? GetWindowTitle() + : params_.accessible_title; } base::string16 WidgetDelegate::GetWindowTitle() const { @@ -152,6 +154,19 @@ bool WidgetDelegate::ShouldRestoreWindowSize() const { return true; } +void WidgetDelegate::WidgetInitializing(Widget* widget) { + widget_ = widget; + OnWidgetInitializing(); +} + +void WidgetDelegate::WidgetInitialized() { + OnWidgetInitialized(); +} + +void WidgetDelegate::WidgetDestroying() { + widget_ = nullptr; +} + void WidgetDelegate::WindowWillClose() { // TODO(ellyjones): For this and the other callback methods, establish whether // any other code calls these methods. If not, DCHECK here and below that @@ -170,6 +185,14 @@ void WidgetDelegate::DeleteDelegate() { std::move(callback).Run(); } +Widget* WidgetDelegate::GetWidget() { + return widget_; +} + +const Widget* WidgetDelegate::GetWidget() const { + return widget_; +} + View* WidgetDelegate::GetContentsView() { if (!default_contents_view_) default_contents_view_ = new View; @@ -206,6 +229,14 @@ bool WidgetDelegate::ShouldDescendIntoChildForEventHandling( return true; } +void WidgetDelegate::SetAccessibleRole(ax::mojom::Role role) { + params_.accessible_role = role; +} + +void WidgetDelegate::SetAccessibleTitle(base::string16 title) { + params_.accessible_title = std::move(title); +} + void WidgetDelegate::SetCanMaximize(bool can_maximize) { params_.can_maximize = can_maximize; } @@ -246,12 +277,22 @@ void WidgetDelegate::SetTitle(const base::string16& title) { GetWidget()->UpdateWindowTitle(); } +void WidgetDelegate::SetTitle(int title_message_id) { + SetTitle(l10n_util::GetStringUTF16(title_message_id)); +} + #if defined(USE_AURA) void WidgetDelegate::SetCenterTitle(bool center_title) { params_.center_title = center_title; } #endif +void WidgetDelegate::SetHasWindowSizeControls(bool has_controls) { + SetCanMaximize(has_controls); + SetCanMinimize(has_controls); + SetCanResize(has_controls); +} + void WidgetDelegate::RegisterWindowWillCloseCallback( base::OnceClosure callback) { window_will_close_callbacks_.emplace_back(std::move(callback)); |