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

Unified Diff: ash/wm/workspace/workspace_layout_manager.cc

Issue 68033003: Undocks window first before side-snapping bounds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undocks window first before side-snapping bounds (comments) Created 7 years, 1 month 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
Index: ash/wm/workspace/workspace_layout_manager.cc
diff --git a/ash/wm/workspace/workspace_layout_manager.cc b/ash/wm/workspace/workspace_layout_manager.cc
index a0ae8cc370528d126b15e364b1b26fffd34623f6..9d91808d428555be7c9b591c4454c37a13e82273 100644
--- a/ash/wm/workspace/workspace_layout_manager.cc
+++ b/ash/wm/workspace/workspace_layout_manager.cc
@@ -20,6 +20,7 @@
#include "ui/aura/window.h"
#include "ui/aura/window_observer.h"
#include "ui/base/ui_base_types.h"
+#include "ui/compositor/scoped_layer_animation_settings.h"
#include "ui/events/event.h"
#include "ui/views/corewm/window_util.h"
@@ -35,6 +36,9 @@ namespace {
// must be visible when the window is added to the workspace.
const float kMinimumPercentOnScreenArea = 0.3f;
+// Duration of slide animation used when a snapped window is adjusted.
+const int kSlideDurationMs = 120;
pkotwicz 2013/11/27 06:21:57 How about kBoundsChangeSlideDurationMs
varkha 2013/11/27 06:38:54 Done.
+
void MoveToDisplayForRestore(wm::WindowState* window_state) {
if (!window_state->HasRestoreBounds())
return;
@@ -117,20 +121,25 @@ void WorkspaceLayoutManager::OnChildWindowVisibilityChanged(Window* child,
void WorkspaceLayoutManager::SetChildBounds(
Window* child,
const gfx::Rect& requested_bounds) {
- if (!wm::GetWindowState(child)->tracked_by_workspace()) {
+ wm::WindowState* window_state = wm::GetWindowState(child);
+ if (!window_state->tracked_by_workspace()) {
SetChildBoundsDirect(child, requested_bounds);
return;
}
gfx::Rect child_bounds(requested_bounds);
// Some windows rely on this to set their initial bounds.
- if (!SetMaximizedOrFullscreenBounds(wm::GetWindowState(child))) {
+ if (!SetMaximizedOrFullscreenBounds(window_state)) {
// Non-maximized/full-screen windows have their size constrained to the
// work-area.
child_bounds.set_width(std::min(work_area_in_parent_.width(),
child_bounds.width()));
child_bounds.set_height(
std::min(work_area_in_parent_.height(), child_bounds.height()));
- SetChildBoundsDirect(child, child_bounds);
+ AdjustSnappedBounds(window_state, &child_bounds);
+ if (window_state->IsSnapped())
pkotwicz 2013/11/27 06:21:57 Can you move AdjustSnappedBounds() within the IsSn
varkha 2013/11/27 06:38:54 Done.
+ SetChildBoundsAnimated(child, child_bounds);
+ else
+ SetChildBoundsDirect(child, child_bounds);
}
UpdateDesktopVisibility();
}
@@ -249,8 +258,9 @@ void WorkspaceLayoutManager::AdjustWindowBoundsForWorkAreaChange(
work_area_in_parent_, &bounds);
break;
}
+ AdjustSnappedBounds(window_state, &bounds);
if (window_state->window()->bounds() != bounds)
- window_state->window()->SetBounds(bounds);
+ SetChildBoundsAnimated(window_state->window(), bounds);
}
void WorkspaceLayoutManager::AdjustWindowBoundsWhenAdded(
@@ -281,6 +291,7 @@ void WorkspaceLayoutManager::AdjustWindowBoundsWhenAdded(
ash::wm::AdjustBoundsToEnsureWindowVisibility(
display_area, min_width, min_height, &bounds);
+ AdjustSnappedBounds(window_state, &bounds);
if (window->bounds() != bounds)
window->SetBounds(bounds);
}
@@ -296,6 +307,7 @@ void WorkspaceLayoutManager::UpdateBoundsFromShowState(
aura::Window* window = window_state->window();
// See comment in SetMaximizedOrFullscreenBounds() as to why we use parent in
// these calculation.
+ // TODO(varkha): Change the switch statement below to use wm::WindowShowType.
switch (window_state->GetShowState()) {
case ui::SHOW_STATE_DEFAULT:
case ui::SHOW_STATE_NORMAL: {
@@ -316,14 +328,20 @@ void WorkspaceLayoutManager::UpdateBoundsFromShowState(
if (bounds_in_parent == window->bounds())
bounds_in_parent.SetRect(0, 0, 0, 0);
}
+ AdjustSnappedBounds(window_state, &bounds_in_parent);
if (!bounds_in_parent.IsEmpty()) {
gfx::Rect new_bounds = BaseLayoutManager::BoundsWithScreenEdgeVisible(
window->parent()->parent(),
bounds_in_parent);
- if (last_show_state == ui::SHOW_STATE_MINIMIZED)
+ if ((last_show_state == ui::SHOW_STATE_DEFAULT ||
+ last_show_state == ui::SHOW_STATE_NORMAL) &&
+ window_state->IsSnapped()) {
+ SetChildBoundsAnimated(window, new_bounds);
+ } else if (last_show_state == ui::SHOW_STATE_MINIMIZED) {
SetChildBoundsDirect(window, new_bounds);
- else
+ } else {
CrossFadeToBounds(window, new_bounds);
+ }
}
window_state->ClearRestoreBounds();
break;
@@ -385,5 +403,34 @@ bool WorkspaceLayoutManager::SetMaximizedOrFullscreenBounds(
return false;
}
+void WorkspaceLayoutManager::AdjustSnappedBounds(wm::WindowState* window_state,
+ gfx::Rect* bounds) {
+ if (!window_state->tracked_by_workspace() ||
+ !window_state->IsNormalShowState() ||
+ !window_state->IsSnapped()) {
+ return;
+ }
+ gfx::Rect maximized_bounds = ScreenAsh::GetMaximizedWindowBoundsInParent(
+ window_state->window()->parent()->parent());
+ if (window_state->window_show_type() == wm::SHOW_TYPE_LEFT_SNAPPED)
+ bounds->set_x(maximized_bounds.x());
+ else if (window_state->window_show_type() == wm::SHOW_TYPE_RIGHT_SNAPPED)
+ bounds->set_x(maximized_bounds.right() - bounds->width());
+ bounds->set_y(maximized_bounds.y());
+ // TODO(varkha): Set width to 50% here for snapped windows.
+ bounds->set_height(maximized_bounds.height());
+}
+
+void WorkspaceLayoutManager::SetChildBoundsAnimated(Window* child,
+ const gfx::Rect& bounds) {
+ ui::Layer* layer = child->layer();
+ ui::ScopedLayerAnimationSettings slide_settings(layer->GetAnimator());
+ slide_settings.SetPreemptionStrategy(
+ ui::LayerAnimator::IMMEDIATELY_ANIMATE_TO_NEW_TARGET);
+ slide_settings.SetTransitionDuration(
+ base::TimeDelta::FromMilliseconds(kSlideDurationMs));
+ SetChildBoundsDirect(child, bounds);
+}
+
} // namespace internal
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698