/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_aura_unittest.cc | 26 string16 tooltip; local 35 int error_in_pixel_width = font.GetStringWidth(ASCIIToUTF16("tooltip")); 38 tooltip.clear(); 41 for (; font.GetStringWidth(tooltip) <= (expect_lines - 1) * max_pixel_width;) 42 tooltip.append(ASCIIToUTF16("This is part of the tooltip")); 43 tooltip_len = tooltip.length(); 44 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count); 47 EXPECT_EQ(tooltip_len + expect_lines - 1, tooltip.length()); 50 tooltip.clear() 83 max_pixel_width, gfx::ELIDE_AT_END), tooltip); local [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" 19 // Implementation of Tooltip that shows the tooltip using a Widget and Label. 20 class VIEWS_EXPORT TooltipAura : public Tooltip, public WidgetObserver { 25 // Trims the tooltip to fit in the width |max_width|, setting |text| to the 27 // and |line_count| to the number of lines of text in the tooltip. |x| and |y| 28 // give the location of the tooltip in screen coordinates. |max_width| comes 36 // Returns the max width of the tooltip when shown at the specified location. 39 // Returns the bounds to fit the tooltip in. 54 // Tooltip [all...] |
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 84 scoped_ptr<Tooltip> tooltip_; 88 // Timer to timeout the life of an on-screen tooltip. We hide the tooltip when
|
tooltip_controller_unittest.cc | 78 scoped_ptr<views::corewm::Tooltip>( 137 view_->set_tooltip_text(ASCIIToUTF16("Tooltip Text")); 144 string16 expected_tooltip = ASCIIToUTF16("Tooltip Text"); 149 // Fire tooltip timer so tooltip becomes visible. 162 view_->set_tooltip_text(ASCIIToUTF16("Tooltip Text")); 170 // Fire tooltip timer so tooltip becomes visible. 179 string16 expected_tooltip = ASCIIToUTF16("Tooltip Text"); 197 view_->set_tooltip_text(ASCIIToUTF16("Tooltip Text")) [all...] |
/external/chromium_org/ui/views/controls/ |
progress_bar_unittest.cc | 15 string16 tooltip = ASCIIToUTF16("Some text"); local 16 EXPECT_FALSE(bar.GetTooltipText(gfx::Point(), &tooltip)); 17 EXPECT_EQ(string16(), tooltip); local 20 EXPECT_TRUE(bar.GetTooltipText(gfx::Point(), &tooltip)); 21 EXPECT_EQ(tooltip_text, tooltip);
|
progress_bar.h | 35 // Sets the tooltip text. Default behavior for a progress bar is to show no 36 // tooltip on mouse hover. Calling this lets you set a custom tooltip. To 42 string16* tooltip) const OVERRIDE; 60 // Tooltip text.
|
/external/chromium_org/chrome/browser/ui/cocoa/browser/ |
edit_search_engine_cocoa_controller_unittest.mm | 132 NSString* toolTip = nil; 137 toolTip = l10n_util::GetNSString(IDS_SEARCH_ENGINES_INVALID_TITLE_TT); 138 EXPECT_NSEQ(toolTip, [[controller_ nameField] toolTip]); 139 EXPECT_NSEQ(toolTip, [[controller_ nameImage] toolTip]); 144 EXPECT_TRUE([[controller_ keywordField] toolTip]); 145 EXPECT_TRUE([[controller_ keywordImage] toolTip]); 149 toolTip = l10n_util::GetNSString(IDS_SEARCH_ENGINES_INVALID_URL_TT); 150 EXPECT_NSEQ(toolTip, [[controller_ urlField] toolTip]) [all...] |
/external/chromium_org/ui/aura/client/ |
tooltip_client.h | 17 // Informs the shell tooltip manager of change in tooltip for window |target|. 20 // Sets the time after which the tooltip is hidden for Window |target|. If 21 // |timeout_in_ms| is <= 0, the tooltip is shown indefinitely.
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTooltipProvider.java | 24 * Provider for tooltip controls. 31 * Show tooltip directly on property row. 35 * Show tooltip below property row. 45 * Create tooltip control. 53 * Shows tooltip {@link Shell}. 60 * Returns position for tooltip control. Usually we should show directly on same row, because we 61 * use tooltip to show just longer (full) text of property. But for "class" property we show 70 // Tooltip listener 74 * {@link Listener} that hides tooltip on mouse exit or click. 98 // convert location from tooltip to tabl [all...] |
/external/chromium_org/ash/system/tray/ |
throbber_view.h | 15 // A SmoothedThrobber with tooltip. 25 const gfx::Point& p, base::string16* tooltip) const OVERRIDE; 28 // The current tooltip text. 48 const gfx::Point& p, base::string16* tooltip) const OVERRIDE; 56 // The current tooltip text.
|
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_tooltip_controller.h | 20 // Controller for the Tooltip view, which handles displaying/hiding the 21 // tooltip bubble on hover. 30 // |message| to display in the tooltip.
|
/external/chromium_org/ui/views/widget/ |
tooltip_manager_win.h | 74 // Message handlers. These forward to the tooltip control. 82 // Updates the tooltip for the specified location. 85 // Tooltip control window. 88 // Tooltip information. 94 // Whether or not the tooltip is showing. 98 // Sets the tooltip position based on the x/y position of the text. If the 99 // tooltip fits, true is returned. 114 // is true, when the tooltip is asked for the view under the mouse is 118 // Text for tooltip from the view. 121 // The clipped tooltip [all...] |
tooltip_manager.h | 26 // the various tooltip methods on View. 30 // situations, such as menus, we want the tooltip to be shown for the 34 // |kGroupingPropertyKey| as the NativeView the mouse is over the tooltip is 45 // Returns the maximum width of the tooltip. |x| and |y| give the location 46 // the tooltip is to be displayed on in screen coordinates. |context| is 53 // If necessary trims the text of a tooltip to ensure we don't try to display 54 // a mega-tooltip. 63 // Invoked when the tooltip text changes for the specified views.
|
tooltip_manager_win.cc | 38 // Maximum number of lines we allow in the tooltip. 41 // Trims the tooltip to fit, setting |text| to the clipped result, |max_width| 43 // of lines of text in the tooltip. |available_width| gives the space available 44 // for the tooltip. 116 // Create the tooltip control. 139 // message) for the actual tooltip contents. 164 // Hide the tooltip. 189 // Tooltip control is asking for the tooltip to display. 192 // Initialize the string, if we have a valid tooltip the string wil [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/ |
ExportFieldsPart.java | 44 "List of properties you can edit in export.properties"); //tooltip 49 "TODO tooltip for Package"); //tooltip 54 "TODO tooltip for Projects"); //tooltip 59 "TODO tooltip for Version Code"); //tooltip 64 "TODO tooltip for Key Store"); //tooltip 69 "TODO tooltip for Key Alias"); //toolti [all...] |
/external/chromium/chrome/browser/ |
content_setting_image_model.h | 15 // This model provides data (icon ids and tooltip) for the content setting icons 26 // update its visibility, icon and tooltip. 46 void set_tooltip(const std::string& tooltip) { tooltip_ = tooltip; }
|
/external/chromium_org/chrome/browser/ui/content_settings/ |
content_setting_image_model.h | 17 // This model provides data (icon ids and tooltip) for the content setting icons 28 // update its visibility, icon and tooltip. 48 void set_tooltip(const std::string& tooltip) { tooltip_ = tooltip; }
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
GestureToolTip.java | 30 * A dedicated tooltip used during gestures, for example to show the resize dimensions. 32 * This is necessary because {@link org.eclipse.jface.window.ToolTip} causes flicker when 41 * The alpha to use for the tooltip window (which sadly will apply to the tooltip text 46 /** The size of the font displayed in the tooltip */ 49 /** Horizontal delta from the mouse cursor to shift the tooltip by */ 52 /** Vertical delta from the mouse cursor to shift the tooltip by */ 55 /** The label which displays the tooltip */ 58 /** The shell holding the tooltip */ 64 /** Is the tooltip positioned below the given anchor? * [all...] |
/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
analysis_results.js | 63 appendTableCellWithTooltip_: function(table, row, cellnum, text, tooltip) { 64 if (tooltip) { 68 span.className = 'tooltip'; 69 span.title = tooltip; 158 var tooltip = undefined; 160 tooltip = 'Min Duration:\u0009' + 170 tooltip += '\u000DStart Time:\u0009' + 174 tooltip += '\u000DEnd Time:\u0009' + 178 tooltip += '\u000DFrequency:\u0009' + 189 this.appendTableCellWithTooltip_(table, row, 0, label, tooltip); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
TextAttributeDescriptor.java | 42 * Such an attribute has a tooltip and would typically be displayed by 105 * Sets the tooltip to be associated with this descriptor. This is usually 109 * @param tooltip the new tooltip to be used 112 public TextAttributeDescriptor setTooltip(String tooltip) { 113 mTooltip = tooltip; 140 * The tooltip string is either null or a non-empty string. 142 * The tooltip is based on the Javadoc of the attribute and already processed via 144 * a UI tooltip. 149 * @return A non-empty tooltip string or nul 160 String tooltip = null; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/ |
ManifestElementDescriptor.java | 27 * its display name and tooltip. 38 * @param tooltip An optional tooltip. Can be null or empty. 46 String tooltip, 51 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); 59 * @param tooltip An optional tooltip. Can be null or empty. 67 String tooltip, 72 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); 80 * @param tooltip An optional tooltip. Can be null or empty [all...] |
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
star_decoration.h | 22 // Sets the image and tooltip based on |starred|. 38 // The string to show for a tooltip.
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
svg-links.svg | 2 <a xlink:href='http://www.apple.com' xlink:title='SUCCESS you got a tooltip'> 9 <tspan x='10' dy='20'>3. Hover and notice a tooltip appear</tspan>
|