blob: 76f5fb8147fafd8812882199ea320a368a521f53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// 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.
#ifndef ASH_WM_GESTURES_OVERVIEW_GESTURE_HANDLER_H_
#define ASH_WM_GESTURES_OVERVIEW_GESTURE_HANDLER_H_
#include "base/basictypes.h"
namespace aura {
class Window;
}
namespace ui {
class GestureEvent;
class ScrollEvent;
}
namespace ash {
// This handles a 3-finger swipe down gesture from the top of the screen to
// enter overview mode.
class OverviewGestureHandler {
public:
OverviewGestureHandler();
virtual ~OverviewGestureHandler();
// Processes a scroll event and may start overview. Returns true if the event
// has been handled and should not be processed further, false otherwise.
bool ProcessScrollEvent(const ui::ScrollEvent& event);
// Processes a gesture event and may start overview. Returns true if the event
// has been handled and should not be processed any farther, false otherwise.
bool ProcessGestureEvent(const ui::GestureEvent& event);
private:
// True if the current/last gesture began in the top bezel.
bool in_top_bezel_gesture_;
// The total distance scrolled with three fingers.
float scroll_x_;
float scroll_y_;
DISALLOW_COPY_AND_ASSIGN(OverviewGestureHandler);
};
} // namespace ash
#endif // ASH_WM_GESTURES_OVERVIEW_GESTURE_HANDLER_H_
|