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

1 2

  /gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/
FilterAction.java 54 private Toast tooltip; field in class:FilterAction
75 tooltip = Toast.makeText(tools.getContext(), tooltipId, Toast.LENGTH_SHORT);
92 if (tooltip != null) {
93 tooltip.show();
118 // Close the tooltip if it's still showing.
119 if ((tooltip != null) && (tooltip.getView().getParent() != null)) {
120 tooltip.cancel();
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
EffectAction.java 49 private Toast tooltip; field in class:EffectAction
67 // Shows the tooltip if it's available.
69 tooltip = Toast.makeText(getContext(), (String) getTag(), Toast.LENGTH_SHORT);
70 tooltip.setGravity(Gravity.CENTER, 0, 0);
71 tooltip.show();
86 // Cancel the tooltip if it's still showing.
87 if ((tooltip != null) && (tooltip.getView().getParent() != null)) {
88 tooltip.cancel();
89 tooltip = null
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
back_forward_button_gtk.cc 28 int normal, pushed, hover, disabled, tooltip; local
35 tooltip = IDS_TOOLTIP_FORWARD;
42 tooltip = IDS_TOOLTIP_BACK;
49 l10n_util::GetStringUTF8(tooltip).c_str());
  /external/chromium/chrome/browser/chromeos/status/
input_method_menu_button.cc 44 const std::wstring& tooltip,
46 button_->UpdateUI(input_method_id, name, tooltip, num_active_input_methods);
116 const std::wstring& tooltip,
128 SetTooltipText(L""); // remove tooltip
131 SetTooltipText(tooltip);
163 const std::wstring tooltip = InputMethodMenu::GetTextForMenu(input_method); local
166 UpdateUI(input_method.id, name, tooltip, num_active_input_methods);
input_method_menu.cc 478 const std::wstring tooltip = GetTextForMenu(input_method); local
479 UpdateUI(input_method.id, name, tooltip, num_active_input_methods);
  /external/chromium/chrome/browser/ui/views/extensions/
browser_action_overflow_menu_controller.cc 42 // Set the tooltip for this item.
43 std::wstring tooltip = UTF8ToWide( local
46 menu_->SetTooltip(tooltip, command_id);
  /sdk/rule_api/src/com/android/ide/common/api/
DropFeedback.java 155 * A message to be displayed in a tooltip to the user, which should be short, but
159 public String tooltip; field in class:DropFeedback
162 * Horizontal alignment for the tooltip, or null if no preference
168 * Vertical alignment for the tooltip, or null if no preference
  /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/pages/
ApplicationToggle.java 123 * Updates the application tooltip in the form text.
124 * If there is no tooltip, the form text is hidden.
129 String tooltip = getUiElementNode().getDescriptor().getTooltip(); local
130 if (tooltip != null) {
131 tooltip = DescriptorsUtils.formatFormText(tooltip,
135 mTooltipFormText.setText(tooltip, true /* parseTags */, true /* expandURLs */);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 104 String tooltip = "The folder where the file will be generated, relative to the project."; local
112 folderLabel.setToolTipText(tooltip);
116 mWsFolderPathTextField.setToolTipText(tooltip);
NewXmlFileCreationPage.java 127 String tooltip,
136 mTooltip = tooltip;
149 /** Returns the tooltip for the resource type. Can be null. */
249 "An XML file that describes a screen layout.", // tooltip
315 "An XML file with simple values: colors, strings, dimensions, etc.", // tooltip
324 "An XML file that describes a drawable.", // tooltip
333 "An XML file that describes an menu.", // tooltip
342 "An XML file that describes a color state list.", // tooltip
351 "An XML file that describes a property animation", // tooltip
360 "An XML file that describes a tween animation.", // tooltip
475 String tooltip = "The Android Project where the new resource file will be created."; local
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
SettingsDialog.java 85 String tooltip = "The DNS name or IP of the HTTP proxy server to use. " + local
87 mProxyServerLabel.setToolTipText(tooltip);
92 mProxyServerText.setToolTipText(tooltip);
97 tooltip = "The port of the HTTP proxy server to use. " +
99 mProxyPortLabel.setToolTipText(tooltip);
104 mProxyPortText.setToolTipText(tooltip);
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.cc 236 std::string tooltip = BuildTooltipFor(node); local
237 if (!tooltip.empty())
238 gtk_widget_set_tooltip_markup(button, tooltip.c_str());
258 std::string tooltip; local
  /external/webkit/Source/WebKit/wx/WebKitSupport/
ChromeClientWx.cpp 55 #include <wx/tooltip.h>
412 wxToolTip* tooltip = m_webView->GetToolTip(); local
413 if (!tooltip || tooltip->GetTip() != wxString(tip))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 268 String tooltip; local
271 tooltip = DescriptorsUtils.formatFormText(elem_desc.getTooltip(),
275 tooltip = elem_desc.getTooltip();
280 true /* isHtml */, tooltip, true /* setupLayoutData */);
292 tooltip);
294 // Fallback to a pure text tooltip, no fancy HTML
295 tooltip = DescriptorsUtils.formatTooltip(elem_desc.getTooltip());
296 SectionHelper.createLabel(masterTable, toolkit, tooltip, tooltip);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 271 String tooltip = info.getJavaDoc(); local
280 styleInfo.setJavaDoc("A reference to a custom style"); //tooltip
340 tooltip,
390 "Lets you statically include XML layouts inside other XML layouts.", // tooltip
411 "A root tag useful for XML layouts inflated using a ViewStub.", // tooltip
448 fragmentTooltip, // tooltip
508 "Requests focus for the parent element or one of its descendants", // tooltip
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 591 * is the tooltip/help for the value to be displayed in the documentation popup.
606 String tooltip = null; local
610 tooltip = DescriptorsUtils.formatTooltip(((ElementDescriptor)choice).getTooltip());
619 tooltip = ((TextAttributeDescriptor) choice).getTooltip();
645 tooltip = pair.getSecond();
    [all...]
  /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/
PerformanceResultsPreferencePage.java 231 StringBuffer tooltip = new StringBuffer("Select the last build to display performance results\n"); local
232 tooltip.append("If set then performance results won't be displayed for any build after this date...");
233 String tooltipText = tooltip.toString();
244 tooltip = new StringBuffer("Select the default dimension which will be used for performance results\n");
245 tooltip.append("When changed, the new selected dimension is automatically added to the dimensions list below...");
246 tooltipText = tooltip.toString();
254 tooltip = new StringBuffer("Select the dimensions which will be used while generating performance results\n");
255 tooltip.append("When changed, the default dimension above is automatically added to the new list...");
256 tooltipText = tooltip.toString();
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdCreationDialog.java 284 String tooltip = "Name of the new Android Virtual Device"; local
285 label.setToolTipText(tooltip);
290 mAvdName.setToolTipText(tooltip);
294 tooltip = "The version of Android to use in the virtual device";
295 label.setToolTipText(tooltip);
299 mTargetCombo.setToolTipText(tooltip);
313 tooltip = "The CPU/ABI to use in the virtual device";
314 label.setToolTipText(tooltip);
318 mAbiTypeCombo.setToolTipText(tooltip);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 717 milliseconds

1 2