OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_INPUT_INPUT_HANDLER_H_ | 5 #ifndef CC_INPUT_INPUT_HANDLER_H_ |
6 #define CC_INPUT_INPUT_HANDLER_H_ | 6 #define CC_INPUT_INPUT_HANDLER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 // Note these are used in a histogram. Do not reorder or delete existing | 77 // Note these are used in a histogram. Do not reorder or delete existing |
78 // entries. | 78 // entries. |
79 enum ScrollStatus { | 79 enum ScrollStatus { |
80 SCROLL_ON_MAIN_THREAD = 0, | 80 SCROLL_ON_MAIN_THREAD = 0, |
81 SCROLL_STARTED, | 81 SCROLL_STARTED, |
82 SCROLL_IGNORED, | 82 SCROLL_IGNORED, |
83 SCROLL_UNKNOWN, | 83 SCROLL_UNKNOWN, |
84 // This must be the last entry. | 84 // This must be the last entry. |
85 ScrollStatusCount | 85 ScrollStatusCount |
86 }; | 86 }; |
87 enum ScrollInputType { GESTURE, WHEEL, NON_BUBBLING_GESTURE }; | 87 enum ScrollInputType { GESTURE, WHEEL, ANIMATED_WHEEL, NON_BUBBLING_GESTURE }; |
88 | 88 |
89 // Binds a client to this handler to receive notifications. Only one client | 89 // Binds a client to this handler to receive notifications. Only one client |
90 // can be bound to an InputHandler. The client must live at least until the | 90 // can be bound to an InputHandler. The client must live at least until the |
91 // handler calls WillShutdown() on the client. | 91 // handler calls WillShutdown() on the client. |
92 virtual void BindToClient(InputHandlerClient* client) = 0; | 92 virtual void BindToClient(InputHandlerClient* client) = 0; |
93 | 93 |
94 // Selects a layer to be scrolled at a given point in viewport (logical | 94 // Selects a layer to be scrolled at a given point in viewport (logical |
95 // pixel) coordinates. Returns SCROLL_STARTED if the layer at the coordinates | 95 // pixel) coordinates. Returns SCROLL_STARTED if the layer at the coordinates |
96 // can be scrolled, SCROLL_ON_MAIN_THREAD if the scroll event should instead | 96 // can be scrolled, SCROLL_ON_MAIN_THREAD if the scroll event should instead |
97 // be delegated to the main thread, or SCROLL_IGNORED if there is nothing to | 97 // be delegated to the main thread, or SCROLL_IGNORED if there is nothing to |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 InputHandler() {} | 179 InputHandler() {} |
180 virtual ~InputHandler() {} | 180 virtual ~InputHandler() {} |
181 | 181 |
182 private: | 182 private: |
183 DISALLOW_COPY_AND_ASSIGN(InputHandler); | 183 DISALLOW_COPY_AND_ASSIGN(InputHandler); |
184 }; | 184 }; |
185 | 185 |
186 } // namespace cc | 186 } // namespace cc |
187 | 187 |
188 #endif // CC_INPUT_INPUT_HANDLER_H_ | 188 #endif // CC_INPUT_INPUT_HANDLER_H_ |
OLD | NEW |