blob: c7742e8729b7248a1bec834ef71eb9467ea118f7 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/shelf/shelf_locking_manager.h"
#include "ash/session/session_controller.h"
#include "ash/shelf/shelf.h"
#include "ash/shell.h"
#include "ash/shell_port.h"
namespace ash {
ShelfLockingManager::ShelfLockingManager(Shelf* shelf)
: shelf_(shelf),
stored_alignment_(SHELF_ALIGNMENT_BOTTOM_LOCKED),
scoped_session_observer_(this) {
DCHECK(shelf_);
ShellPort::Get()->AddLockStateObserver(this);
SessionController* controller = Shell::Get()->session_controller();
session_locked_ =
controller->GetSessionState() != session_manager::SessionState::ACTIVE;
screen_locked_ = controller->IsScreenLocked();
}
ShelfLockingManager::~ShelfLockingManager() {
ShellPort::Get()->RemoveLockStateObserver(this);
}
void ShelfLockingManager::OnLockStateChanged(bool locked) {
screen_locked_ = locked;
UpdateLockedState();
}
void ShelfLockingManager::OnSessionStateChanged(
session_manager::SessionState state) {
session_locked_ = state != session_manager::SessionState::ACTIVE;
UpdateLockedState();
}
void ShelfLockingManager::OnLockStateEvent(EventType event) {
// Lock when the animation starts, ignoring pre-lock. There's no unlock event.
screen_locked_ |= event == EVENT_LOCK_ANIMATION_STARTED;
UpdateLockedState();
}
void ShelfLockingManager::UpdateLockedState() {
const ShelfAlignment alignment = shelf_->alignment();
if (is_locked() && alignment != SHELF_ALIGNMENT_BOTTOM_LOCKED) {
stored_alignment_ = alignment;
shelf_->SetAlignment(SHELF_ALIGNMENT_BOTTOM_LOCKED);
} else if (!is_locked() && alignment == SHELF_ALIGNMENT_BOTTOM_LOCKED) {
shelf_->SetAlignment(stored_alignment_);
}
}
} // namespace ash