input_pipeline/gestures/
mod.rs

1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5mod args;
6mod gesture_arena;
7mod motion;
8mod one_finger_button;
9mod primary_tap;
10mod scroll;
11mod secondary_button;
12mod secondary_tap;
13mod utils;
14
15#[cfg(test)]
16mod tests;
17
18pub use gesture_arena::make_input_handler as make_touchpad_gestures_handler;