OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef ASH_DISPLAY_CURSOR_WINDOW_CONTROLLER_H_ |
| 6 #define ASH_DISPLAY_CURSOR_WINDOW_CONTROLLER_H_ |
| 7 |
| 8 #include "ui/aura/window.h" |
| 9 #include "ui/base/cursor/cursor.h" |
| 10 #include "ui/gfx/display.h" |
| 11 |
| 12 namespace ash { |
| 13 namespace test{ |
| 14 class MirrorWindowTestApi; |
| 15 } |
| 16 |
| 17 namespace internal { |
| 18 |
| 19 class CursorWindowDelegate; |
| 20 |
| 21 // Draws a mouse cursor on a given container window. |
| 22 // When cursor compositing is disabled, CursorWindowController is responsible |
| 23 // to scale and rotate the mouse cursor bitmap to match settings of the |
| 24 // primary display. |
| 25 // When cursor compositing is enabled, just draw the cursor as-is. |
| 26 class CursorWindowController { |
| 27 public: |
| 28 CursorWindowController(); |
| 29 ~CursorWindowController(); |
| 30 |
| 31 // Sets cursor compositing mode on/off. |
| 32 void SetCursorCompositingEnabled(bool enabled); |
| 33 bool is_cursor_compositing_enabled() const { |
| 34 return is_cursor_compositing_enabled_; |
| 35 } |
| 36 |
| 37 // Sets the container window for the cursor window controller. |
| 38 // Closes the cursor window if |container| is NULL. |
| 39 void SetContainer(aura::Window* container); |
| 40 |
| 41 // Sets the bounds of the container in screen coordinates. |
| 42 void SetBoundsInScreen(const gfx::Rect& bounds); |
| 43 |
| 44 // Sets cursor location, shape, set and visibility. |
| 45 void UpdateLocation(); |
| 46 void SetCursor(gfx::NativeCursor cursor); |
| 47 void SetCursorSet(ui::CursorSetType); |
| 48 void SetVisibility(bool visible); |
| 49 |
| 50 private: |
| 51 friend class test::MirrorWindowTestApi; |
| 52 |
| 53 void UpdateCursorImage(); |
| 54 |
| 55 bool is_cursor_compositing_enabled_; |
| 56 aura::Window* container_; |
| 57 |
| 58 // The bounds of the container in screen coordinates. |
| 59 gfx::Rect bounds_in_screen_; |
| 60 |
| 61 // The native_type of the cursor, see definitions in cursor.h |
| 62 int cursor_type_; |
| 63 |
| 64 ui::CursorSetType cursor_set_; |
| 65 gfx::Display::Rotation cursor_rotation_; |
| 66 gfx::Point hot_point_; |
| 67 |
| 68 scoped_ptr<aura::Window> cursor_window_; |
| 69 scoped_ptr<CursorWindowDelegate> delegate_; |
| 70 |
| 71 DISALLOW_COPY_AND_ASSIGN(CursorWindowController); |
| 72 }; |
| 73 |
| 74 } // namespace internal |
| 75 } // namespace ash |
| 76 |
| 77 #endif // ASH_DISPLAY_CURSOR_WINDOW_CONTROLLER_H_ |
OLD | NEW |