OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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. | |
4 | |
5 #ifndef UI_AURA_CLIENT_CURSOR_CLIENT_H_ | |
6 #define UI_AURA_CLIENT_CURSOR_CLIENT_H_ | |
7 | |
8 #include "ui/aura/aura_export.h" | |
9 #include "ui/gfx/native_widget_types.h" | |
10 | |
11 namespace aura { | |
12 class Window; | |
13 namespace client { | |
14 | |
15 // An interface that receives cursor change events. | |
16 class AURA_EXPORT CursorClient { | |
17 public: | |
18 // Notes that |window| has requested the change to |cursor|. | |
19 virtual void SetCursor(gfx::NativeCursor cursor) = 0; | |
20 | |
21 // Changes the visibility of the cursor. | |
22 virtual void ShowCursor(bool show) = 0; | |
23 | |
24 // Gets whether the cursor is visible. | |
25 virtual bool GetVisible() const = 0; | |
oshima
2012/07/11 23:32:08
I slightly prefer Is{Cursor}Visible, but I'll leav
| |
26 | |
27 protected: | |
28 virtual ~CursorClient() {} | |
29 }; | |
30 | |
31 // Sets/Gets the activation client for the specified window. | |
32 AURA_EXPORT void SetCursorClient(Window* window, | |
33 CursorClient* client); | |
34 AURA_EXPORT CursorClient* GetCursorClient(Window* window); | |
35 | |
36 } // namespace client | |
37 } // namespace aura | |
38 | |
39 #endif // UI_AURA_CLIENT_CURSOR_CLIENT_H_ | |
OLD | NEW |