#include "ash/wm/client_controlled_state.h"
#include "ash/public/cpp/shell_window_ids.h"
#include "ash/public/cpp/window_animation_types.h"
#include "ash/root_window_controller.h"
#include "ash/screen_util.h"
#include "ash/shell.h"
#include "ash/wm/float/float_controller.h"
#include "ash/wm/pip/pip_positioner.h"
#include "ash/wm/screen_pinning_controller.h"
#include "ash/wm/splitview/split_view_controller.h"
#include "ash/wm/tablet_mode/tablet_mode_controller.h"
#include "ash/wm/window_positioning_utils.h"
#include "ash/wm/window_state.h"
#include "ash/wm/window_state_delegate.h"
#include "ash/wm/window_state_util.h"
#include "ash/wm/wm_event.h"
#include "chromeos/ui/base/window_state_type.h"
#include "chromeos/ui/wm/window_util.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/window.h"
#include "ui/aura/window_delegate.h"
#include "ui/compositor/layer.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "ui/wm/core/window_util.h"
namespace ash {
namespace {
using ::chromeos::WindowStateType;
constexpr int kClientControlledWindowMinimumOnScreenArea =
kMinimumOnScreenArea + 1;
}
void ClientControlledState::AdjustBoundsForMinimumWindowVisibility(
const gfx::Rect& display_bounds,
gfx::Rect* bounds) {
AdjustBoundsToEnsureWindowVisibility(
display_bounds, kClientControlledWindowMinimumOnScreenArea,
kClientControlledWindowMinimumOnScreenArea, bounds);
}
ClientControlledState::ClientControlledState(std::unique_ptr<Delegate> delegate)
: BaseState(WindowStateType::kDefault), delegate_(std::move(delegate)) {}
ClientControlledState::~ClientControlledState() = default;
void ClientControlledState::ResetDelegate() {
delegate_.reset();
}
void ClientControlledState::HandleTransitionEvents(WindowState* window_state,
const WMEvent* event) {
if (!delegate_)
return;
const WMEventType event_type = event->type();
bool pin_transition = window_state->IsTrustedPinned() ||
window_state->IsPinned() || event->IsPinEvent();
if (pin_transition) {
if (event->IsPinEvent() &&
Shell::Get()->screen_pinning_controller()->IsPinned()) {
return;
}
WindowStateType next_state_type =
GetStateForTransitionEvent(window_state, event);
delegate_->HandleWindowStateRequest(window_state, next_state_type);
return;
}
switch (event_type) {
case WM_EVENT_NORMAL:
case WM_EVENT_MAXIMIZE:
case WM_EVENT_MINIMIZE:
case WM_EVENT_FULLSCREEN:
case WM_EVENT_SNAP_PRIMARY:
case WM_EVENT_SNAP_SECONDARY:
case WM_EVENT_FLOAT: {
WindowStateType next_state =
GetResolvedNextWindowStateType(window_state, event);
UpdateWindowForTransitionEvents(window_state, next_state, event);
break;
}
case WM_EVENT_RESTORE:
UpdateWindowForTransitionEvents(
window_state, window_state->GetRestoreWindowState(), event);
break;
case WM_EVENT_SHOW_INACTIVE:
NOTREACHED();
break;
default:
NOTREACHED() << "Unknown event :" << event->type();
}
}
void ClientControlledState::AttachState(
WindowState* window_state,
WindowState::State* state_in_previous_mode) {}
void ClientControlledState::DetachState(WindowState* window_state) {}
void ClientControlledState::HandleWorkspaceEvents(WindowState* window_state,
const WMEvent* event) {
if (!delegate_)
return;
if (window_state->IsSnapped()) {
gfx::Rect bounds = GetSnappedWindowBoundsInParent(
window_state->window(), window_state->GetStateType());
delegate_->HandleBoundsRequest(window_state, window_state->GetStateType(),
bounds, window_state->GetDisplay().id());
} else if (window_state->IsFloated()) {
const gfx::Rect bounds =
Shell::Get()->tablet_mode_controller()->InTabletMode()
? FloatController::GetPreferredFloatWindowTabletBounds(
window_state->window())
: FloatController::GetPreferredFloatWindowClamshellBounds(
window_state->window());
delegate_->HandleBoundsRequest(window_state, window_state->GetStateType(),
bounds, window_state->GetDisplay().id());
} else if (event->type() == WM_EVENT_DISPLAY_BOUNDS_CHANGED) {
if (event->AsDisplayMetricsChangedWMEvent()->primary_changed()) {
const gfx::Rect bounds = window_state->window()->bounds();
delegate_->HandleBoundsRequest(window_state, window_state->GetStateType(),
bounds, window_state->GetDisplay().id());
}
} else if (event->type() == WM_EVENT_ADDED_TO_WORKSPACE) {
aura::Window* window = window_state->window();
gfx::Rect bounds = window->bounds();
AdjustBoundsForMinimumWindowVisibility(window->GetRootWindow()->bounds(),
&bounds);
if (window->bounds() != bounds)
window_state->SetBoundsConstrained(bounds);
}
}
void ClientControlledState::HandleCompoundEvents(WindowState* window_state,
const WMEvent* event) {
if (!delegate_)
return;
switch (event->type()) {
case WM_EVENT_TOGGLE_MAXIMIZE_CAPTION:
if (window_state->IsFullscreen()) {
const WMEvent wm_event(WM_EVENT_TOGGLE_FULLSCREEN);
window_state->OnWMEvent(&wm_event);
} else if (window_state->IsMaximized()) {
window_state->Restore();
} else if (window_state->IsNormalOrSnapped()) {
if (window_state->CanMaximize())
window_state->Maximize();
}
break;
case WM_EVENT_TOGGLE_MAXIMIZE:
if (window_state->IsFullscreen()) {
const WMEvent wm_event(WM_EVENT_TOGGLE_FULLSCREEN);
window_state->OnWMEvent(&wm_event);
} else if (window_state->IsMaximized()) {
window_state->Restore();
} else if (window_state->CanMaximize()) {
window_state->Maximize();
}
break;
case WM_EVENT_TOGGLE_VERTICAL_MAXIMIZE:
break;
case WM_EVENT_TOGGLE_HORIZONTAL_MAXIMIZE:
break;
case WM_EVENT_TOGGLE_FULLSCREEN:
ToggleFullScreen(window_state, window_state->delegate());
break;
case WM_EVENT_CYCLE_SNAP_PRIMARY:
case WM_EVENT_CYCLE_SNAP_SECONDARY:
CycleSnap(window_state, event->type());
break;
default:
NOTREACHED() << "Invalid event :" << event->type();
break;
}
}
void ClientControlledState::HandleBoundsEvents(WindowState* window_state,
const WMEvent* event) {
if (!delegate_)
return;
auto* const window = window_state->window();
switch (event->type()) {
case WM_EVENT_SET_BOUNDS: {
const auto* set_bounds_event =
static_cast<const SetBoundsWMEvent*>(event);
const gfx::Rect& bounds = set_bounds_event->requested_bounds();
if (set_bounds_locally_) {
if (window_state->IsFloated() && window->layer() &&
window->layer()->GetAnimator()->is_animating()) {
return;
}
switch (next_bounds_change_animation_type_) {
case WindowState::BoundsChangeAnimationType::kNone:
window_state->SetBoundsDirect(bounds);
break;
case WindowState::BoundsChangeAnimationType::kCrossFade:
window_state->SetBoundsDirectCrossFade(bounds);
break;
case WindowState::BoundsChangeAnimationType::kCrossFadeFloat:
window_state->SetBoundsDirectCrossFade(bounds, true);
break;
case WindowState::BoundsChangeAnimationType::kCrossFadeUnfloat:
window_state->SetBoundsDirectCrossFade(bounds, false);
break;
case WindowState::BoundsChangeAnimationType::kAnimate:
window_state->SetBoundsDirectAnimated(
bounds, bounds_change_animation_duration_);
break;
case WindowState::BoundsChangeAnimationType::kAnimateZero:
NOTREACHED();
break;
}
next_bounds_change_animation_type_ =
WindowState::BoundsChangeAnimationType::kNone;
} else if (!window_state->IsPinned()) {
bounds_change_animation_duration_ = set_bounds_event->duration();
int64_t display_id = set_bounds_event->display_id();
if (display_id == display::kInvalidDisplayId) {
display_id = display::Screen::GetScreen()
->GetDisplayNearestWindow(window)
.id();
}
#if DCHECK_IS_ON()
gfx::Rect bounds_in_display(bounds);
const aura::Window* root = window->GetRootWindow();
aura::Window::ConvertRectToTarget(window->parent(), root,
&bounds_in_display);
DCHECK_EQ(bounds_in_display.x(), bounds.x());
DCHECK_EQ(bounds_in_display.y(), bounds.y());
#endif
delegate_->HandleBoundsRequest(
window_state, window_state->GetStateType(), bounds, display_id);
}
break;
}
case WM_EVENT_CENTER:
CenterWindow(window_state);
break;
default:
NOTREACHED() << "Unknown event:" << event->type();
}
}
void ClientControlledState::OnWindowDestroying(WindowState* window_state) {
ResetDelegate();
}
bool ClientControlledState::EnterNextState(WindowState* window_state,
WindowStateType next_state_type) {
if (state_type_ == next_state_type || !delegate_)
return false;
WindowStateType previous_state_type = state_type_;
state_type_ = next_state_type;
window_state->UpdateWindowPropertiesFromStateType();
window_state->NotifyPreStateTypeChange(previous_state_type);
auto* const window = window_state->window();
auto* const float_controller = Shell::Get()->float_controller();
if (next_state_type == WindowStateType::kFloated) {
if (Shell::Get()->tablet_mode_controller()->InTabletMode()) {
float_controller->FloatForTablet(window, previous_state_type);
} else {
float_controller->FloatImpl(window);
}
}
if (previous_state_type == WindowStateType::kFloated) {
float_controller->UnfloatImpl(window);
}
if (window->parent()) {
UpdateMinimizedState(window_state, previous_state_type);
}
window_state->NotifyPostStateTypeChange(previous_state_type);
if (IsPinnedWindowStateType(next_state_type) ||
IsPinnedWindowStateType(previous_state_type)) {
set_next_bounds_change_animation_type(
WindowState::BoundsChangeAnimationType::kCrossFade);
Shell::Get()->screen_pinning_controller()->SetPinnedWindow(window);
}
return true;
}
WindowStateType ClientControlledState::GetResolvedNextWindowStateType(
WindowState* window_state,
const WMEvent* event) {
DCHECK(event->IsTransitionEvent());
const WindowStateType next = GetStateForTransitionEvent(window_state, event);
if (Shell::Get()->tablet_mode_controller()->InTabletMode() &&
next == WindowStateType::kNormal && window_state->CanMaximize())
return WindowStateType::kMaximized;
return next;
}
void ClientControlledState::UpdateWindowForTransitionEvents(
WindowState* window_state,
chromeos::WindowStateType next_state_type,
const WMEvent* event) {
const WMEventType event_type = event->type();
aura::Window* window = window_state->window();
if (next_state_type == WindowStateType::kPrimarySnapped ||
next_state_type == WindowStateType::kSecondarySnapped) {
if (window_state->CanSnap()) {
HandleWindowSnapping(window_state,
next_state_type == WindowStateType::kPrimarySnapped
? WM_EVENT_SNAP_PRIMARY
: WM_EVENT_SNAP_SECONDARY);
if (event_type == WM_EVENT_RESTORE) {
window_state->set_snap_action_source(
WindowSnapActionSource::kSnapByWindowStateRestore);
}
window_state->RecordAndResetWindowSnapActionSource(
window_state->GetStateType(), next_state_type);
const bool is_restoring =
window_state->window()->GetProperty(aura::client::kIsRestoringKey) ||
event_type == WM_EVENT_RESTORE;
float next_snap_ratio;
if (is_restoring) {
next_snap_ratio =
window_state->snap_ratio().value_or(chromeos::kDefaultSnapRatio);
} else {
DCHECK(event->IsSnapEvent());
next_snap_ratio = event->snap_ratio();
}
gfx::Rect bounds = GetSnappedWindowBoundsInParent(window, next_state_type,
next_snap_ratio);
if (window_state->IsMinimized())
window->ClearProperty(aura::client::kRestoreShowStateKey);
window_state->UpdateWindowPropertiesFromStateType();
VLOG(1) << "Processing State Transtion: event=" << event_type
<< ", state=" << state_type_
<< ", next_state=" << next_state_type;
delegate_->HandleBoundsRequest(window_state, next_state_type, bounds,
window_state->GetDisplay().id());
}
} else if (next_state_type == WindowStateType::kFloated) {
if (chromeos::wm::CanFloatWindow(window)) {
const gfx::Rect bounds =
Shell::Get()->tablet_mode_controller()->InTabletMode()
? FloatController::GetPreferredFloatWindowTabletBounds(window)
: FloatController::GetPreferredFloatWindowClamshellBounds(window);
window_state->UpdateWindowPropertiesFromStateType();
VLOG(1) << "Processing State Transtion: event=" << event_type
<< ", state=" << state_type_
<< ", next_state=" << next_state_type;
delegate_->HandleBoundsRequest(window_state, next_state_type, bounds,
window_state->GetDisplay().id());
}
} else {
if (SplitViewController::Get(window)->IsWindowInTransitionalState(window))
return;
window_state->UpdateWindowPropertiesFromStateType();
VLOG(1) << "Processing State Transtion: event=" << event_type
<< ", state=" << state_type_ << ", next_state=" << next_state_type;
delegate_->HandleWindowStateRequest(window_state, next_state_type);
}
}
}