HomeSort by relevance Sort by last modified time
    Searched full:tooltip (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /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...]
PropertyTableTooltipHelper.java 52 // check, may be cursor is now on tooltip, so ignore this MouseExit
62 // no, we should hide tooltip
120 // Showing tooltip
157 // prepare tooltip location
166 // for non-windows systems the tooltip may have invalid tooltip bounds
167 // because some widget's API functions may fail if tooltip content is not visible
169 // the workaround is to preset tooltip size to big values before any computeSize called.
IPropertyTooltipSite.java 27 * Hides current tooltip.
PropertyTooltipTextProvider.java 49 // create tooltip Control
64 * @return the text to show as tooltip.
  /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...]
  /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...]
  /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...]
TextValueDescriptor.java 35 * @param tooltip A non-empty tooltip string or null
37 public TextValueDescriptor(String uiName, String tooltip) {
40 setTooltip(tooltip);
ElementDescriptor.java 36 * {@link ElementDescriptor} have an XML name, UI name, a tooltip, an SDK url,
54 /* An optional tooltip. Can be empty. */
69 * tooltip, SDK url, attributes list, children list and mandatory.
73 * @param tooltip An optional tooltip. Can be null or empty.
82 public ElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url,
89 mTooltip = (tooltip != null && tooltip.length() > 0) ? tooltip : null;
97 * tooltip, SDK url, attributes list, children list and mandatory
    [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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
ItemElementDescriptor.java 32 * tooltip, SDK url, attributes list, children list and mandatory.
36 * @param tooltip An optional tooltip. Can be null or empty.
46 String tooltip, String sdk_url, AttributeDescriptor[] attributes,
48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
ColorValueDescriptor.java 30 public ColorValueDescriptor(String uiName, String tooltip) {
31 super(uiName, tooltip);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 117 * @param tooltip An optional tooltip for the label and text. Can be null.
121 String tooltip) {
122 return SectionHelper.createLabel(parent, toolkit, label, tooltip);
134 * @param tooltip An optional tooltip for the label and text. Can be null.
138 String value, String tooltip) {
139 return SectionHelper.createLabelAndText(parent, toolkit, label, value, tooltip);
240 * @param tooltip An optional tooltip for the label and text. Can be null
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 115 * Typically made of a rectangle and an associated text used as tooltip.
121 AreaZone(Rectangle zone, String tooltip) {
124 this.title = tooltip;
164 void addArea(Rectangle rec, String tooltip) {
165 AreaZone zone = new AreaZone(rec, tooltip);
266 StringBuffer tooltip = new StringBuffer("Time for baseline build ");
267 tooltip.append(baselineBuildResults.getName());
268 tooltip.append(": ");
269 tooltip.append(Util.timeString((long)baselineValue));
270 tooltip.append(" [±")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimatorDescriptors.java 88 null /* tooltip */, sdkUrl,
94 null /* tooltip */, sdkUrl,
99 null /* tooltip */, sdkUrl,
129 * @param tooltip the tooltip or documentation for this element, or null
140 String tooltip, String sdkUrl,
148 ElementDescriptor element = new ElementDescriptor(xmlName, uiName, tooltip, sdkUrl,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 38 import org.eclipse.swt.widgets.ToolTip;
177 // Listen to mouse track events to display the table cell corresponding tooltip.
179 ToolTip currentTooltip;
187 ToolTip tooltip = (ToolTip) ConfigTab.this.toolTips.get(cellPosition);
188 if (tooltip != null) {
190 tooltip.setLocation(location);
191 tooltip.setVisible(true);
192 this.currentTooltip = tooltip;
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/
stacked_bars_track.html 45 set tooltip(tooltip) {
46 this.heading_.tooltip = tooltip;
cpu_track.html 53 get tooltip() {
57 set tooltip(value) {
122 samplesTrack.tooltip = this.cpu_.userFriendlyDetails;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
TextDisplayPropertyEditor.java 53 // tooltip for value text
61 * @return the {@link PropertyTooltipProvider} to display value tooltip.
  /build/tools/droiddoc/templates-ds/assets/design/
default.js 137 var $tooltip = $('<div>')
138 .addClass('tooltip-box')
150 $tooltip.css({
154 $tooltip.addClass('below');
155 $tooltip.show();
158 $tooltip.hide();
  /build/tools/droiddoc/templates-ndk/assets/design/
default.js 137 var $tooltip = $('<div>')
138 .addClass('tooltip-box')
150 $tooltip.css({
154 $tooltip.addClass('below');
155 $tooltip.show();
158 $tooltip.hide();
  /build/tools/droiddoc/templates-pdk/assets/design/
default.js 137 var $tooltip = $('<div>')
138 .addClass('tooltip-box')
150 $tooltip.css({
154 $tooltip.addClass('below');
155 $tooltip.show();
158 $tooltip.hide();
  /build/tools/droiddoc/templates-sac/assets/design/
default.js 137 var $tooltip = $('<div>')
138 .addClass('tooltip-box')
150 $tooltip.css({
154 $tooltip.addClass('below');
155 $tooltip.show();
158 $tooltip.hide();
  /build/tools/droiddoc/templates-sdk/assets/design/
default.js 137 var $tooltip = $('<div>')
138 .addClass('tooltip-box')
150 $tooltip.css({
154 $tooltip.addClass('below');
155 $tooltip.show();
158 $tooltip.hide();
  /build/tools/droiddoc/templates-sdk-dev/assets/design/
default.js 137 var $tooltip = $('<div>')
138 .addClass('tooltip-box')
150 $tooltip.css({
154 $tooltip.addClass('below');
155 $tooltip.show();
158 $tooltip.hide();

Completed in 1216 milliseconds

1 2 3 4 5 6 7