Index: ash/touch_hud/touch_hud_renderer.cc |
diff --git a/ash/touch_hud/touch_hud_renderer.cc b/ash/touch_hud/touch_hud_renderer.cc |
deleted file mode 100644 |
index adb5243f4cf2aa6b7608adbdf14509b5880f399a..0000000000000000000000000000000000000000 |
--- a/ash/touch_hud/touch_hud_renderer.cc |
+++ /dev/null |
@@ -1,180 +0,0 @@ |
-// Copyright 2013 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/touch_hud/touch_hud_renderer.h" |
- |
-#include "third_party/skia/include/effects/SkGradientShader.h" |
-#include "ui/compositor/layer.h" |
-#include "ui/compositor/layer_owner.h" |
-#include "ui/events/event.h" |
-#include "ui/gfx/animation/animation_delegate.h" |
-#include "ui/gfx/animation/linear_animation.h" |
-#include "ui/gfx/canvas.h" |
-#include "ui/gfx/geometry/size.h" |
-#include "ui/views/view.h" |
-#include "ui/views/widget/widget.h" |
-#include "ui/views/widget/widget_observer.h" |
- |
-namespace ash { |
- |
-const int kPointRadius = 20; |
-const SkColor kProjectionFillColor = SkColorSetRGB(0xF5, 0xF5, 0xDC); |
-const SkColor kProjectionStrokeColor = SK_ColorGRAY; |
-const int kProjectionAlpha = 0xB0; |
-const int kFadeoutDurationInMs = 250; |
-const int kFadeoutFrameRate = 60; |
- |
-// TouchPointView draws a single touch point. This object manages its own |
-// lifetime and deletes itself upon fade-out completion or whenever |Destroy()| |
-// is explicitly called. |
-class TouchPointView : public views::View, |
- public gfx::AnimationDelegate, |
- public views::WidgetObserver { |
- public: |
- explicit TouchPointView(views::Widget* parent_widget) |
- : circle_center_(kPointRadius + 1, kPointRadius + 1), |
- gradient_center_(SkPoint::Make(kPointRadius + 1, kPointRadius + 1)) { |
- SetPaintToLayer(true); |
- layer()->SetFillsBoundsOpaquely(false); |
- |
- SetSize(gfx::Size(2 * kPointRadius + 2, 2 * kPointRadius + 2)); |
- |
- stroke_paint_.setStyle(SkPaint::kStroke_Style); |
- stroke_paint_.setColor(kProjectionStrokeColor); |
- |
- gradient_colors_[0] = kProjectionFillColor; |
- gradient_colors_[1] = kProjectionStrokeColor; |
- |
- gradient_pos_[0] = SkFloatToScalar(0.9f); |
- gradient_pos_[1] = SkFloatToScalar(1.0f); |
- |
- parent_widget->GetContentsView()->AddChildView(this); |
- |
- parent_widget->AddObserver(this); |
- } |
- |
- void UpdateTouch(const ui::LocatedEvent& touch) { |
- if (touch.type() == ui::ET_TOUCH_RELEASED || |
- touch.type() == ui::ET_TOUCH_CANCELLED || |
- touch.type() == ui::ET_POINTER_UP || |
- touch.type() == ui::ET_POINTER_CANCELLED) { |
- fadeout_.reset(new gfx::LinearAnimation(kFadeoutDurationInMs, |
- kFadeoutFrameRate, this)); |
- fadeout_->Start(); |
- } else { |
- SetX(parent()->GetMirroredXInView(touch.root_location().x()) - |
- kPointRadius - 1); |
- SetY(touch.root_location().y() - kPointRadius - 1); |
- } |
- } |
- |
- void Destroy() { delete this; } |
- |
- private: |
- ~TouchPointView() override { |
- GetWidget()->RemoveObserver(this); |
- parent()->RemoveChildView(this); |
- } |
- |
- // Overridden from views::View. |
- void OnPaint(gfx::Canvas* canvas) override { |
- int alpha = kProjectionAlpha; |
- if (fadeout_) |
- alpha = static_cast<int>(fadeout_->CurrentValueBetween(alpha, 0)); |
- fill_paint_.setAlpha(alpha); |
- stroke_paint_.setAlpha(alpha); |
- fill_paint_.setShader(SkGradientShader::MakeRadial( |
- gradient_center_, SkIntToScalar(kPointRadius), gradient_colors_, |
- gradient_pos_, arraysize(gradient_colors_), |
- SkShader::kMirror_TileMode)); |
- canvas->DrawCircle(circle_center_, SkIntToScalar(kPointRadius), |
- fill_paint_); |
- canvas->DrawCircle(circle_center_, SkIntToScalar(kPointRadius), |
- stroke_paint_); |
- } |
- |
- // Overridden from gfx::AnimationDelegate. |
- void AnimationEnded(const gfx::Animation* animation) override { |
- DCHECK_EQ(fadeout_.get(), animation); |
- delete this; |
- } |
- |
- void AnimationProgressed(const gfx::Animation* animation) override { |
- DCHECK_EQ(fadeout_.get(), animation); |
- SchedulePaint(); |
- } |
- |
- void AnimationCanceled(const gfx::Animation* animation) override { |
- AnimationEnded(animation); |
- } |
- |
- // Overridden from views::WidgetObserver. |
- void OnWidgetDestroying(views::Widget* widget) override { |
- if (fadeout_) |
- fadeout_->Stop(); |
- else |
- Destroy(); |
- } |
- |
- const gfx::Point circle_center_; |
- const SkPoint gradient_center_; |
- |
- SkPaint fill_paint_; |
- SkPaint stroke_paint_; |
- SkColor gradient_colors_[2]; |
- SkScalar gradient_pos_[2]; |
- |
- std::unique_ptr<gfx::Animation> fadeout_; |
- |
- DISALLOW_COPY_AND_ASSIGN(TouchPointView); |
-}; |
- |
-TouchHudRenderer::TouchHudRenderer(views::Widget* parent_widget) |
- : parent_widget_(parent_widget) {} |
- |
-TouchHudRenderer::~TouchHudRenderer() {} |
- |
-void TouchHudRenderer::Clear() { |
- for (std::map<int, TouchPointView*>::iterator iter = points_.begin(); |
- iter != points_.end(); iter++) |
- iter->second->Destroy(); |
- points_.clear(); |
-} |
- |
-void TouchHudRenderer::HandleTouchEvent(const ui::LocatedEvent& event) { |
- int id = 0; |
- if (event.IsTouchEvent()) { |
- id = event.AsTouchEvent()->touch_id(); |
- } else { |
- DCHECK(event.IsPointerEvent()); |
- DCHECK(event.AsPointerEvent()->pointer_details().pointer_type == |
- ui::EventPointerType::POINTER_TYPE_TOUCH); |
- id = event.AsPointerEvent()->pointer_id(); |
- } |
- if (event.type() == ui::ET_TOUCH_PRESSED || |
- event.type() == ui::ET_POINTER_DOWN) { |
- TouchPointView* point = new TouchPointView(parent_widget_); |
- point->UpdateTouch(event); |
- std::pair<std::map<int, TouchPointView*>::iterator, bool> result = |
- points_.insert(std::make_pair(id, point)); |
- // If a |TouchPointView| is already mapped to the touch id, destroy it and |
- // replace it with the new one. |
- if (!result.second) { |
- result.first->second->Destroy(); |
- result.first->second = point; |
- } |
- } else { |
- std::map<int, TouchPointView*>::iterator iter = points_.find(id); |
- if (iter != points_.end()) { |
- iter->second->UpdateTouch(event); |
- if (event.type() == ui::ET_TOUCH_RELEASED || |
- event.type() == ui::ET_TOUCH_CANCELLED || |
- event.type() == ui::ET_POINTER_UP || |
- event.type() == ui::ET_POINTER_CANCELLED) |
- points_.erase(iter); |
- } |
- } |
-} |
- |
-} // namespace ash |