| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 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_TOUCH_HUD_TOUCH_HUD_RENDERER_H_ | |
| 6 #define ASH_TOUCH_HUD_TOUCH_HUD_RENDERER_H_ | |
| 7 | |
| 8 #include <map> | |
| 9 | |
| 10 #include "ash/touch_hud/ash_touch_hud_export.h" | |
| 11 #include "base/macros.h" | |
| 12 | |
| 13 namespace ui { | |
| 14 class LocatedEvent; | |
| 15 } | |
| 16 | |
| 17 namespace views { | |
| 18 class Widget; | |
| 19 } | |
| 20 | |
| 21 namespace ash { | |
| 22 class TouchHudProjectionTest; | |
| 23 class TouchPointView; | |
| 24 | |
| 25 // Handles touch events to draw out touch points accordingly. | |
| 26 class ASH_TOUCH_HUD_EXPORT TouchHudRenderer { | |
| 27 public: | |
| 28 explicit TouchHudRenderer(views::Widget* parent_widget); | |
| 29 ~TouchHudRenderer(); | |
| 30 | |
| 31 // Called to clear touch points and traces from the screen. | |
| 32 void Clear(); | |
| 33 | |
| 34 // Receives a touch event and draws its touch point. | |
| 35 void HandleTouchEvent(const ui::LocatedEvent& event); | |
| 36 | |
| 37 private: | |
| 38 friend class TouchHudProjectionTest; | |
| 39 | |
| 40 // The parent widget that all touch points would be drawn in. | |
| 41 views::Widget* parent_widget_; | |
| 42 | |
| 43 // A map of touch ids to TouchPointView. | |
| 44 std::map<int, TouchPointView*> points_; | |
| 45 | |
| 46 DISALLOW_COPY_AND_ASSIGN(TouchHudRenderer); | |
| 47 }; | |
| 48 | |
| 49 } // namespace ash | |
| 50 | |
| 51 #endif // ASH_TOUCH_HUD_TOUCH_HUD_RENDERER_H_ | |
| OLD | NEW |