Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2244)

Unified Diff: chrome/browser/chromeos/ui/autoclick_ring_handler.h

Issue 2016073004: Show a visual indicator for the progress of auto-click. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Used a timedelta in autoclick controller instead of int. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/ui/autoclick_ring_handler.h
diff --git a/chrome/browser/chromeos/ui/autoclick_ring_handler.h b/chrome/browser/chromeos/ui/autoclick_ring_handler.h
new file mode 100644
index 0000000000000000000000000000000000000000..1eeda517eb9ed5f742b1275a0f52f38353b405c5
--- /dev/null
+++ b/chrome/browser/chromeos/ui/autoclick_ring_handler.h
@@ -0,0 +1,67 @@
+// Copyright (c) 2016 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.
+
+#ifndef CHROME_BROWSER_CHROMEOS_UI_AUTOCLICK_RING_HANDLER_H_
+#define CHROME_BROWSER_CHROMEOS_UI_AUTOCLICK_RING_HANDLER_H_
+
+#include <memory>
+
+#include "ash/autoclick/autoclick_controller.h"
+#include "base/macros.h"
+#include "base/timer/timer.h"
+#include "ui/aura/window_observer.h"
+#include "ui/events/event.h"
+#include "ui/gfx/animation/linear_animation.h"
+#include "ui/gfx/geometry/point.h"
+
+namespace chromeos {
+
+// AutoclickRingHandler displays an animated affordance that is shown
+// on autoclick gesture. The animation sequence consists of two circles which
+// shrink towards the spot the autoclick will generate a mouse event.
+class AutoclickRingHandler : public gfx::LinearAnimation,
+ public aura::WindowObserver,
+ public ash::AutoclickController::Delegate {
+ public:
+ AutoclickRingHandler();
+ ~AutoclickRingHandler() override;
+
+ private:
+ // Overriden from ash::AutoclickController::Delegate.
+ void StartGesture(base::TimeDelta duration, gfx::Point center) override;
+ void StopGesture() override;
+ void SetGestureCenter(gfx::Point center) override;
+
+ class AutoclickRingView;
+
+ enum AnimationType {
+ NONE,
+ GROW_ANIMATION,
+ SHRINK_ANIMATION,
+ };
+
+ aura::Window* GetTargetWindow();
+ void SetTapDownTarget();
+ void StartAnimation(base::TimeDelta duration);
+ void StopAutoclickRing();
+ void SetTapDownTarget(aura::Window* target);
+
+ // Overridden from gfx::LinearAnimation.
+ void AnimateToState(double state) override;
+ void AnimationStopped() override;
+
+ // Overridden from aura::WindowObserver.
+ void OnWindowDestroying(aura::Window* window) override;
+
+ std::unique_ptr<AutoclickRingView> view_;
+ gfx::Point tap_down_location_;
+ aura::Window* tap_down_target_;
+ AnimationType current_animation_type_;
+
+ DISALLOW_COPY_AND_ASSIGN(AutoclickRingHandler);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_UI_AUTOCLICK_RING_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698