1 // Copyright 2015 The Chromium 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.
5 #ifndef UI_VIEWS_ANIMATION_INK_DROP_STATE_H_
6 #define UI_VIEWS_ANIMATION_INK_DROP_STATE_H_
10 // The different states that the ink drop animation can be animated to.
11 enum class InkDropState
{
12 // The ink drop is not visible.
14 // The view is being interacted with but the action to be triggered has not
15 // yet been determined.
17 // The quick action for the view has been triggered. e.g. A tap gesture to
20 // A view is being interacted with and the pending action will be a 'slow'
21 // action. e.g. A long press that is still active before releasing.
23 // The slow action for the view has been triggered. e.g. A long press release
24 // to bring up a menu.
26 // An active state for a view that is not currently being interacted with.
27 // e.g. A pressed button that is showing a menu.
29 // A previously active state has been toggled to inactive. e.g. A drop down
36 #endif // UI_VIEWS_ANIMATION_INK_DROP_STATE_H_