blob: 2071c67d47092a8b2cbc2ea2ec3f3814e014c807 [file] [log] [blame]
// Copyright 2018 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 CHROMECAST_BROWSER_CAST_CONTENT_GESTURE_HANDLER_H_
#define CHROMECAST_BROWSER_CAST_CONTENT_GESTURE_HANDLER_H_
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/timer/elapsed_timer.h"
#include "chromecast/browser/cast_content_window.h"
#include "chromecast/graphics/gestures/cast_gesture_handler.h"
namespace chromecast {
// Receives root window level gestures, interprets them, and hands them to the
// CastContentWindow::Delegate.
class CastContentGestureHandler : public CastGestureHandler {
public:
explicit CastContentGestureHandler(
base::WeakPtr<CastContentWindow::Delegate> delegate);
~CastContentGestureHandler() override;
// CastGestureHandler implementation:
Priority GetPriority() override;
bool CanHandleSwipe(CastSideSwipeOrigin swipe_origin) override;
void HandleSideSwipe(CastSideSwipeEvent event,
CastSideSwipeOrigin swipe_origin,
const gfx::Point& touch_location) override;
void HandleTapDownGesture(const gfx::Point& touch_location) override;
void HandleTapGesture(const gfx::Point& touch_location) override;
void SetPriority(Priority priority);
private:
friend class CastContentGestureHandlerTest;
CastContentGestureHandler(base::WeakPtr<CastContentWindow::Delegate> delegate,
bool enable_top_drag_gesture);
GestureType GestureForSwipeOrigin(CastSideSwipeOrigin swipe_origin);
Priority priority_;
const bool enable_top_drag_gesture_;
// Number of pixels past swipe origin to consider as a back gesture.
const int back_horizontal_threshold_;
base::WeakPtr<CastContentWindow::Delegate> const delegate_;
base::ElapsedTimer current_swipe_time_;
};
} // namespace chromecast
#endif // CHROMECAST_BROWSER_CAST_CONTENT_GESTURE_HANDLER_H_