Home
last modified time | relevance | path

Searched refs:tooltip (Results 1 – 25 of 31) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
DManifestElementDescriptor.java46 String tooltip, in ManifestElementDescriptor() argument
51 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); in ManifestElementDescriptor()
67 String tooltip, in ManifestElementDescriptor() argument
72 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); in ManifestElementDescriptor()
87 String tooltip, in ManifestElementDescriptor() argument
91 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, false); in ManifestElementDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
DSectionHelper.java121 String tooltip) { in createLabel() argument
122 return SectionHelper.createLabel(parent, toolkit, label, tooltip); in createLabel()
138 String value, String tooltip) { in createLabelAndText() argument
139 return SectionHelper.createLabelAndText(parent, toolkit, label, value, tooltip); in createLabelAndText()
244 String value, String tooltip) { in createLabelAndText() argument
250 addControlTooltip(label, tooltip); in createLabelAndText()
265 String tooltip) { in createLabel() argument
274 addControlTooltip(label, tooltip); in createLabel()
286 static public void addControlTooltip(final Control control, String tooltip) { in addControlTooltip() argument
287 if (control == null || tooltip == null || tooltip.length() == 0) { in addControlTooltip()
[all …]
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
DDeviceCreationDialog.java172 String tooltip = "Name of the new device"; in createDialogContent() local
173 generateLabel("Name:", tooltip, parent); in createDialogContent()
174 mDeviceName = generateText(parent, tooltip, new CreateNameModifyListener()); in createDialogContent()
176 tooltip = "Diagonal length of the screen in inches"; in createDialogContent()
177 generateLabel("Screen Size (in):", tooltip, parent); in createDialogContent()
178 mDiagonalLength = generateText(parent, tooltip, sizeListener); in createDialogContent()
180 tooltip = "The resolution of the device in pixels"; in createDialogContent()
181 generateLabel("Resolution:", tooltip, parent); in createDialogContent()
185 mXDimension = generateText(dimensionGroup, tooltip, sizeListener); in createDialogContent()
187 mYDimension = generateText(dimensionGroup, tooltip, sizeListener); in createDialogContent()
[all …]
DAvdCreationDialog.java183 String tooltip; in createDialogContent() local
189 tooltip = "The name of the Android Virtual Device"; in createDialogContent()
190 label.setToolTipText(tooltip); in createDialogContent()
198 tooltip = "The manufacturer of the device this AVD will be based on"; in createDialogContent()
214 tooltip = "The name of the device this AVD will be based on"; in createDialogContent()
222 tooltip = "The target API of the AVD"; in createDialogContent()
223 label.setToolTipText(tooltip); in createDialogContent()
226 mTarget.setToolTipText(tooltip); in createDialogContent()
240 tooltip = "The CPU/ABI of the virtual device"; in createDialogContent()
241 label.setToolTipText(tooltip); in createDialogContent()
[all …]
DLegacyAvdEditDialog.java284 String tooltip = "Name of the new Android Virtual Device"; in createDialogContent() local
285 label.setToolTipText(tooltip); in createDialogContent()
290 mAvdName.setToolTipText(tooltip); in createDialogContent()
294 tooltip = "The version of Android to use in the virtual device"; in createDialogContent()
295 label.setToolTipText(tooltip); in createDialogContent()
299 mTargetCombo.setToolTipText(tooltip); in createDialogContent()
313 tooltip = "The CPU/ABI to use in the virtual device"; in createDialogContent()
314 label.setToolTipText(tooltip); in createDialogContent()
318 mAbiTypeCombo.setToolTipText(tooltip); in createDialogContent()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DTextAttributeDescriptor.java112 public TextAttributeDescriptor setTooltip(String tooltip) { in setTooltip() argument
113 mTooltip = tooltip; in setTooltip()
160 String tooltip = null; in getTooltip() local
215 tooltip = DescriptorsUtils.formatTooltip(rawTooltip); in getTooltip()
218 if (tooltip == null) { in getTooltip()
219 tooltip = DescriptorsUtils.formatTooltip(rawTooltip); in getTooltip()
221 mTooltip = tooltip; in getTooltip()
DElementDescriptor.java82 public ElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url, in ElementDescriptor() argument
89 mTooltip = (tooltip != null && tooltip.length() > 0) ? tooltip : null; in ElementDescriptor()
110 public ElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url, in ElementDescriptor() argument
117 mTooltip = (tooltip != null && tooltip.length() > 0) ? tooltip : null; in ElementDescriptor()
372 public void setTooltip(String tooltip) { in setTooltip() argument
373 mTooltip = tooltip; in setTooltip()
DTextValueDescriptor.java37 public TextValueDescriptor(String uiName, String tooltip) { in TextValueDescriptor() argument
40 setTooltip(tooltip); in TextValueDescriptor()
DEnumAttributeDescriptor.java31 String tooltip, IAttributeInfo attrInfo) { in EnumAttributeDescriptor() argument
DFlagAttributeDescriptor.java64 String tooltip, IAttributeInfo attrInfo, String[] names) { in FlagAttributeDescriptor() argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
DColorValueDescriptor.java30 public ColorValueDescriptor(String uiName, String tooltip) { in ColorValueDescriptor() argument
31 super(uiName, tooltip); in ColorValueDescriptor()
DItemElementDescriptor.java46 String tooltip, String sdk_url, AttributeDescriptor[] attributes, in ItemElementDescriptor() argument
48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); in ItemElementDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
DUiElementDetail.java268 String tooltip; in createUiAttributeControls() local
271 tooltip = DescriptorsUtils.formatFormText(elem_desc.getTooltip(), in createUiAttributeControls()
275 tooltip = elem_desc.getTooltip(); in createUiAttributeControls()
280 true /* isHtml */, tooltip, true /* setupLayoutData */); in createUiAttributeControls()
292 tooltip); in createUiAttributeControls()
295 tooltip = DescriptorsUtils.formatTooltip(elem_desc.getTooltip()); in createUiAttributeControls()
296 SectionHelper.createLabel(masterTable, toolkit, tooltip, tooltip); in createUiAttributeControls()
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
DSettingsDialog.java89 …String tooltip = "The hostname or IP of the HTTP & HTTPS proxy server to use (e.g. proxy.example.c… in createContents() local
91 label.setToolTipText(tooltip); in createContents()
96 mTextProxyServer.setToolTipText(tooltip); in createContents()
101 tooltip = "The port of the HTTP & HTTPS proxy server to use (e.g. 3128).\n" + in createContents()
103 label.setToolTipText(tooltip); in createContents()
108 mTextProxyPort.setToolTipText(tooltip); in createContents()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
DApplicationToggle.java130 String tooltip = getUiElementNode().getDescriptor().getTooltip(); in updateTooltip() local
131 if (tooltip != null) { in updateTooltip()
132 tooltip = DescriptorsUtils.formatFormText(tooltip, in updateTooltip()
136 mTooltipFormText.setText(tooltip, true /* parseTags */, true /* expandURLs */); in updateTooltip()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
DViewElementDescriptor.java93 String tooltip, String sdk_url, in ViewElementDescriptor() argument
96 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); in ViewElementDescriptor()
DLayoutDescriptors.java227 String tooltip = info.getJavaDoc(); in convertView() local
296 tooltip, in convertView()
/sdk/rule_api/src/com/android/ide/common/api/
DDropFeedback.java159 public String tooltip; field in DropFeedback
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
DChooseConfigurationPage.java103 String tooltip = "The folder where the file will be generated, relative to the project."; in createControl() local
111 folderLabel.setToolTipText(tooltip); in createControl()
115 mWsFolderPathTextField.setToolTipText(tooltip); in createControl()
DNewXmlFileCreationPage.java125 String tooltip, in TypeInfo() argument
134 mTooltip = tooltip; in TypeInfo()
473 String tooltip = "The Android Project where the new resource file will be created."; in createControl() local
476 projectLabel.setToolTipText(tooltip); in createControl()
482 mProjectButton.setToolTipText(tooltip); in createControl()
501 mFileNameTextField.setToolTipText(tooltip); in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DCompletionProposal.java113 String tooltip = ((ElementDescriptor)mChoice).getTooltip(); in getAdditionalProposalInfo() local
114 mAdditionalProposalInfo = DescriptorsUtils.formatTooltip(tooltip); in getAdditionalProposalInfo()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
DAnimatorDescriptors.java140 String tooltip, String sdkUrl, in addElement() argument
148 ElementDescriptor element = new ElementDescriptor(xmlName, uiName, tooltip, sdkUrl, in addElement()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DGuidelinePainter.java117 feedback.tooltip = sb.toString(); in paint()
132 feedback.tooltip = null; in paint()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/descriptors/
DOtherXmlDescriptors.java336 String tooltip = info.getJavaDoc();
366 tooltip,
/sdk/eclipse/
Ddictionary.txt311 tooltip

12