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

Unified Diff: remoting/client/ui/trackpad_input_strategy.h

Issue 2891603002: [CRD iOS] Trackpad Input Mode (Closed)
Patch Set: Fix Created 3 years, 7 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
« no previous file with comments | « remoting/client/ui/renderer_proxy.cc ('k') | remoting/client/ui/trackpad_input_strategy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/ui/trackpad_input_strategy.h
diff --git a/remoting/client/ui/trackpad_input_strategy.h b/remoting/client/ui/trackpad_input_strategy.h
new file mode 100644
index 0000000000000000000000000000000000000000..4838a450093a7a0decdeacd586528baf4e21bd9d
--- /dev/null
+++ b/remoting/client/ui/trackpad_input_strategy.h
@@ -0,0 +1,50 @@
+// Copyright 2017 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 REMOTING_CLIENT_UI_TRACKPAD_INPUT_STRATEGY_H_
+#define REMOTING_CLIENT_UI_TRACKPAD_INPUT_STRATEGY_H_
+
+#include "remoting/client/ui/input_strategy.h"
+
+namespace remoting {
+
+// This strategy simulate the trackpad's behavior. It keeps a visible cursor
+// with positions independent of the location of the touch events.
+class TrackpadInputStrategy : public InputStrategy {
+ public:
+ TrackpadInputStrategy(const DesktopViewport& viewport);
+ ~TrackpadInputStrategy() override;
+
+ // InputStrategy overrides.
+ void HandleZoom(const ViewMatrix::Point& pivot,
+ float scale,
+ DesktopViewport* viewport) override;
+
+ bool HandlePan(const ViewMatrix::Vector2D& translation,
+ Gesture simultaneous_gesture,
+ DesktopViewport* viewport) override;
+
+ void TrackTouchInput(const ViewMatrix::Point& touch_point,
+ const DesktopViewport& viewport) override;
+
+ ViewMatrix::Point GetCursorPosition() const override;
+
+ ViewMatrix::Vector2D MapScreenVectorToDesktop(
+ const ViewMatrix::Vector2D& delta,
+ const DesktopViewport& viewport) const override;
+
+ float GetFeedbackRadius(InputFeedbackType type) const override;
+
+ bool IsCursorVisible() const override;
+
+ private:
+ ViewMatrix::Point cursor_position_;
+
+ // TrackpadInputStrategy is neither copyable nor movable.
+ TrackpadInputStrategy(const TrackpadInputStrategy&) = delete;
+ TrackpadInputStrategy& operator=(const TrackpadInputStrategy&) = delete;
+};
+
+} // namespace remoting
+#endif // REMOTING_CLIENT_UI_TRACKPAD_INPUT_STRATEGY_H_
« no previous file with comments | « remoting/client/ui/renderer_proxy.cc ('k') | remoting/client/ui/trackpad_input_strategy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698