OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 UI_AURA_CLIENT_TOOLTIP_CLIENT_H_ | 5 #ifndef UI_AURA_CLIENT_TOOLTIP_CLIENT_H_ |
6 #define UI_AURA_CLIENT_TOOLTIP_CLIENT_H_ | 6 #define UI_AURA_CLIENT_TOOLTIP_CLIENT_H_ |
7 | 7 |
8 #include "ui/aura/aura_export.h" | 8 #include "ui/aura/aura_export.h" |
9 #include "ui/gfx/font.h" | 9 #include "ui/gfx/font.h" |
10 | 10 |
11 namespace aura { | 11 namespace aura { |
12 class RootWindow; | 12 class RootWindow; |
13 class Window; | 13 class Window; |
14 namespace client { | 14 namespace client { |
15 | 15 |
16 class AURA_EXPORT TooltipClient { | 16 class AURA_EXPORT TooltipClient { |
17 public: | 17 public: |
18 // Informs the shell tooltip manager of change in tooltip for window |target|. | 18 // Informs the shell tooltip manager of change in tooltip for window |target|. |
19 virtual void UpdateTooltip(Window* target) = 0; | 19 virtual void UpdateTooltip(Window* target) = 0; |
20 | 20 |
| 21 // Sets the time after which the tooltip is hidden for Window |target|. If |
| 22 // |timeout_in_ms| is <= 0, the tooltip is shown indefinitely. |
| 23 virtual void SetTooltipShownTimeout(Window* target, int timeout_in_ms) = 0; |
| 24 |
21 // Enables/Disables tooltips. | 25 // Enables/Disables tooltips. |
22 virtual void SetTooltipsEnabled(bool enable) = 0; | 26 virtual void SetTooltipsEnabled(bool enable) = 0; |
23 }; | 27 }; |
24 | 28 |
25 AURA_EXPORT void SetTooltipClient(RootWindow* root_window, | 29 AURA_EXPORT void SetTooltipClient(RootWindow* root_window, |
26 TooltipClient* client); | 30 TooltipClient* client); |
27 AURA_EXPORT TooltipClient* GetTooltipClient(RootWindow* root_window); | 31 AURA_EXPORT TooltipClient* GetTooltipClient(RootWindow* root_window); |
28 AURA_EXPORT void SetTooltipText(Window* window, string16* tooltip_text); | 32 AURA_EXPORT void SetTooltipText(Window* window, string16* tooltip_text); |
29 AURA_EXPORT const string16 GetTooltipText(Window* window); | 33 AURA_EXPORT const string16 GetTooltipText(Window* window); |
30 | 34 |
31 } // namespace client | 35 } // namespace client |
32 } // namespace aura | 36 } // namespace aura |
33 | 37 |
34 #endif // UI_AURA_CLIENT_TOOLTIP_CLIENT_H_ | 38 #endif // UI_AURA_CLIENT_TOOLTIP_CLIENT_H_ |
OLD | NEW |