| 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 UI_EVENTS_OZONE_EVDEV_CURSOR_DELEGATE_EVDEV_H_ | |
| 6 #define UI_EVENTS_OZONE_EVDEV_CURSOR_DELEGATE_EVDEV_H_ | |
| 7 | |
| 8 #include "ui/events/ozone/evdev/events_ozone_evdev_export.h" | |
| 9 #include "ui/gfx/geometry/point_f.h" | |
| 10 #include "ui/gfx/native_widget_types.h" | |
| 11 | |
| 12 namespace gfx { | |
| 13 class Vector2dF; | |
| 14 } | |
| 15 | |
| 16 namespace ui { | |
| 17 | |
| 18 class EVENTS_OZONE_EVDEV_EXPORT CursorDelegateEvdev { | |
| 19 public: | |
| 20 // Move the cursor. | |
| 21 virtual void MoveCursor(const gfx::Vector2dF& delta) = 0; | |
| 22 virtual void MoveCursorTo(gfx::AcceleratedWidget widget, | |
| 23 const gfx::PointF& location) = 0; | |
| 24 | |
| 25 // Location in window. | |
| 26 virtual gfx::PointF location() = 0; | |
| 27 | |
| 28 // Cursor visibility. | |
| 29 virtual bool IsCursorVisible() = 0; | |
| 30 }; | |
| 31 | |
| 32 } // namespace ui | |
| 33 | |
| 34 #endif // UI_EVENTS_OZONE_EVDEV_CURSOR_DELEGATE_EVDEV_H_ | |
| OLD | NEW |