summaryrefslogtreecommitdiff
path: root/chromium/ash/wm/ash_native_cursor_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ash/wm/ash_native_cursor_manager.cc')
-rw-r--r--chromium/ash/wm/ash_native_cursor_manager.cc124
1 files changed, 0 insertions, 124 deletions
diff --git a/chromium/ash/wm/ash_native_cursor_manager.cc b/chromium/ash/wm/ash_native_cursor_manager.cc
deleted file mode 100644
index 28e0785135c..00000000000
--- a/chromium/ash/wm/ash_native_cursor_manager.cc
+++ /dev/null
@@ -1,124 +0,0 @@
-// Copyright (c) 2012 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/wm/ash_native_cursor_manager.h"
-
-#include "ash/display/display_controller.h"
-#include "ash/display/mirror_window_controller.h"
-#include "ash/shell.h"
-#include "ash/wm/image_cursors.h"
-#include "base/logging.h"
-#include "ui/aura/env.h"
-#include "ui/aura/root_window.h"
-#include "ui/base/cursor/cursor.h"
-
-namespace ash {
-namespace {
-
-void SetCursorOnAllRootWindows(gfx::NativeCursor cursor) {
- Shell::RootWindowList root_windows =
- Shell::GetInstance()->GetAllRootWindows();
- for (Shell::RootWindowList::iterator iter = root_windows.begin();
- iter != root_windows.end(); ++iter)
- (*iter)->SetCursor(cursor);
-#if defined(OS_CHROMEOS)
- Shell::GetInstance()->display_controller()->
- mirror_window_controller()->SetMirroredCursor(cursor);
-#endif
-}
-
-void NotifyCursorVisibilityChange(bool visible) {
- Shell::RootWindowList root_windows =
- Shell::GetInstance()->GetAllRootWindows();
- for (Shell::RootWindowList::iterator iter = root_windows.begin();
- iter != root_windows.end(); ++iter)
- (*iter)->OnCursorVisibilityChanged(visible);
-#if defined(OS_CHROMEOS)
- Shell::GetInstance()->display_controller()->mirror_window_controller()->
- SetMirroredCursorVisibility(visible);
-#endif
-}
-
-void NotifyMouseEventsEnableStateChange(bool enabled) {
- Shell::RootWindowList root_windows =
- Shell::GetInstance()->GetAllRootWindows();
- for (Shell::RootWindowList::iterator iter = root_windows.begin();
- iter != root_windows.end(); ++iter)
- (*iter)->OnMouseEventsEnableStateChanged(enabled);
- // Mirror window never process events.
-}
-
-} // namespace
-
-AshNativeCursorManager::AshNativeCursorManager()
- : image_cursors_(new ImageCursors) {
-}
-
-AshNativeCursorManager::~AshNativeCursorManager() {
-}
-
-void AshNativeCursorManager::SetDisplay(
- const gfx::Display& display,
- views::corewm::NativeCursorManagerDelegate* delegate) {
- if (image_cursors_->SetDisplay(display))
- SetCursor(delegate->GetCurrentCursor(), delegate);
-}
-
-void AshNativeCursorManager::SetCursor(
- gfx::NativeCursor cursor,
- views::corewm::NativeCursorManagerDelegate* delegate) {
- gfx::NativeCursor new_cursor = cursor;
- image_cursors_->SetPlatformCursor(&new_cursor);
- new_cursor.set_device_scale_factor(
- image_cursors_->GetDisplay().device_scale_factor());
-
- delegate->CommitCursor(new_cursor);
-
- if (delegate->GetCurrentVisibility())
- SetCursorOnAllRootWindows(new_cursor);
-}
-
-void AshNativeCursorManager::SetScale(
- float scale,
- views::corewm::NativeCursorManagerDelegate* delegate) {
- image_cursors_->SetScale(scale);
- delegate->CommitScale(scale);
-
- // Sets the cursor to refrect the scale change imidiately.
- SetCursor(delegate->GetCurrentCursor(), delegate);
-}
-
-void AshNativeCursorManager::SetVisibility(
- bool visible,
- views::corewm::NativeCursorManagerDelegate* delegate) {
- delegate->CommitVisibility(visible);
-
- if (visible) {
- SetCursor(delegate->GetCurrentCursor(), delegate);
- } else {
- gfx::NativeCursor invisible_cursor(ui::kCursorNone);
- image_cursors_->SetPlatformCursor(&invisible_cursor);
- SetCursorOnAllRootWindows(invisible_cursor);
- }
-
- NotifyCursorVisibilityChange(visible);
-}
-
-void AshNativeCursorManager::SetMouseEventsEnabled(
- bool enabled,
- views::corewm::NativeCursorManagerDelegate* delegate) {
- delegate->CommitMouseEventsEnabled(enabled);
-
- if (enabled) {
- aura::Env::GetInstance()->set_last_mouse_location(
- disabled_cursor_location_);
- } else {
- disabled_cursor_location_ = aura::Env::GetInstance()->last_mouse_location();
- }
-
- SetVisibility(delegate->GetCurrentVisibility(), delegate);
- NotifyMouseEventsEnableStateChange(enabled);
-}
-
-} // namespace ash