Home
last modified time | relevance | path

Searched refs:mTypeCombo (Results 1 – 4 of 4) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DChangeLayoutWizard.java65 private Combo mTypeCombo; field in ChangeLayoutWizard.InputPage
89 mTypeCombo = new Combo(composite, SWT.READ_ONLY); in createControl()
90 mTypeCombo.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); in createControl()
97 String text = mTypeCombo.getText(); in createControl()
101 mTypeCombo.addSelectionListener(selectionListener); in createControl()
102 mTypeCombo.addSelectionListener(mSelectionValidateListener); in createControl()
125 mClassNames = WrapInWizard.addLayouts(mProject, mOldType, mTypeCombo, exclude, false); in createControl()
128 for (int i = 0; i < mTypeCombo.getItemCount(); i++) { in createControl()
129 if (mTypeCombo.getItem(i).equals(GRID_LAYOUT)) { in createControl()
135 mTypeCombo.select(0); in createControl()
[all …]
DChangeViewWizard.java72 private Combo mTypeCombo; field in ChangeViewWizard.InputPage
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY); in createControl()
92 mTypeCombo.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); in createControl()
93 mTypeCombo.addSelectionListener(mSelectionValidateListener); in createControl()
95 mClassNames = getWidgetTypes(mOldType, mTypeCombo); in createControl()
96 mTypeCombo.select(0); in createControl()
101 mTypeCombo.setFocus(); in createControl()
181 int selectionIndex = mTypeCombo.getSelectionIndex(); in validatePage()
DWrapInWizard.java73 private Combo mTypeCombo; field in WrapInWizard.InputPage
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY); in createControl()
92 mTypeCombo.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); in createControl()
93 mTypeCombo.addSelectionListener(mSelectionValidateListener); in createControl()
104 mClassNames = addLayouts(mProject, mOldType, mTypeCombo, exclude, true); in createControl()
105 mTypeCombo.select(0); in createControl()
110 mTypeCombo.setFocus(); in createControl()
133 int selectionIndex = mTypeCombo.getSelectionIndex(); in validatePage()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
DNewXmlFileCreationPage.java401 private Combo mTypeCombo; field in NewXmlFileCreationPage
450 mTypeCombo = new Combo(composite, SWT.DROP_DOWN | SWT.READ_ONLY); in createControl()
451 mTypeCombo.setToolTipText("What type of resource would you like to create?"); in createControl()
452 mTypeCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); in createControl()
454 mTypeCombo.setEnabled(false); in createControl()
456 mTypeCombo.addSelectionListener(new SelectionAdapter() { in createControl()
547 TypeInfo[] types = (TypeInfo[]) mTypeCombo.getData(); in initialSelectType()
554 mTypeCombo.select(typeIndex); in initialSelectType()
942 TypeInfo[] types = (TypeInfo[]) mTypeCombo.getData(); in setSelectedType()
946 mTypeCombo.select(i); in setSelectedType()
[all …]