HomeSort by relevance Sort by last modified time
    Searched refs:Tooltip (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/ui/views/corewm/
tooltip.h 22 // Tooltip is responsible for showing the tooltip in an appropriate manner.
23 // Tooltip is used by TooltipController.
24 class VIEWS_EXPORT Tooltip {
26 virtual ~Tooltip() {}
28 // Updates the text on the tooltip and resizes to fit.
33 // Shows the tooltip at the specified location (in screen coordinates).
36 // Hides the tooltip.
39 // Is the tooltip visibile?
tooltip_controller.h 26 class Tooltip;
32 // TooltipController provides tooltip functionality for aura.
37 explicit TooltipController(scoped_ptr<Tooltip> tooltip);
63 // Updates the tooltip if required (if there is any change in the tooltip
64 // text, tooltip id or the aura::Window).
77 // Sets tooltip window to |target| if it is different from existing window.
90 scoped_ptr<Tooltip> tooltip_;
94 // Timer to timeout the life of an on-screen tooltip. We hide the tooltip whe
    [all...]
tooltip_win.h 12 #include "ui/views/corewm/tooltip.h"
20 // Implementation of Tooltip that uses the native win32 control for showing the
21 // tooltip.
22 class VIEWS_EXPORT TooltipWin : public Tooltip {
28 // native tooltip in sync.
36 // Sets the position of the tooltip.
39 // Tooltip:
50 // Shows the tooltip.
53 // Used to modify the tooltip.
56 // Is the tooltip showing
    [all...]
tooltip_aura.h 10 #include "ui/views/corewm/tooltip.h"
23 // Implementation of Tooltip that shows the tooltip using a Widget and Label.
24 class VIEWS_EXPORT TooltipAura : public Tooltip, public WidgetObserver {
29 // Trims the tooltip to fit in the width |max_width|, setting |text| to the
31 // and |line_count| to the number of lines of text in the tooltip. |font_list|
40 // Returns the max width of the tooltip when shown at the specified location.
51 // Tooltip:
64 // The label showing the tooltip.
67 // The widget containing the tooltip. May be NULL
    [all...]
tooltip_controller_unittest.cc 91 scoped_ptr<views::corewm::Tooltip>(
154 view_->set_tooltip_text(ASCIIToUTF16("Tooltip Text"));
161 base::string16 expected_tooltip = ASCIIToUTF16("Tooltip Text");
166 // Fire tooltip timer so tooltip becomes visible.
179 view_->set_tooltip_text(ASCIIToUTF16("Tooltip Text"));
187 // Fire tooltip timer so tooltip becomes visible.
196 base::string16 expected_tooltip = ASCIIToUTF16("Tooltip Text");
214 view_->set_tooltip_text(ASCIIToUTF16("Tooltip Text"))
    [all...]
tooltip_controller.cc 20 #include "ui/views/corewm/tooltip.h"
31 // Returns true if |target| is a valid window to get the tooltip from.
46 // Returns the target (the Window tooltip text comes from) based on the event.
54 // reset state when this happens else the tooltip may incorrectly show.
116 TooltipController::TooltipController(scoped_ptr<Tooltip> tooltip)
120 tooltip_(tooltip.Pass()),
133 // If tooltip is visible, we may want to hide it. If it is not, we are ok.
138 // but over a region that has different tooltip text. By resetting
140 // we'll requery for the tooltip text
    [all...]
  /external/chromium_org/chrome/browser/ui/location_bar/
origin_chip_info_unittest.cc 111 EXPECT_EQ(base::ASCIIToUTF16(kExampleUrl), info()->Tooltip());
122 EXPECT_EQ(base::ASCIIToUTF16(kExampleUrlSecure), info()->Tooltip());
133 EXPECT_EQ(base::ASCIIToUTF16(kChromeOrigin1), info()->Tooltip());
142 EXPECT_EQ(base::ASCIIToUTF16(kChromeOrigin2), info()->Tooltip());
181 EXPECT_EQ(base::ASCIIToUTF16(extension_origin), info()->Tooltip());
origin_chip_info.h 36 // Returns the tooltip to be used for the origin chip.
37 base::string16 Tooltip() const;
origin_chip_info.cc 161 base::string16 OriginChipInfo::Tooltip() const {
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_window_tree_host.h 34 class Tooltip;
62 // Creates and returns the Tooltip implementation to use. Return value is
65 virtual scoped_ptr<corewm::Tooltip> CreateTooltip() = 0;
desktop_window_tree_host_x11.h 93 virtual scoped_ptr<corewm::Tooltip> CreateTooltip() OVERRIDE;
desktop_window_tree_host_win.h 51 virtual scoped_ptr<corewm::Tooltip> CreateTooltip() OVERRIDE;
desktop_window_tree_host_win.cc 170 scoped_ptr<corewm::Tooltip> DesktopWindowTreeHostWin::CreateTooltip() {
173 return scoped_ptr<corewm::Tooltip>(tooltip_);
    [all...]
desktop_window_tree_host_x11.cc 285 scoped_ptr<corewm::Tooltip> DesktopWindowTreeHostX11::CreateTooltip() {
286 return scoped_ptr<corewm::Tooltip>(
    [all...]
  /external/chromium_org/ash/
shell.cc     [all...]

Completed in 887 milliseconds