| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_WM_CORE_CURSOR_MANAGER_H_ | 5 #ifndef UI_WM_CORE_CURSOR_MANAGER_H_ |
| 6 #define UI_WM_CORE_CURSOR_MANAGER_H_ | 6 #define UI_WM_CORE_CURSOR_MANAGER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
| 12 #include "ui/aura/client/cursor_client.h" | 12 #include "ui/aura/client/cursor_client.h" |
| 13 #include "ui/base/cursor/cursor.h" | 13 #include "ui/base/cursor/cursor.h" |
| 14 #include "ui/gfx/native_widget_types.h" | 14 #include "ui/gfx/native_widget_types.h" |
| 15 #include "ui/gfx/point.h" | 15 #include "ui/gfx/point.h" |
| 16 #include "ui/wm/core/native_cursor_manager_delegate.h" | 16 #include "ui/wm/core/native_cursor_manager_delegate.h" |
| 17 #include "ui/wm/core/wm_core_export.h" | 17 #include "ui/wm/wm_export.h" |
| 18 | 18 |
| 19 namespace gfx { | 19 namespace gfx { |
| 20 class Display; | 20 class Display; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace wm { | 23 namespace wm { |
| 24 | 24 |
| 25 namespace internal { | 25 namespace internal { |
| 26 class CursorState; | 26 class CursorState; |
| 27 } | 27 } |
| 28 | 28 |
| 29 class NativeCursorManager; | 29 class NativeCursorManager; |
| 30 | 30 |
| 31 // This class receives requests to change cursor properties, as well as | 31 // This class receives requests to change cursor properties, as well as |
| 32 // requests to queue any further changes until a later time. It sends changes | 32 // requests to queue any further changes until a later time. It sends changes |
| 33 // to the NativeCursorManager, which communicates back to us when these changes | 33 // to the NativeCursorManager, which communicates back to us when these changes |
| 34 // were made through the NativeCursorManagerDelegate interface. | 34 // were made through the NativeCursorManagerDelegate interface. |
| 35 class WM_CORE_EXPORT CursorManager : public aura::client::CursorClient, | 35 class WM_EXPORT CursorManager : public aura::client::CursorClient, |
| 36 public NativeCursorManagerDelegate { | 36 public NativeCursorManagerDelegate { |
| 37 public: | 37 public: |
| 38 CursorManager(scoped_ptr<NativeCursorManager> delegate); | 38 CursorManager(scoped_ptr<NativeCursorManager> delegate); |
| 39 virtual ~CursorManager(); | 39 virtual ~CursorManager(); |
| 40 | 40 |
| 41 // Overridden from aura::client::CursorClient: | 41 // Overridden from aura::client::CursorClient: |
| 42 virtual void SetCursor(gfx::NativeCursor) OVERRIDE; | 42 virtual void SetCursor(gfx::NativeCursor) OVERRIDE; |
| 43 virtual gfx::NativeCursor GetCursor() const OVERRIDE; | 43 virtual gfx::NativeCursor GetCursor() const OVERRIDE; |
| 44 virtual void ShowCursor() OVERRIDE; | 44 virtual void ShowCursor() OVERRIDE; |
| 45 virtual void HideCursor() OVERRIDE; | 45 virtual void HideCursor() OVERRIDE; |
| 46 virtual bool IsCursorVisible() const OVERRIDE; | 46 virtual bool IsCursorVisible() const OVERRIDE; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 scoped_ptr<internal::CursorState> state_on_unlock_; | 81 scoped_ptr<internal::CursorState> state_on_unlock_; |
| 82 | 82 |
| 83 ObserverList<aura::client::CursorClientObserver> observers_; | 83 ObserverList<aura::client::CursorClientObserver> observers_; |
| 84 | 84 |
| 85 DISALLOW_COPY_AND_ASSIGN(CursorManager); | 85 DISALLOW_COPY_AND_ASSIGN(CursorManager); |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 } // namespace wm | 88 } // namespace wm |
| 89 | 89 |
| 90 #endif // UI_WM_CORE_CURSOR_MANAGER_H_ | 90 #endif // UI_WM_CORE_CURSOR_MANAGER_H_ |
| OLD | NEW |