Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(402)

Side by Side Diff: ui/wm/public/tooltip_client.h

Issue 213833018: Aura tooltips do not move on mouse move in case of many neighboring views with the same label (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change the unique id of tooltip text from void** to void* Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_WM_PUBLIC_TOOLTIP_CLIENT_H_ 5 #ifndef UI_WM_PUBLIC_TOOLTIP_CLIENT_H_
6 #define UI_WM_PUBLIC_TOOLTIP_CLIENT_H_ 6 #define UI_WM_PUBLIC_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
(...skipping 18 matching lines...) Expand all
29 virtual void SetTooltipsEnabled(bool enable) = 0; 29 virtual void SetTooltipsEnabled(bool enable) = 0;
30 30
31 private: 31 private:
32 friend class ScopedTooltipDisabler; 32 friend class ScopedTooltipDisabler;
33 }; 33 };
34 34
35 AURA_EXPORT void SetTooltipClient(Window* root_window, 35 AURA_EXPORT void SetTooltipClient(Window* root_window,
36 TooltipClient* client); 36 TooltipClient* client);
37 AURA_EXPORT TooltipClient* GetTooltipClient(Window* root_window); 37 AURA_EXPORT TooltipClient* GetTooltipClient(Window* root_window);
38 38
39 AURA_EXPORT void SetTooltipText(Window* window, base::string16* tooltip_text); 39 // Sets the |tooltip_text| and |id| pointers as properties of the |window|.
sky 2014/06/02 15:39:47 This is rather confusing. How about: Sets the text
40 // Those are later retrievable by GetTooltipText and GetTooltip id, given
41 // the appropriate window pointer. |id| is optionally non-null and is used as
42 // an uniqueness indicator for different tooltips - in case its value changes
43 // between two points, the tooltips at these two points are treated as separate
44 // entities.
45 AURA_EXPORT void SetTooltipText(Window* window,
46 base::string16* tooltip_text);
47 AURA_EXPORT void UpdateTooltipId(Window* window, void* id);
40 AURA_EXPORT const base::string16 GetTooltipText(Window* window); 48 AURA_EXPORT const base::string16 GetTooltipText(Window* window);
49 AURA_EXPORT const void* GetTooltipId(Window* window);
41 50
42 } // namespace client 51 } // namespace client
43 } // namespace aura 52 } // namespace aura
44 53
45 #endif // UI_WM_PUBLIC_TOOLTIP_CLIENT_H_ 54 #endif // UI_WM_PUBLIC_TOOLTIP_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698