/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/ |
KeyCreationPage.java | 31 import org.eclipse.swt.widgets.Composite; 66 public void createControl(Composite parent) { 67 Composite composite = new Composite(parent, SWT.NULL); local 68 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); 70 composite.setLayout(gl); 74 new Label(composite, SWT.NONE).setText("Alias:"); 75 mAlias = new Text(composite, SWT.BORDER); 78 new Label(composite, SWT.NONE).setText("Password:") [all...] |
KeystoreSelectionPage.java | 32 import org.eclipse.swt.widgets.Composite; 62 public void createControl(Composite parent) { 63 Composite composite = new Composite(parent, SWT.NULL); local 64 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); 66 composite.setLayout(gl); 70 mUseExistingKeystore = new Button(composite, SWT.RADIO); 76 mCreateKeystore = new Button(composite, SWT.RADIO); 81 new Label(composite, SWT.NONE).setText("Location:") [all...] |
KeySelectionPage.java | 33 import org.eclipse.swt.widgets.Composite; 69 public void createControl(Composite parent) { 70 Composite composite = new Composite(parent, SWT.NULL); local 71 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); 73 composite.setLayout(gl); 77 mUseExistingKey = new Button(composite, SWT.RADIO); 83 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData()) [all...] |
KeyCheckPage.java | 35 import org.eclipse.swt.widgets.Composite; 79 public void createControl(Composite parent) { 84 Composite composite = new Composite(parent, SWT.NULL); local 85 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); 88 composite.setLayout(gl); 92 new Label(composite, SWT.NONE).setText("Destination APK file:"); 93 mDestination = new Text(composite, SWT.BORDER); 100 final Button browseButton = new Button(composite, SWT.PUSH) [all...] |
/sdk/sdkstats/src/com/android/sdkstats/ |
SdkStatsPermissionDialog.java | 30 import org.eclipse.swt.widgets.Composite; 95 protected void createButtonsForButtonBar(Composite parent) { 100 protected Control createDialogArea(Composite parent) { 101 Composite composite = (Composite) super.createDialogArea(parent); local 102 composite.setLayout(new GridLayout(1, false)); 104 final Label title = new Label(composite, SWT.CENTER | SWT.WRAP); 113 final Label notice = new Label(composite, SWT.WRAP); 120 final Label bodyText = new Label(composite, SWT.WRAP) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/wizards/ |
AddNativeWizardPage.java | 26 import org.eclipse.swt.widgets.Composite;
54 public void createControl(Composite parent) {
55 Composite container = new Composite(parent, SWT.NULL);
62 Composite composite = new Composite(container, SWT.NONE);
local 63 composite.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
64 composite.setLayout(new GridLayout(3, false));
66 Label lblLib = new Label(composite, SWT.NONE); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiFlagAttributeNode.java | 39 import org.eclipse.swt.widgets.Composite; 82 public void createUiControl(Composite parent, IManagedForm managedForm) { 91 Composite composite = toolkit.createComposite(parent); local 92 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE)); 95 composite.setLayout(gl); 98 toolkit.paintBordersFor(composite); 100 final Text text = toolkit.createText(composite, getCurrentValue()); 102 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK 104 final Button selectButton = toolkit.createButton(composite, "Select...", SWT.PUSH) 222 Composite composite= new Composite(parent, SWT.NONE); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeWizard.java | 29 import org.eclipse.swt.widgets.Composite; 62 public void createControl(Composite parent) { 63 Composite composite = new Composite(parent, SWT.NONE); local 64 composite.setLayout(new GridLayout(2, false)); 66 Label nameLabel = new Label(composite, SWT.NONE); 70 mNameText = new Text(composite, SWT.BORDER); 74 mReplaceAllOccurrences = new Button(composite, SWT.CHECK); 88 setControl(composite); [all...] |
ChangeLayoutWizard.java | 40 import org.eclipse.swt.widgets.Composite; 75 public void createControl(Composite parent) { 76 Composite composite = new Composite(parent, SWT.NONE); local 77 composite.setLayout(new GridLayout(2, false)); 79 Label fromLabel = new Label(composite, SWT.NONE); 84 Label typeLabel = new Label(composite, SWT.NONE); 88 mTypeCombo = new Combo(composite, SWT.READ_ONLY); 103 mFlatten = new Button(composite, SWT.CHECK) [all...] |
ExtractStyleWizard.java | 43 import org.eclipse.swt.widgets.Composite; 101 public void createControl(Composite parent) { 104 Composite composite = new Composite(parent, SWT.NONE); local 105 composite.setLayout(new GridLayout(2, false)); 107 Label nameLabel = new Label(composite, SWT.NONE); 111 mNameText = new Text(composite, SWT.BORDER); 115 mRemoveExtracted = new Button(composite, SWT.CHECK); 121 mRemoveAll = new Button(composite, SWT.CHECK) [all...] |
ChangeViewWizard.java | 37 import org.eclipse.swt.widgets.Composite; 82 public void createControl(Composite parent) { 83 Composite composite = new Composite(parent, SWT.NONE); local 84 composite.setLayout(new GridLayout(2, false)); 86 Label typeLabel = new Label(composite, SWT.NONE); 90 mTypeCombo = new Combo(composite, SWT.READ_ONLY); 97 setControl(composite);
|
WrapInWizard.java | 43 import org.eclipse.swt.widgets.Composite; 82 public void createControl(Composite parent) { 83 Composite composite = new Composite(parent, SWT.NONE); local 84 composite.setLayout(new GridLayout(2, false)); 86 Label typeLabel = new Label(composite, SWT.NONE); 90 mTypeCombo = new Combo(composite, SWT.READ_ONLY); 94 Label idLabel = new Label(composite, SWT.NONE); 98 mIdText = new Text(composite, SWT.BORDER) [all...] |
/external/webkit/Source/WebKit/chromium/public/ |
WebWidget.h | 82 virtual void composite(bool finish) = 0;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/ |
ChooseConfigurationPage.java | 37 import org.eclipse.swt.widgets.Composite; 80 public void createControl(Composite parent) { 83 Composite composite = new Composite(parent, SWT.NULL); local 84 composite.setLayout(new GridLayout(2, false /* makeColumnsEqualWidth */)); 85 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); 88 Label label = new Label(composite, SWT.NONE); 93 mConfigSelector = new ConfigurationSelector(composite, SelectorMode.DEFAULT); 105 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
AccordionControl.java | 38 import org.eclipse.swt.widgets.Composite; 53 * composite which is created to hold the children items, to for example allow multiple 65 public abstract class AccordionControl extends Composite { 85 protected Composite createChildContainer(Composite parent, Object header, int style) { 86 Composite composite = new Composite(parent, style); local 90 composite.setLayout(layout); 100 composite.setLayout(layout) 339 Composite composite = createChildContainer(scrolledComposite, header, SWT.NONE); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
SectionHelper.java | 30 import org.eclipse.swt.widgets.Composite; 72 public ManifestSectionPart(Composite body, FormToolkit toolkit) { 88 public ManifestSectionPart(Composite body, FormToolkit toolkit, 98 * Creates a new composite with a TableWrapLayout set with a given number of columns. 100 * If the parent composite is a Section, the new composite is set as a client. 104 * @return The new composite. 106 public Composite createTableLayout(FormToolkit toolkit, int numColumns) { 114 * @param parent The parent (e.g. composite from CreateTableLayout()) 120 public Label createLabel(Composite parent, FormToolkit toolkit, String label [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
WorkingSetGroup.java | 20 import org.eclipse.swt.widgets.Composite; 47 public Composite createControl(Composite composite) { 48 Group workingSetGroup = new Group(composite, SWT.NONE); 49 workingSetGroup.setFont(composite.getFont()); 92 * Finds the first button of style Checkbox in the given parent composite. 95 private Button findCheckbox(Composite parent) { 99 } else if (control instanceof Composite) { 100 Button found = findCheckbox((Composite) control) [all...] |
/development/tools/glesv2debugger/src/com/android/glesv2debugger/ |
BreakpointOption.java | 35 import org.eclipse.swt.widgets.Composite; 49 BreakpointOption(SampleView sampleView, Composite parent) { 53 Composite composite = new Composite(this, 0); local 56 composite.setLayout(layout); 60 Group group = new Group(composite, 0); 71 Point size = composite.computeSize(SWT.DEFAULT, SWT.DEFAULT); 72 composite.setSize(size); 73 this.setContent(composite); [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGFECompositeElement.cpp | 87 FEComposite* composite = static_cast<FEComposite*>(effect); local 89 return composite->setOperation(static_cast<CompositeOperationType>(_operator())); 91 return composite->setK1(k1()); 93 return composite->setK2(k2()); 95 return composite->setK3(k3()); 97 return composite->setK4(k4());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
BreakpointOption.java | 35 import org.eclipse.swt.widgets.Composite; 49 BreakpointOption(SampleView sampleView, Composite parent) { 53 Composite composite = new Composite(this, 0); local 56 composite.setLayout(layout); 60 Group group = new Group(composite, 0); 71 Point size = composite.computeSize(SWT.DEFAULT, SWT.DEFAULT); 72 composite.setSize(size); 73 this.setContent(composite); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
AndroidClasspathContainerPage.java | 39 import org.eclipse.swt.widgets.Composite; 93 public void createControl(final Composite parent) { 94 final Composite composite = new Composite(parent, SWT.NONE); local 95 composite.setLayout(new GridLayout(2, false)); 97 final Label label = new Label(composite, SWT.NONE); 102 this.mProjectsCombo = new Combo(composite, SWT.READ_ONLY); 127 setControl(composite);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/ |
UiManifestPkgAttrNode.java | 51 import org.eclipse.swt.widgets.Composite; 92 public void createUiControl(final Composite parent, final IManagedForm managedForm) { 113 Composite composite = toolkit.createComposite(parent); local 114 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE)); 117 composite.setLayout(gl); 120 toolkit.paintBordersFor(composite); 122 final Text text = toolkit.createText(composite, getCurrentValue()); 124 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK 129 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH) [all...] |
UiPackageAttributeNode.java | 53 import org.eclipse.swt.widgets.Composite; 92 public void createUiControl(final Composite parent, final IManagedForm managedForm) { 113 Composite composite = toolkit.createComposite(parent); local 114 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE)); 117 composite.setLayout(gl); 120 toolkit.paintBordersFor(composite); 122 final Text text = toolkit.createText(composite, getCurrentValue()); 124 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK 129 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH) [all...] |
/external/webkit/Source/WebKit/chromium/tests/ |
TransparencyWinTest.cpp | 129 helper.composite(); 151 helper.composite(); 165 helper.composite(); 181 helper.composite(); 203 helper.composite(); 222 helper.composite(); 238 helper.composite(); 253 helper.composite(); 269 helper.composite(); 295 helper.composite(); [all...] |
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
TransparencyWin.h | 142 void composite();
|