Home
last modified time | relevance | path

Searched refs:combo (Results 1 – 14 of 14) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
DEnumXmlPropertyEditor.java57 protected void addItems(Property property, CCombo3 combo) throws Exception { in addItems() argument
59 combo.add(item); in addItems()
64 protected void selectItem(Property property, CCombo3 combo) throws Exception { in selectItem() argument
65 combo.setText(getText(property)); in selectItem()
69 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { in toPropertyEx() argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DWrapInWizard.java166 String oldType, Combo combo, in addLayouts() argument
172 combo.add(RADIO_GROUP); in addLayouts()
176 combo.add(SEPARATOR_LABEL); in addLayouts()
185 combo.add(view); in addLayouts()
188 combo.add(SEPARATOR_LABEL); in addLayouts()
219 combo.add(d.getUiName()); in addLayouts()
225 combo.add(SEPARATOR_LABEL); in addLayouts()
230 combo.add(view); in addLayouts()
233 combo.add(SEPARATOR_LABEL); in addLayouts()
238 combo.add(GESTURE_OVERLAY_VIEW); in addLayouts()
[all …]
DChangeViewWizard.java104 private List<String> getWidgetTypes(String oldType, Combo combo) { in getWidgetTypes() argument
121 combo.add(base); in getWidgetTypes()
124 combo.add(SEPARATOR_LABEL); in getWidgetTypes()
135 combo.add(view); in getWidgetTypes()
138 combo.add(SEPARATOR_LABEL); in getWidgetTypes()
144 combo.add(view); in getWidgetTypes()
147 combo.add(SEPARATOR_LABEL); in getWidgetTypes()
164 combo.add(d.getUiName()); in getWidgetTypes()
171 combo.add("SDK not initialized"); in getWidgetTypes()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DNewTemplatePage.java361 Combo combo = createOptionCombo(parameter, container, mValues.parameters, in onEnter() local
363 combo.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, in onEnter()
367 mFirst = combo; in onEnter()
371 ControlDecoration decoration = createFieldDecoration(id, combo, help); in onEnter()
425 Combo combo = new Combo(container, SWT.READ_ONLY); in createOptionCombo() local
477 combo.setData(parameter); in createOptionCombo()
478 parameter.control = combo; in createOptionCombo()
479 combo.setData(ATTR_ID, ids.toArray(new String[ids.size()])); in createOptionCombo()
480 combo.setData(ATTR_MIN_API, minSdks.toArray(new Integer[minSdks.size()])); in createOptionCombo()
481 combo.setData(ATTR_MIN_BUILD_API, minBuildApis.toArray( in createOptionCombo()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DTargetMenuListener.java77 static void show(ConfigurationChooser chooser, ToolItem combo) { in show() argument
120 Rectangle bounds = combo.getBounds(); in show()
122 location = combo.getParent().toDisplay(location); in show()
DLocaleMenuListener.java78 static void show(final ConfigurationChooser chooser, ToolItem combo) { in show() argument
118 Rectangle bounds = combo.getBounds(); in show()
120 location = combo.getParent().toDisplay(location); in show()
DOrientationMenuAction.java58 static void showMenu(ConfigurationChooser configChooser, ToolItem combo) { in showMenu() argument
88 Rectangle bounds = combo.getBounds(); in showMenu()
90 location = combo.getParent().toDisplay(location); in showMenu()
DActivityMenuListener.java82 static void show(ConfigurationChooser chooser, ToolItem combo) { in show() argument
134 Rectangle bounds = combo.getBounds(); in show()
136 location = combo.getParent().toDisplay(location); in show()
DDeviceMenuListener.java71 static void show(final ConfigurationChooser chooser, ToolItem combo) { in show() argument
193 Rectangle bounds = combo.getBounds(); in show()
195 location = combo.getParent().toDisplay(location); in show()
DThemeMenuAction.java89 static void showThemeMenu(ConfigurationChooser configChooser, ToolItem combo, in showThemeMenu() argument
166 Rectangle bounds = combo.getBounds(); in showThemeMenu()
168 location = combo.getParent().toDisplay(location); in showThemeMenu()
DConfigurationMenuListener.java142 static void show(ConfigurationChooser chooser, ToolItem combo) { in show() argument
257 Rectangle bounds = combo.getBounds(); in show()
259 location = combo.getParent().toDisplay(location); in show()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DLayoutActionBar.java420 final ToolItem combo = new ToolItem(mLayoutToolBar, SWT.DROP_DOWN); in addDropdown() local
423 combo.setImage(IconFactory.getInstance().getIcon(iconUrl)); in addDropdown()
424 combo.setToolTipText(choices.getTitle()); in addDropdown()
426 combo.setText(choices.getTitle()); in addDropdown()
428 combo.setData(choices); in addDropdown()
434 RuleAction.Choices choices = (Choices) combo.getData(); in addDropdown()
459 RuleAction.Choices choices = (Choices) combo.getData(); in addDropdown()
466 Rectangle bounds = combo.getBounds(); in addDropdown()
468 location = combo.getParent().toDisplay(location); in addDropdown()
473 combo.addListener(SWT.Selection, menuListener); in addDropdown()
/sdk/eclipse/
Ddictionary.txt55 combo
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
DConfigurationSelector.java601 private void fillCombo(Combo combo, ResourceEnum[] resEnums) { in fillCombo() argument
608 combo.add(resEnum.getShortDisplayValue()); in fillCombo()