Home
last modified time | relevance | path

Searched refs:composite (Results 1 – 25 of 33) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
DKeyCreationPage.java68 Composite composite = new Composite(parent, SWT.NULL); in createControl() local
69 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); in createControl()
71 composite.setLayout(gl); in createControl()
75 new Label(composite, SWT.NONE).setText("Alias:"); in createControl()
76 mAlias = new Text(composite, SWT.BORDER); in createControl()
79 new Label(composite, SWT.NONE).setText("Password:"); in createControl()
80 mKeyPassword = new Text(composite, SWT.BORDER | SWT.PASSWORD); in createControl()
84 new Label(composite, SWT.NONE).setText("Confirm:"); in createControl()
85 mKeyPassword2 = new Text(composite, SWT.BORDER | SWT.PASSWORD); in createControl()
89 new Label(composite, SWT.NONE).setText("Validity (years):"); in createControl()
[all …]
DKeystoreSelectionPage.java64 Composite composite = new Composite(parent, SWT.NULL); in createControl() local
65 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); in createControl()
67 composite.setLayout(gl); in createControl()
71 mUseExistingKeystore = new Button(composite, SWT.RADIO); in createControl()
77 mCreateKeystore = new Button(composite, SWT.RADIO); in createControl()
82 new Label(composite, SWT.NONE).setText("Location:"); in createControl()
83 mKeystore = new Text(composite, SWT.BORDER); in createControl()
85 final Button browseButton = new Button(composite, SWT.PUSH); in createControl()
106 new Label(composite, SWT.NONE).setText("Password:"); in createControl()
107 mKeystorePassword = new Text(composite, SWT.BORDER | SWT.PASSWORD); in createControl()
[all …]
DKeySelectionPage.java71 Composite composite = new Composite(parent, SWT.NULL); in createControl() local
72 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); in createControl()
74 composite.setLayout(gl); in createControl()
78 mUseExistingKey = new Button(composite, SWT.RADIO); in createControl()
84 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData()); in createControl()
87 mKeyAliasesLabel = new Label(composite, SWT.NONE); in createControl()
89 mKeyAliases = new Combo(composite, SWT.READ_ONLY); in createControl()
92 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData()); in createControl()
95 mKeyPasswordLabel = new Label(composite, SWT.NONE); in createControl()
97 mKeyPassword = new Text(composite, SWT.BORDER | SWT.PASSWORD); in createControl()
[all …]
DKeyCheckPage.java97 Composite composite = new Composite(parent, SWT.NULL); in createControl() local
98 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); in createControl()
101 composite.setLayout(gl); in createControl()
105 new Label(composite, SWT.NONE).setText("Destination APK file:"); in createControl()
106 mDestination = new Text(composite, SWT.BORDER); in createControl()
114 final Button browseButton = new Button(composite, SWT.PUSH); in createControl()
134 mScrolledComposite = new ScrolledComposite(composite, SWT.V_SCROLL); in createControl()
150 setControl(composite); in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/wizards/
DAddNativeWizardPage.java63 Composite composite = new Composite(container, SWT.NONE); in createControl() local
64 composite.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); in createControl()
65 composite.setLayout(new GridLayout(3, false)); in createControl()
67 Label lblLib = new Label(composite, SWT.NONE); in createControl()
70 libraryNameText = new Text(composite, SWT.BORDER); in createControl()
74 Label lblso = new Label(composite, SWT.NONE); in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiFlagAttributeNode.java91 Composite composite = toolkit.createComposite(parent); in createUiControl() local
92 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE)); in createUiControl()
95 composite.setLayout(gl); in createUiControl()
98 toolkit.paintBordersFor(composite); in createUiControl()
100 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
104 final Button selectButton = toolkit.createButton(composite, "Select...", SWT.PUSH); in createUiControl()
222 Composite composite= new Composite(parent, SWT.NONE); in createDialogArea() local
223 composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); in createDialogArea()
224 composite.setLayout(new GridLayout(1, true)); in createDialogArea()
225 composite.setFont(parent.getFont()); in createDialogArea()
[all …]
DUiResourceAttributeNode.java117 Composite composite = toolkit.createComposite(parent); in createUiControl() local
118 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE)); in createUiControl()
121 composite.setLayout(gl); in createUiControl()
124 toolkit.paintBordersFor(composite); in createUiControl()
126 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
130 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH); in createUiControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DExtractIncludeWizard.java64 Composite composite = new Composite(parent, SWT.NONE); in createControl() local
65 composite.setLayout(new GridLayout(2, false)); in createControl()
67 Label nameLabel = new Label(composite, SWT.NONE); in createControl()
71 mNameText = new Text(composite, SWT.BORDER); in createControl()
75 mReplaceAllOccurrences = new Button(composite, SWT.CHECK); in createControl()
89 setControl(composite); in createControl()
DExtractStyleWizard.java106 Composite composite = new Composite(parent, SWT.NONE); in createControl() local
107 composite.setLayout(new GridLayout(2, false)); in createControl()
109 Label nameLabel = new Label(composite, SWT.NONE); in createControl()
113 mNameText = new Text(composite, SWT.BORDER); in createControl()
117 mRemoveExtracted = new Button(composite, SWT.CHECK); in createControl()
123 mRemoveAll = new Button(composite, SWT.CHECK); in createControl()
131 mExtend = new Button(composite, SWT.CHECK); in createControl()
139 mSetStyle = new Button(composite, SWT.CHECK); in createControl()
145 new Label(composite, SWT.NONE); in createControl()
146 new Label(composite, SWT.NONE); in createControl()
[all …]
DChangeLayoutWizard.java77 Composite composite = new Composite(parent, SWT.NONE); in createControl() local
78 composite.setLayout(new GridLayout(2, false)); in createControl()
80 Label fromLabel = new Label(composite, SWT.NONE); in createControl()
85 Label typeLabel = new Label(composite, SWT.NONE); in createControl()
89 mTypeCombo = new Combo(composite, SWT.READ_ONLY); in createControl()
104 mFlatten = new Button(composite, SWT.CHECK); in createControl()
156 setControl(composite); in createControl()
DWrapInWizard.java84 Composite composite = new Composite(parent, SWT.NONE); in createControl() local
85 composite.setLayout(new GridLayout(2, false)); in createControl()
87 Label typeLabel = new Label(composite, SWT.NONE); in createControl()
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY); in createControl()
95 Label idLabel = new Label(composite, SWT.NONE); in createControl()
99 mIdText = new Text(composite, SWT.BORDER); in createControl()
107 setControl(composite); in createControl()
DChangeViewWizard.java84 Composite composite = new Composite(parent, SWT.NONE); in createControl() local
85 composite.setLayout(new GridLayout(2, false)); in createControl()
87 Label typeLabel = new Label(composite, SWT.NONE); in createControl()
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY); in createControl()
98 setControl(composite); in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DAccordionControl.java86 Composite composite = new Composite(parent, style); in createChildContainer() local
90 composite.setLayout(layout); in createChildContainer()
100 composite.setLayout(layout); in createChildContainer()
104 return composite; in createChildContainer()
339 Composite composite = createChildContainer(scrolledComposite, header, SWT.NONE); in toggle() local
340 createChildren(composite, header); in toggle()
341 while (composite.getParent() != scrolledComposite) { in toggle()
342 composite = composite.getParent(); in toggle()
344 scrolledComposite.setContent(composite); in toggle()
345 scrolledComposite.setMinSize(composite.computeSize(SWT.DEFAULT, SWT.DEFAULT)); in toggle()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
DChooseConfigurationPage.java83 Composite composite = new Composite(parent, SWT.NULL); in createControl() local
84 composite.setLayout(new GridLayout(2, false /* makeColumnsEqualWidth */)); in createControl()
85 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); in createControl()
88 Label label = new Label(composite, SWT.NONE); in createControl()
93 mConfigSelector = new ConfigurationSelector(composite, SelectorMode.DEFAULT); in createControl()
105 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL); in createControl()
109 Label folderLabel = new Label(composite, SWT.NONE); in createControl()
113 mWsFolderPathTextField = new Text(composite, SWT.BORDER); in createControl()
123 setControl(composite); in createControl()
DNewXmlFileCreationPage.java442 Composite composite = new Composite(parent, SWT.NULL); in createControl() local
443 composite.setLayout(new GridLayout(2, false /*makeColumnsEqualWidth*/)); in createControl()
444 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); in createControl()
447 Label typeLabel = new Label(composite, SWT.NONE); in createControl()
450 mTypeCombo = new Combo(composite, SWT.DROP_DOWN | SWT.READ_ONLY); in createControl()
467 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL); in createControl()
475 Label projectLabel = new Label(composite, SWT.NONE); in createControl()
482 mProjectButton = new ProjectCombo(helper, composite, mValues.project); in createControl()
496 Label fileLabel = new Label(composite, SWT.NONE); in createControl()
500 mFileNameTextField = new Text(composite, SWT.BORDER); in createControl()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
DSectionHelper.java195 static public Composite createTableLayout(Composite composite, FormToolkit toolkit, in createTableLayout() argument
197 Composite table = toolkit.createComposite(composite); in createTableLayout()
202 if (composite instanceof Section) { in createTableLayout()
203 ((Section) composite).setClient(table); in createTableLayout()
218 static public Composite createGridLayout(Composite composite, FormToolkit toolkit, in createGridLayout() argument
220 Composite grid = toolkit.createComposite(composite); in createGridLayout()
225 if (composite instanceof Section) { in createGridLayout()
226 ((Section) composite).setClient(grid); in createGridLayout()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
DXmlPropertyComposite.java117 XmlPropertyComposite composite = new XmlPropertyComposite(xmlProperties[0], xmlProperties); in create() local
118 composite.setCategory(xmlProperties[0].getCategory()); in create()
119 return composite; in create()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DAndroidClasspathContainerPage.java97 final Composite composite = new Composite(parent, SWT.NONE); in createControl() local
98 composite.setLayout(new GridLayout(2, false)); in createControl()
100 final Label label = new Label(composite, SWT.NONE); in createControl()
105 this.mProjectsCombo = new Combo(composite, SWT.READ_ONLY); in createControl()
130 setControl(composite); in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DWorkingSetGroup.java47 public Composite createControl(Composite composite) { in createControl() argument
48 Group workingSetGroup = new Group(composite, SWT.NONE); in createControl()
49 workingSetGroup.setFont(composite.getFont()); in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
DUiPackageAttributeNode.java113 Composite composite = toolkit.createComposite(parent); in createUiControl() local
114 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE)); in createUiControl()
117 composite.setLayout(gl); in createUiControl()
120 toolkit.paintBordersFor(composite); in createUiControl()
122 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
129 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH); in createUiControl()
DUiManifestPkgAttrNode.java113 Composite composite = toolkit.createComposite(parent); in createUiControl() local
114 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE)); in createUiControl()
117 composite.setLayout(gl); in createUiControl()
120 toolkit.paintBordersFor(composite); in createUiControl()
122 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
129 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH); in createUiControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
DNdkDebuggerTab.java149 Composite composite = new Composite(grpSharedLibraries, SWT.NONE); in createControl() local
150 composite.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 1, 1)); in createControl()
151 composite.setLayout(new RowLayout(SWT.VERTICAL)); in createControl()
153 mAddSolibButton = new Button(composite, SWT.NONE); in createControl()
156 mDeleteSolibButton = new Button(composite, SWT.NONE); in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DDeviceChooserDialog.java336 Composite composite = new Composite(parent, SWT.NONE); in createButtonBar() local
340 composite.setLayout(layout); in createButtonBar()
341 composite.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); in createButtonBar()
343 mUseDeviceForFutureLaunchesCheckbox = new Button(composite, SWT.CHECK); in createButtonBar()
357 createButton(composite, IDialogConstants.OK_ID, IDialogConstants.OK_LABEL, true); in createButtonBar()
358 createButton(composite, IDialogConstants.CANCEL_ID, IDialogConstants.CANCEL_LABEL, false); in createButtonBar()
360 return composite; in createButtonBar()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
DStatusPanel.java310 public ZoomControl(Composite composite) { in ZoomControl() argument
311 minLabel = new Label(composite, SWT.RIGHT); in ZoomControl()
312 scale = new Scale(composite, SWT.HORIZONTAL); in ZoomControl()
313 maxLabel = new Label(composite, SWT.LEFT); in ZoomControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DNewProjectWizard.java331 CompositeChange composite = new CompositeChange("", in performFinish()
333 composite.perform(monitor); in performFinish()
422 CompositeChange composite = new CompositeChange("", in generateActivity() local
424 composite.perform(monitor); in generateActivity()

12