Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: components/exo/shell_surface.cc

Issue 2686533004: Use pixel coordinates for shadow underlay bounds (Closed)
Patch Set: remove unnecessary changes Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/exo/shell_surface.h ('k') | components/exo/shell_surface_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/exo/shell_surface.cc
diff --git a/components/exo/shell_surface.cc b/components/exo/shell_surface.cc
index 40fd30b14503b90eabadc448c3f7b96f2369cece..b4f27fa828e643af75e1f3e6b7a9f577a5a4b8a0 100644
--- a/components/exo/shell_surface.cc
+++ b/components/exo/shell_surface.cc
@@ -592,24 +592,34 @@ void ShellSurface::SetGeometry(const gfx::Rect& geometry) {
pending_geometry_ = geometry;
}
-void ShellSurface::SetRectangularShadow(bool enabled) {
- TRACE_EVENT1("exo", "ShellSurface::SetRectangularShadow", "enabled", enabled);
-
+void ShellSurface::SetRectangularShadowEnabled(bool enabled) {
+ TRACE_EVENT1("exo", "ShellSurface::SetRectangularShadowEnabled", "enabled",
+ enabled);
+ shadow_underlay_in_surface_ = false;
shadow_enabled_ = enabled;
}
-void ShellSurface::SetRectangularShadowContentBounds(
+void ShellSurface::SetRectangularShadow_DEPRECATED(
const gfx::Rect& content_bounds) {
- TRACE_EVENT1("exo", "ShellSurface::SetRectangularShadowContentBounds",
+ TRACE_EVENT1("exo", "ShellSurface::SetRectangularShadow_DEPRECATED",
"content_bounds", content_bounds.ToString());
+ shadow_underlay_in_surface_ = false;
+ shadow_content_bounds_ = content_bounds;
+ shadow_enabled_ = !content_bounds.IsEmpty();
+}
+void ShellSurface::SetRectangularSurfaceShadow(
+ const gfx::Rect& content_bounds) {
+ TRACE_EVENT1("exo", "ShellSurface::SetRectangularSurfaceShadow",
+ "content_bounds", content_bounds.ToString());
+ shadow_underlay_in_surface_ = true;
shadow_content_bounds_ = content_bounds;
+ shadow_enabled_ = !content_bounds.IsEmpty();
}
void ShellSurface::SetRectangularShadowBackgroundOpacity(float opacity) {
TRACE_EVENT1("exo", "ShellSurface::SetRectangularShadowBackgroundOpacity",
"opacity", opacity);
-
shadow_background_opacity_ = opacity;
}
@@ -1414,10 +1424,18 @@ void ShellSurface::UpdateShadow() {
shadow_underlay_->Hide();
} else {
wm::SetShadowElevation(window, wm::ShadowElevation::MEDIUM);
-
- gfx::Rect shadow_content_bounds = shadow_content_bounds_;
- if (shadow_content_bounds.IsEmpty())
- shadow_content_bounds = window->bounds();
+ gfx::Rect shadow_content_bounds =
+ gfx::ScaleToEnclosedRect(shadow_content_bounds_, 1.f / scale_);
+ gfx::Rect shadow_underlay_bounds = shadow_content_bounds_;
+ if (shadow_underlay_bounds.IsEmpty())
+ shadow_underlay_bounds = gfx::Rect(surface_->window()->bounds().size());
+
+ if (!shadow_underlay_in_surface_) {
+ shadow_content_bounds = shadow_content_bounds_;
+ if (shadow_content_bounds.IsEmpty()) {
+ shadow_content_bounds = window->bounds();
+ }
+ }
// TODO(oshima): Adjust the coordinates from client screen to
// chromeos screen when multi displays are supported.
@@ -1440,8 +1458,13 @@ void ShellSurface::UpdateShadow() {
shadow_underlay_->Init(ui::LAYER_SOLID_COLOR);
shadow_underlay_->layer()->SetColor(SK_ColorBLACK);
DCHECK(shadow_underlay_->layer()->fills_bounds_opaquely());
- window->AddChild(shadow_underlay_);
- window->StackChildAtBottom(shadow_underlay_);
+ if (shadow_underlay_in_surface_) {
+ surface_->window()->AddChild(shadow_underlay_);
+ surface_->window()->StackChildAtBottom(shadow_underlay_);
+ } else {
+ window->AddChild(shadow_underlay_);
+ window->StackChildAtBottom(shadow_underlay_);
+ }
}
bool underlay_capture_events =
@@ -1459,14 +1482,19 @@ void ShellSurface::UpdateShadow() {
if ((widget_->IsFullscreen() || underlay_capture_events) &&
ash::wm::GetWindowState(window)->allow_set_bounds_in_maximized() &&
window->layer()->GetTargetTransform().IsIdentity()) {
- gfx::Point origin;
- origin -= window->bounds().origin().OffsetFromOrigin();
- shadow_bounds.set_origin(origin);
- shadow_bounds.set_size(window->parent()->bounds().size());
+ if (shadow_underlay_in_surface_) {
+ shadow_underlay_bounds = gfx::Rect(surface_->window()->bounds().size());
+ } else {
+ gfx::Point origin;
+ origin -= window->bounds().origin().OffsetFromOrigin();
+ shadow_bounds.set_origin(origin);
+ shadow_bounds.set_size(window->parent()->bounds().size());
+ }
shadow_underlay_opacity = 1.0f;
}
- gfx::Rect shadow_underlay_bounds = shadow_bounds;
+ if (!shadow_underlay_in_surface_)
+ shadow_underlay_bounds = shadow_bounds;
// Constrain the underlay bounds to the client area in case shell surface
// frame is enabled.
@@ -1498,6 +1526,9 @@ void ShellSurface::UpdateShadow() {
shadow_overlay_->Init(ui::LAYER_NOT_DRAWN);
shadow_overlay_->layer()->Add(shadow->layer());
window->AddChild(shadow_overlay_);
+ if (shadow_underlay_in_surface_) {
+ window->StackChildBelow(shadow_overlay_, surface_->window());
+ }
shadow_overlay_->Show();
}
shadow_overlay_->SetBounds(shadow_bounds);
« no previous file with comments | « components/exo/shell_surface.h ('k') | components/exo/shell_surface_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698