2015-10-26 19:23:08 +01:00
|
|
|
diff --git content/browser/renderer_host/render_widget_host_view_base.cc content/browser/renderer_host/render_widget_host_view_base.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index 934195fd77d2..8aec87d4a448 100644
|
2015-10-26 19:23:08 +01:00
|
|
|
--- content/browser/renderer_host/render_widget_host_view_base.cc
|
|
|
|
+++ content/browser/renderer_host/render_widget_host_view_base.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -560,6 +560,14 @@ float RenderWidgetHostViewBase::GetDeviceScaleFactor() {
|
2018-03-20 21:15:08 +01:00
|
|
|
return screen_info.device_scale_factor;
|
2015-10-26 19:23:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
+void RenderWidgetHostViewBase::SetHasExternalParent(bool val) {
|
|
|
|
+ has_external_parent_ = val;
|
|
|
|
+}
|
2016-11-23 21:54:29 +01:00
|
|
|
+
|
|
|
|
+bool RenderWidgetHostViewBase::HasExternalParent() const {
|
|
|
|
+ return has_external_parent_;
|
|
|
|
+}
|
2015-10-26 19:23:08 +01:00
|
|
|
+
|
2016-01-06 20:20:54 +01:00
|
|
|
uint32_t RenderWidgetHostViewBase::RendererFrameNumber() {
|
2015-10-26 19:23:08 +01:00
|
|
|
return renderer_frame_number_;
|
|
|
|
}
|
|
|
|
diff --git content/browser/renderer_host/render_widget_host_view_base.h content/browser/renderer_host/render_widget_host_view_base.h
|
2020-08-29 00:39:23 +02:00
|
|
|
index af80b343dcd9..507618362acd 100644
|
2015-10-26 19:23:08 +01:00
|
|
|
--- content/browser/renderer_host/render_widget_host_view_base.h
|
|
|
|
+++ content/browser/renderer_host/render_widget_host_view_base.h
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -65,6 +65,7 @@ class CursorManager;
|
2018-05-18 12:45:18 +02:00
|
|
|
class MouseWheelPhaseHandler;
|
2017-02-10 23:44:11 +01:00
|
|
|
class RenderWidgetHostImpl;
|
|
|
|
class RenderWidgetHostViewBaseObserver;
|
|
|
|
+class RenderWidgetHostViewGuest;
|
|
|
|
class SyntheticGestureTarget;
|
|
|
|
class TextInputManager;
|
2017-05-31 17:33:30 +02:00
|
|
|
class TouchSelectionControllerClientManager;
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -82,6 +83,9 @@ class CONTENT_EXPORT RenderWidgetHostViewBase
|
2017-06-30 22:30:30 +02:00
|
|
|
float current_device_scale_factor() const {
|
|
|
|
return current_device_scale_factor_;
|
|
|
|
}
|
|
|
|
+ void set_current_device_scale_factor(float scale_factor) {
|
|
|
|
+ current_device_scale_factor_ = scale_factor;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
// Returns the focused RenderWidgetHost inside this |view|'s RWH.
|
|
|
|
RenderWidgetHostImpl* GetFocusedWidget() const;
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -116,6 +120,8 @@ class CONTENT_EXPORT RenderWidgetHostViewBase
|
2018-04-19 17:44:42 +02:00
|
|
|
void DisableAutoResize(const gfx::Size& new_size) override;
|
2019-06-05 16:15:45 +02:00
|
|
|
bool IsScrollOffsetAtTop() override;
|
|
|
|
float GetDeviceScaleFactor() final;
|
2015-10-26 19:23:08 +01:00
|
|
|
+ void SetHasExternalParent(bool val) override;
|
2016-11-23 21:54:29 +01:00
|
|
|
+ bool HasExternalParent() const override;
|
2017-07-27 01:19:27 +02:00
|
|
|
TouchSelectionControllerClientManager*
|
|
|
|
GetTouchSelectionControllerClientManager() override;
|
2020-03-04 01:29:39 +01:00
|
|
|
void SetRecordContentToVisibleTimeRequest(
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -439,6 +445,12 @@ class CONTENT_EXPORT RenderWidgetHostViewBase
|
2017-02-10 23:44:11 +01:00
|
|
|
// helps to position the full screen widget on the correct monitor.
|
|
|
|
virtual void InitAsFullscreen(RenderWidgetHostView* reference_host_view) = 0;
|
|
|
|
|
|
|
|
+ // Perform all the initialization steps necessary for this object to represent
|
|
|
|
+ // the platform widget owned by |guest_view| and embedded in
|
|
|
|
+ // |parent_host_view|.
|
|
|
|
+ virtual void InitAsGuest(RenderWidgetHostView* parent_host_view,
|
|
|
|
+ RenderWidgetHostViewGuest* guest_view) {}
|
|
|
|
+
|
2017-07-27 01:19:27 +02:00
|
|
|
// Sets the cursor for this view to the one associated with the specified
|
|
|
|
// cursor_type.
|
2017-02-10 23:44:11 +01:00
|
|
|
virtual void UpdateCursor(const WebCursor& cursor) = 0;
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -620,6 +632,10 @@ class CONTENT_EXPORT RenderWidgetHostViewBase
|
2020-07-08 19:23:29 +02:00
|
|
|
// specific RenderWidgetHostView.
|
|
|
|
base::Optional<DisplayFeature> display_feature_;
|
2015-10-26 19:23:08 +01:00
|
|
|
|
|
|
|
+ // True if the widget has a external parent view/window outside of the
|
|
|
|
+ // Chromium-controlled view/window hierarchy.
|
2019-10-01 15:55:16 +02:00
|
|
|
+ bool has_external_parent_ = false;
|
2015-10-26 19:23:08 +01:00
|
|
|
+
|
|
|
|
private:
|
2018-11-30 23:21:07 +01:00
|
|
|
FRIEND_TEST_ALL_PREFIXES(
|
|
|
|
BrowserSideFlingBrowserTest,
|
2016-11-23 21:54:29 +01:00
|
|
|
diff --git content/browser/renderer_host/render_widget_host_view_event_handler.cc content/browser/renderer_host/render_widget_host_view_event_handler.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index 44586cc1789a..18705ef4e6e7 100644
|
2016-11-23 21:54:29 +01:00
|
|
|
--- content/browser/renderer_host/render_widget_host_view_event_handler.cc
|
|
|
|
+++ content/browser/renderer_host/render_widget_host_view_event_handler.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -37,6 +37,10 @@
|
2018-05-20 15:51:42 +02:00
|
|
|
#include "ui/events/keycodes/dom/dom_code.h"
|
2016-11-23 21:54:29 +01:00
|
|
|
#include "ui/touch_selection/touch_selection_controller.h"
|
|
|
|
|
|
|
|
+#if defined(OS_LINUX)
|
|
|
|
+#include "ui/aura/window_tree_host.h"
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include "content/browser/frame_host/render_frame_host_impl.h"
|
2020-03-30 22:13:42 +02:00
|
|
|
#include "ui/aura/window_tree_host.h"
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -954,6 +958,14 @@ void RenderWidgetHostViewEventHandler::MoveCursorToCenter(
|
2016-11-23 21:54:29 +01:00
|
|
|
}
|
2020-08-29 00:39:23 +02:00
|
|
|
return;
|
2016-11-23 21:54:29 +01:00
|
|
|
}
|
2017-09-06 23:40:58 +02:00
|
|
|
+#endif
|
2016-11-23 21:54:29 +01:00
|
|
|
+#if defined(OS_LINUX)
|
|
|
|
+ if (host_view_->HasExternalParent() &&
|
|
|
|
+ window_ && window_->delegate()->CanFocus()) {
|
|
|
|
+ aura::WindowTreeHost* host = window_->GetHost();
|
|
|
|
+ if (host)
|
|
|
|
+ host->Show();
|
|
|
|
+ }
|
2017-09-06 23:40:58 +02:00
|
|
|
#endif
|
2020-08-29 00:39:23 +02:00
|
|
|
synthetic_move_position_ = center_in_screen;
|
|
|
|
}
|
2015-10-26 19:23:08 +01:00
|
|
|
diff --git content/public/browser/render_widget_host_view.h content/public/browser/render_widget_host_view.h
|
2020-08-29 00:39:23 +02:00
|
|
|
index a7222155f4ea..77ac1f864161 100644
|
2015-10-26 19:23:08 +01:00
|
|
|
--- content/public/browser/render_widget_host_view.h
|
|
|
|
+++ content/public/browser/render_widget_host_view.h
|
2020-04-14 21:31:00 +02:00
|
|
|
@@ -243,6 +243,14 @@ class CONTENT_EXPORT RenderWidgetHostView {
|
2018-03-20 21:15:08 +01:00
|
|
|
// This must always return the same device scale factor as GetScreenInfo.
|
2019-06-05 16:15:45 +02:00
|
|
|
virtual float GetDeviceScaleFactor() = 0;
|
2015-10-26 19:23:08 +01:00
|
|
|
|
|
|
|
+ // Set whether the widget has a external parent view/window outside of the
|
|
|
|
+ // Chromium-controlled view/window hierarchy.
|
|
|
|
+ virtual void SetHasExternalParent(bool val) = 0;
|
2016-11-23 21:54:29 +01:00
|
|
|
+
|
|
|
|
+ // Returns true if the widget has a external parent view/window outside of the
|
|
|
|
+ // Chromium-controlled view/window hierarchy.
|
|
|
|
+ virtual bool HasExternalParent() const = 0;
|
2015-10-26 19:23:08 +01:00
|
|
|
+
|
2020-08-29 00:39:23 +02:00
|
|
|
#if defined(OS_MAC)
|
2018-02-15 01:12:09 +01:00
|
|
|
// Set the view's active state (i.e., tint state of controls).
|
|
|
|
virtual void SetActive(bool active) = 0;
|
2019-09-04 17:13:32 +02:00
|
|
|
diff --git ui/base/x/x11_window.cc ui/base/x/x11_window.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index 24dbb60257bb..59e731f9ba0b 100644
|
2019-09-04 17:13:32 +02:00
|
|
|
--- ui/base/x/x11_window.cc
|
|
|
|
+++ ui/base/x/x11_window.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -272,7 +272,8 @@ void XWindow::Init(const Configuration& config) {
|
2020-07-08 19:23:29 +02:00
|
|
|
req.border_pixel = 0;
|
2019-09-04 17:13:32 +02:00
|
|
|
|
|
|
|
bounds_in_pixels_ = SanitizeBounds(config.bounds);
|
2020-07-08 19:23:29 +02:00
|
|
|
- req.parent = x_root_window_;
|
|
|
|
+ req.parent = config.parent_widget == gfx::kNullAcceleratedWidget ?
|
2020-08-29 00:39:23 +02:00
|
|
|
+ x_root_window_ : static_cast<x11::Window>(config.parent_widget);
|
2020-07-08 19:23:29 +02:00
|
|
|
req.x = bounds_in_pixels_.x();
|
|
|
|
req.y = bounds_in_pixels_.y();
|
|
|
|
req.width = bounds_in_pixels_.width();
|
2019-09-04 17:13:32 +02:00
|
|
|
diff --git ui/base/x/x11_window.h ui/base/x/x11_window.h
|
2020-08-29 00:39:23 +02:00
|
|
|
index af282d4190dd..147a2cd9ac4c 100644
|
2019-09-04 17:13:32 +02:00
|
|
|
--- ui/base/x/x11_window.h
|
|
|
|
+++ ui/base/x/x11_window.h
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -21,6 +21,7 @@
|
2019-09-04 17:13:32 +02:00
|
|
|
#include "ui/gfx/geometry/rect.h"
|
|
|
|
#include "ui/gfx/geometry/size.h"
|
|
|
|
#include "ui/gfx/geometry/size_f.h"
|
|
|
|
+#include "ui/gfx/native_widget_types.h"
|
2020-07-08 19:23:29 +02:00
|
|
|
#include "ui/gfx/x/event.h"
|
|
|
|
#include "ui/gfx/x/sync.h"
|
2019-09-04 17:13:32 +02:00
|
|
|
#include "ui/gfx/x/x11.h"
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -93,6 +94,7 @@ class COMPONENT_EXPORT(UI_BASE_X) XWindow {
|
2020-03-04 01:29:39 +01:00
|
|
|
std::string wm_class_name;
|
2019-09-04 17:13:32 +02:00
|
|
|
std::string wm_class_class;
|
|
|
|
std::string wm_role_name;
|
2019-10-01 15:55:16 +02:00
|
|
|
+ gfx::AcceleratedWidget parent_widget = gfx::kNullAcceleratedWidget;
|
2019-09-04 17:13:32 +02:00
|
|
|
};
|
|
|
|
|
2019-10-01 15:55:16 +02:00
|
|
|
XWindow();
|
|
|
|
diff --git ui/platform_window/x11/x11_window.cc ui/platform_window/x11/x11_window.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index c0ba5c3a156e..c12372d6e435 100644
|
2019-10-01 15:55:16 +02:00
|
|
|
--- ui/platform_window/x11/x11_window.cc
|
|
|
|
+++ ui/platform_window/x11/x11_window.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -93,6 +93,7 @@ ui::XWindow::Configuration ConvertInitPropertiesToXWindowConfig(
|
2020-03-04 01:29:39 +01:00
|
|
|
config.wm_class_class = properties.wm_class_class;
|
2019-10-01 15:55:16 +02:00
|
|
|
config.wm_role_name = properties.wm_role_name;
|
|
|
|
config.activatable = properties.activatable;
|
|
|
|
+ config.parent_widget = properties.parent_widget;
|
2020-02-10 18:10:17 +01:00
|
|
|
config.prefer_dark_theme = properties.prefer_dark_theme;
|
|
|
|
config.background_color = properties.background_color;
|
2019-10-01 15:55:16 +02:00
|
|
|
return config;
|
2015-10-26 19:23:08 +01:00
|
|
|
diff --git ui/views/widget/desktop_aura/desktop_screen_win.cc ui/views/widget/desktop_aura/desktop_screen_win.cc
|
2020-07-08 19:23:29 +02:00
|
|
|
index e9bb45ad238c..68f2a5ef5d0c 100644
|
2015-10-26 19:23:08 +01:00
|
|
|
--- ui/views/widget/desktop_aura/desktop_screen_win.cc
|
|
|
|
+++ ui/views/widget/desktop_aura/desktop_screen_win.cc
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -18,6 +18,8 @@ DesktopScreenWin::~DesktopScreenWin() {
|
|
|
|
}
|
2013-12-07 02:55:22 +01:00
|
|
|
|
2020-06-09 19:48:00 +02:00
|
|
|
HWND DesktopScreenWin::GetHWNDFromNativeWindow(gfx::NativeWindow window) const {
|
2013-12-07 02:55:22 +01:00
|
|
|
+ if (!window)
|
2020-06-09 19:48:00 +02:00
|
|
|
+ return nullptr;
|
2014-04-04 18:50:38 +02:00
|
|
|
aura::WindowTreeHost* host = window->GetHost();
|
2019-04-16 16:38:48 +02:00
|
|
|
return host ? host->GetAcceleratedWidget() : nullptr;
|
2013-12-07 02:55:22 +01:00
|
|
|
}
|
2019-10-01 15:55:16 +02:00
|
|
|
diff --git ui/views/widget/desktop_aura/desktop_window_tree_host_linux.cc ui/views/widget/desktop_aura/desktop_window_tree_host_linux.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index 0bdc1470708b..0f1d6960f0ea 100644
|
2019-10-01 15:55:16 +02:00
|
|
|
--- ui/views/widget/desktop_aura/desktop_window_tree_host_linux.cc
|
|
|
|
+++ ui/views/widget/desktop_aura/desktop_window_tree_host_linux.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -187,6 +187,18 @@ Widget::MoveLoopResult DesktopWindowTreeHostLinux::RunMoveLoop(
|
|
|
|
escape_behavior);
|
|
|
|
}
|
|
|
|
|
|
|
|
+gfx::Rect DesktopWindowTreeHostLinux::GetWindowBoundsInScreen() const {
|
|
|
|
+ if (!screen_bounds_.IsEmpty())
|
|
|
|
+ return screen_bounds_;
|
|
|
|
+ return DesktopWindowTreeHostPlatform::GetWindowBoundsInScreen();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+gfx::Point DesktopWindowTreeHostLinux::GetLocationOnScreenInPixels() const {
|
|
|
|
+ if (!screen_bounds_.IsEmpty())
|
|
|
|
+ return screen_bounds_.origin();
|
|
|
|
+ return DesktopWindowTreeHostPlatform::GetLocationOnScreenInPixels();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void DesktopWindowTreeHostLinux::DispatchEvent(ui::Event* event) {
|
|
|
|
// The input can be disabled and the widget marked as non-active in case of
|
|
|
|
// opened file-dialogs.
|
|
|
|
@@ -319,6 +331,8 @@ void DesktopWindowTreeHostLinux::AddAdditionalInitProperties(
|
2020-03-04 01:29:39 +01:00
|
|
|
properties->wm_class_class = params.wm_class_class;
|
|
|
|
properties->wm_role_name = params.wm_role_name;
|
2020-02-10 18:10:17 +01:00
|
|
|
|
2019-10-01 15:55:16 +02:00
|
|
|
+ properties->parent_widget = params.parent_widget;
|
2020-02-10 18:10:17 +01:00
|
|
|
+
|
|
|
|
DCHECK(!properties->x11_extension_delegate);
|
|
|
|
properties->x11_extension_delegate = this;
|
2019-10-01 15:55:16 +02:00
|
|
|
}
|
2020-08-29 00:39:23 +02:00
|
|
|
diff --git ui/views/widget/desktop_aura/desktop_window_tree_host_linux.h ui/views/widget/desktop_aura/desktop_window_tree_host_linux.h
|
|
|
|
index 4b6a5a4476a3..c9881d4a716c 100644
|
|
|
|
--- ui/views/widget/desktop_aura/desktop_window_tree_host_linux.h
|
|
|
|
+++ ui/views/widget/desktop_aura/desktop_window_tree_host_linux.h
|
|
|
|
@@ -68,6 +68,8 @@ class VIEWS_EXPORT DesktopWindowTreeHostLinux
|
|
|
|
// Disables event listening to make |dialog| modal.
|
|
|
|
base::OnceClosure DisableEventListening();
|
|
|
|
|
|
|
|
+ void set_screen_bounds(const gfx::Rect& bounds) { screen_bounds_ = bounds; }
|
|
|
|
+
|
|
|
|
protected:
|
|
|
|
// Overridden from DesktopWindowTreeHost:
|
|
|
|
void Init(const Widget::InitParams& params) override;
|
|
|
|
@@ -78,6 +80,8 @@ class VIEWS_EXPORT DesktopWindowTreeHostLinux
|
|
|
|
const gfx::Vector2d& drag_offset,
|
|
|
|
Widget::MoveLoopSource source,
|
|
|
|
Widget::MoveLoopEscapeBehavior escape_behavior) override;
|
|
|
|
+ gfx::Rect GetWindowBoundsInScreen() const override;
|
|
|
|
+ gfx::Point GetLocationOnScreenInPixels() const override;
|
|
|
|
|
|
|
|
// PlatformWindowDelegate:
|
|
|
|
void DispatchEvent(ui::Event* event) override;
|
|
|
|
@@ -134,6 +138,9 @@ class VIEWS_EXPORT DesktopWindowTreeHostLinux
|
|
|
|
// destroyed.
|
|
|
|
static std::list<gfx::AcceleratedWidget>* open_windows_;
|
|
|
|
|
|
|
|
+ // Override the screen bounds when the host is a child window.
|
|
|
|
+ gfx::Rect screen_bounds_;
|
|
|
|
+
|
|
|
|
// The display and the native X window hosting the root window.
|
|
|
|
base::WeakPtrFactory<DesktopWindowTreeHostLinux> weak_factory_{this};
|
|
|
|
|
2015-10-26 19:23:08 +01:00
|
|
|
diff --git ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index e9e61a24dc87..7687ded2a82e 100644
|
2015-10-26 19:23:08 +01:00
|
|
|
--- ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc
|
|
|
|
+++ ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -140,8 +140,12 @@ void DesktopWindowTreeHostWin::Init(const Widget::InitParams& params) {
|
2014-02-19 17:27:54 +01:00
|
|
|
native_widget_delegate_);
|
|
|
|
|
2019-04-16 16:38:48 +02:00
|
|
|
HWND parent_hwnd = nullptr;
|
2014-04-04 18:50:38 +02:00
|
|
|
- if (params.parent && params.parent->GetHost())
|
2015-10-26 19:23:08 +01:00
|
|
|
+ if (params.parent_widget) {
|
2014-02-19 17:27:54 +01:00
|
|
|
+ parent_hwnd = params.parent_widget;
|
2015-10-26 19:23:08 +01:00
|
|
|
+ has_external_parent_ = true;
|
|
|
|
+ } else if (params.parent && params.parent->GetHost()) {
|
2014-04-04 18:50:38 +02:00
|
|
|
parent_hwnd = params.parent->GetHost()->GetAcceleratedWidget();
|
2015-10-26 19:23:08 +01:00
|
|
|
+ }
|
2014-04-04 18:50:38 +02:00
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
remove_standard_frame_ = params.remove_standard_frame;
|
|
|
|
has_non_client_view_ = Widget::RequiresNonClientView(params.type);
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -915,11 +919,15 @@ void DesktopWindowTreeHostWin::HandleFrameChanged() {
|
2015-08-27 23:55:48 +02:00
|
|
|
}
|
2014-06-06 21:04:21 +02:00
|
|
|
|
|
|
|
void DesktopWindowTreeHostWin::HandleNativeFocus(HWND last_focused_window) {
|
2015-08-27 23:55:48 +02:00
|
|
|
- // TODO(beng): inform the native_widget_delegate_.
|
|
|
|
+ // See comments in CefBrowserHostImpl::PlatformSetFocus.
|
2015-10-26 19:23:08 +01:00
|
|
|
+ if (has_external_parent_ && CanActivate())
|
2015-08-27 23:55:48 +02:00
|
|
|
+ HandleActivationChanged(true);
|
2015-06-06 00:06:48 +02:00
|
|
|
}
|
2014-06-06 21:04:21 +02:00
|
|
|
|
|
|
|
void DesktopWindowTreeHostWin::HandleNativeBlur(HWND focused_window) {
|
2015-08-27 23:55:48 +02:00
|
|
|
- // TODO(beng): inform the native_widget_delegate_.
|
|
|
|
+ // See comments in CefBrowserHostImpl::PlatformSetFocus.
|
2015-10-26 19:23:08 +01:00
|
|
|
+ if (has_external_parent_ && CanActivate())
|
2015-08-27 23:55:48 +02:00
|
|
|
+ HandleActivationChanged(false);
|
2015-08-04 19:53:59 +02:00
|
|
|
}
|
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
bool DesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {
|
2015-10-26 19:23:08 +01:00
|
|
|
diff --git ui/views/widget/desktop_aura/desktop_window_tree_host_win.h ui/views/widget/desktop_aura/desktop_window_tree_host_win.h
|
2020-08-29 00:39:23 +02:00
|
|
|
index 0229c1c41502..992f89126f7f 100644
|
2015-10-26 19:23:08 +01:00
|
|
|
--- ui/views/widget/desktop_aura/desktop_window_tree_host_win.h
|
|
|
|
+++ ui/views/widget/desktop_aura/desktop_window_tree_host_win.h
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -293,6 +293,10 @@ class VIEWS_EXPORT DesktopWindowTreeHostWin
|
2016-04-27 22:38:52 +02:00
|
|
|
// True if the window should have the frame removed.
|
|
|
|
bool remove_standard_frame_;
|
2015-10-26 19:23:08 +01:00
|
|
|
|
|
|
|
+ // True if the widget has a external parent view/window outside of the
|
|
|
|
+ // Chromium-controlled view/window hierarchy.
|
2019-10-01 15:55:16 +02:00
|
|
|
+ bool has_external_parent_ = false;
|
2015-10-26 19:23:08 +01:00
|
|
|
+
|
|
|
|
// Owned by TooltipController, but we need to forward events to it so we keep
|
|
|
|
// a reference.
|
|
|
|
corewm::TooltipWin* tooltip_;
|
|
|
|
diff --git ui/views/widget/widget.cc ui/views/widget/widget.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index f02508580d16..a2be2ed6aa2d 100644
|
2015-10-26 19:23:08 +01:00
|
|
|
--- ui/views/widget/widget.cc
|
|
|
|
+++ ui/views/widget/widget.cc
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -285,7 +285,8 @@ void Widget::Init(InitParams params) {
|
2016-05-25 01:35:43 +02:00
|
|
|
params.name = params.delegate->GetContentsView()->GetClassName();
|
2014-06-12 22:28:58 +02:00
|
|
|
|
|
|
|
params.child |= (params.type == InitParams::TYPE_CONTROL);
|
|
|
|
- is_top_level_ = !params.child;
|
2019-10-01 15:55:16 +02:00
|
|
|
+ is_top_level_ = !params.child ||
|
|
|
|
+ params.parent_widget != gfx::kNullAcceleratedWidget;
|
2014-06-12 22:28:58 +02:00
|
|
|
|
2020-02-10 18:10:17 +01:00
|
|
|
if (params.opacity == views::Widget::InitParams::WindowOpacity::kInferred &&
|
2019-01-17 10:56:52 +01:00
|
|
|
params.type != views::Widget::InitParams::TYPE_WINDOW) {
|
2020-06-09 19:48:00 +02:00
|
|
|
@@ -369,7 +370,12 @@ void Widget::Init(InitParams params) {
|
2016-05-25 01:35:43 +02:00
|
|
|
}
|
2019-10-01 15:55:16 +02:00
|
|
|
} else if (delegate) {
|
|
|
|
SetContentsView(delegate->GetContentsView());
|
|
|
|
- SetInitialBoundsForFramelessWindow(bounds);
|
|
|
|
+ if (params.parent_widget != gfx::kNullAcceleratedWidget) {
|
2014-03-12 15:36:18 +01:00
|
|
|
+ // Set the bounds directly instead of applying an inset.
|
2019-10-01 15:55:16 +02:00
|
|
|
+ SetBounds(bounds);
|
2014-03-12 15:36:18 +01:00
|
|
|
+ } else {
|
2019-10-01 15:55:16 +02:00
|
|
|
+ SetInitialBoundsForFramelessWindow(bounds);
|
2014-03-12 15:36:18 +01:00
|
|
|
+ }
|
|
|
|
}
|
2020-03-30 22:13:42 +02:00
|
|
|
|
|
|
|
observer_manager_.Add(GetNativeTheme());
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -1153,10 +1159,16 @@ void Widget::OnNativeWidgetDestroyed() {
|
2017-08-25 23:41:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size Widget::GetMinimumSize() const {
|
|
|
|
+ gfx::Size size;
|
|
|
|
+ if (widget_delegate_->MaybeGetMinimumSize(&size))
|
|
|
|
+ return size;
|
|
|
|
return non_client_view_ ? non_client_view_->GetMinimumSize() : gfx::Size();
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size Widget::GetMaximumSize() const {
|
|
|
|
+ gfx::Size size;
|
|
|
|
+ if (widget_delegate_->MaybeGetMaximumSize(&size))
|
|
|
|
+ return size;
|
|
|
|
return non_client_view_ ? non_client_view_->GetMaximumSize() : gfx::Size();
|
|
|
|
}
|
|
|
|
|
2015-10-26 19:23:08 +01:00
|
|
|
diff --git ui/views/widget/widget.h ui/views/widget/widget.h
|
2020-08-29 00:39:23 +02:00
|
|
|
index 032f77d5738a..085c4df9fa8c 100644
|
2015-10-26 19:23:08 +01:00
|
|
|
--- ui/views/widget/widget.h
|
|
|
|
+++ ui/views/widget/widget.h
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -315,6 +315,8 @@ class VIEWS_EXPORT Widget : public internal::NativeWidgetDelegate,
|
2020-04-14 21:31:00 +02:00
|
|
|
// the concept with bubble anchoring a la BubbleDialogDelegateView.
|
2019-10-01 15:55:16 +02:00
|
|
|
gfx::NativeView parent = nullptr;
|
|
|
|
|
|
|
|
+ gfx::AcceleratedWidget parent_widget = gfx::kNullAcceleratedWidget;
|
|
|
|
+
|
2013-12-07 02:55:22 +01:00
|
|
|
// Specifies the initial bounds of the Widget. Default is empty, which means
|
2017-03-03 23:37:23 +01:00
|
|
|
// the NativeWidget may specify a default size. If the parent is specified,
|
|
|
|
// |bounds| is in the parent's coordinate system. If the parent is not
|
2017-08-25 23:41:30 +02:00
|
|
|
diff --git ui/views/widget/widget_delegate.h ui/views/widget/widget_delegate.h
|
2020-08-29 00:39:23 +02:00
|
|
|
index fdf697d54693..d21effca6422 100644
|
2017-08-25 23:41:30 +02:00
|
|
|
--- ui/views/widget/widget_delegate.h
|
|
|
|
+++ ui/views/widget/widget_delegate.h
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -301,6 +301,10 @@ class VIEWS_EXPORT WidgetDelegate {
|
2020-07-08 19:23:29 +02:00
|
|
|
// Returns true if the title text should be centered.
|
|
|
|
bool ShouldCenterWindowTitleText() const;
|
2017-08-25 23:41:30 +02:00
|
|
|
|
|
|
|
+ // CEF supports override of min/max size values.
|
|
|
|
+ virtual bool MaybeGetMinimumSize(gfx::Size* size) const { return false; }
|
|
|
|
+ virtual bool MaybeGetMaximumSize(gfx::Size* size) const { return false; }
|
|
|
|
+
|
2020-07-08 19:23:29 +02:00
|
|
|
bool focus_traverses_out() const { return params_.focus_traverses_out; }
|
2017-08-25 23:41:30 +02:00
|
|
|
|
2020-07-08 19:23:29 +02:00
|
|
|
private:
|
2017-08-04 00:55:19 +02:00
|
|
|
diff --git ui/views/widget/widget_hwnd_utils.cc ui/views/widget/widget_hwnd_utils.cc
|
2020-07-08 19:23:29 +02:00
|
|
|
index 89f5b62f95df..8f6971929a12 100644
|
2017-08-04 00:55:19 +02:00
|
|
|
--- ui/views/widget/widget_hwnd_utils.cc
|
|
|
|
+++ ui/views/widget/widget_hwnd_utils.cc
|
2019-11-12 17:11:44 +01:00
|
|
|
@@ -67,7 +67,7 @@ void CalculateWindowStylesFromInitParams(
|
2017-08-04 00:55:19 +02:00
|
|
|
if (!widget_delegate->CanResize())
|
|
|
|
*style &= ~(WS_THICKFRAME | WS_MAXIMIZEBOX);
|
|
|
|
if (params.remove_standard_frame)
|
|
|
|
- *style &= ~(WS_MINIMIZEBOX | WS_MAXIMIZEBOX);
|
|
|
|
+ *style &= ~(WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_CAPTION | WS_SYSMENU);
|
|
|
|
|
|
|
|
if (native_widget_delegate->IsDialogBox()) {
|
|
|
|
*style |= DS_MODALFRAME;
|
2016-01-19 21:09:01 +01:00
|
|
|
diff --git ui/views/win/hwnd_message_handler.cc ui/views/win/hwnd_message_handler.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index 5e8d267d868d..414e20ad8203 100644
|
2016-01-19 21:09:01 +01:00
|
|
|
--- ui/views/win/hwnd_message_handler.cc
|
|
|
|
+++ ui/views/win/hwnd_message_handler.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -3071,10 +3071,13 @@ LRESULT HWNDMessageHandler::HandleMouseEventInternal(UINT message,
|
2016-01-19 21:09:01 +01:00
|
|
|
} else if (event.type() == ui::ET_MOUSEWHEEL) {
|
2018-04-19 17:44:42 +02:00
|
|
|
ui::MouseWheelEvent mouse_wheel_event(msg);
|
2016-01-19 21:09:01 +01:00
|
|
|
// Reroute the mouse wheel to the window under the pointer if applicable.
|
|
|
|
- return (ui::RerouteMouseWheel(hwnd(), w_param, l_param) ||
|
2018-04-19 17:44:42 +02:00
|
|
|
- delegate_->HandleMouseEvent(&mouse_wheel_event))
|
|
|
|
- ? 0
|
|
|
|
- : 1;
|
2016-01-19 21:09:01 +01:00
|
|
|
+ if (ui::RerouteMouseWheel(hwnd(), w_param, l_param) ||
|
2018-04-19 17:44:42 +02:00
|
|
|
+ delegate_->HandleMouseEvent(&mouse_wheel_event)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
+ SetMsgHandled(TRUE);
|
|
|
|
+ return 0;
|
2018-04-19 17:44:42 +02:00
|
|
|
+ } else {
|
|
|
|
+ return 1;
|
2016-01-19 21:09:01 +01:00
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
2019-11-12 17:11:44 +01:00
|
|
|
// Suppress |ET_MOUSE_MOVED| and |ET_MOUSE_DRAGGED| events from WM_MOUSE*
|