xref: /aosp_15_r20/external/skia/tools/skui/InputState.h (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1 // Copyright 2019 Google LLC.
2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3 #ifndef skui_inputstate_DEFINED
4 #define skui_inputstate_DEFINED
5 namespace skui {
6 enum class InputState {
7     kDown,
8     kUp,
9     kMove,   // only valid for mouse
10     kRight,  // only valid for fling
11     kLeft,   // only valid for fling
12 };
13 }  // namespace skui
14 #endif  // skui_inputstate_DEFINED
15