Chromium Code Reviews| Index: remoting/android/java/src/org/chromium/chromoting/InputFeedbackRadiusMapper.java |
| diff --git a/remoting/android/java/src/org/chromium/chromoting/InputFeedbackRadiusMapper.java b/remoting/android/java/src/org/chromium/chromoting/InputFeedbackRadiusMapper.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..97423a06c0c8fc016eb3b4c826a7c7daba26e85e |
| --- /dev/null |
| +++ b/remoting/android/java/src/org/chromium/chromoting/InputFeedbackRadiusMapper.java |
| @@ -0,0 +1,52 @@ |
| +// Copyright 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. |
| + |
| +package org.chromium.chromoting; |
| + |
| +import android.view.View; |
| + |
| +/** |
| + * Helper class for mapping a feedback type to the max radius of the feedback animation. |
| + */ |
| +public final class InputFeedbackRadiusMapper { |
| + private final int mTinyFeedbackPixelRadius; |
| + private final int mSmallFeedbackPixelRadius; |
| + private final int mLargeFeedbackPixelRadius; |
| + |
| + public InputFeedbackRadiusMapper(View view) { |
| + mTinyFeedbackPixelRadius = view.getResources() |
| + .getDimensionPixelSize(R.dimen.feedback_animation_radius_tiny); |
| + |
| + mSmallFeedbackPixelRadius = view.getResources() |
| + .getDimensionPixelSize(R.dimen.feedback_animation_radius_small); |
| + |
| + mLargeFeedbackPixelRadius = view.getResources() |
| + .getDimensionPixelSize(R.dimen.feedback_animation_radius_large); |
| + } |
| + |
| + /** |
| + * Returns the radius of the given feedback type. |
| + * 0.0f will be returned if no feedback should be shown. |
|
joedow
2016/08/31 22:14:12
I'd either remove this line or use javadoc style f
Yuwei
2016/08/31 22:24:57
Done. Use javadoc style and give more useful comme
|
| + */ |
| + public float getFeedbackRadius(DesktopView.InputFeedbackType feedbackToShow, |
| + float scaleFactor) { |
| + switch (feedbackToShow) { |
| + case NONE: |
| + return 0.0f; |
| + case SHORT_TOUCH_ANIMATION: |
| + return mSmallFeedbackPixelRadius / scaleFactor; |
| + case LONG_TOUCH_ANIMATION: |
| + return mLargeFeedbackPixelRadius / scaleFactor; |
| + case LONG_TRACKPAD_ANIMATION: |
| + // The size of the longpress trackpad animation is supposed to be close to the |
| + // size of the cursor so it doesn't need to be normalized and should be scaled |
| + // with the canvas. |
| + return mTinyFeedbackPixelRadius; |
| + default: |
| + // Unreachable, but required by Google Java style and findbugs. |
| + assert false : "Unreached"; |
| + return 0.0f; |
| + } |
| + } |
| +} |