HomeSort by relevance Sort by last modified time
    Searched refs:Composite (Results 126 - 150 of 279) sorted by null

1 2 3 4 56 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutWizard.java 40 import org.eclipse.swt.widgets.Composite;
76 public void createControl(Composite parent) {
77 Composite composite = new Composite(parent, SWT.NONE); local
78 composite.setLayout(new GridLayout(2, false));
80 Label fromLabel = new Label(composite, SWT.NONE);
85 Label typeLabel = new Label(composite, SWT.NONE);
89 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
104 mFlatten = new Button(composite, SWT.CHECK)
    [all...]
ChangeViewWizard.java 37 import org.eclipse.swt.widgets.Composite;
83 public void createControl(Composite parent) {
84 Composite composite = new Composite(parent, SWT.NONE); local
85 composite.setLayout(new GridLayout(2, false));
87 Label typeLabel = new Label(composite, SWT.NONE);
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
98 setControl(composite);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
EditableDialogCellEditor.java 37 import org.eclipse.swt.widgets.Composite;
63 EditableDialogCellEditor(Composite parent) {
72 protected Button createButton(Composite parent) {
80 protected Control createContents(Composite cell) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AndroidPreferencePage.java 34 import org.eclipse.swt.widgets.Composite;
113 public SdkDirectoryFieldEditor(String name, String labelText, Composite parent) {
177 public Text getTextControl(Composite parent) {
186 protected void doFillIntoGrid(Composite parent, int numColumns) {
  /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;
96 public void createControl(final Composite parent) {
97 final Composite composite = new Composite(parent, SWT.NONE); local
98 composite.setLayout(new GridLayout(2, false));
100 final Label label = new Label(composite, SWT.NONE);
105 this.mProjectsCombo = new Combo(composite, SWT.READ_ONLY);
130 setControl(composite);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
AndroidPropertyPage.java 37 import org.eclipse.swt.widgets.Composite;
63 protected Control createContents(Composite parent) {
74 Composite top = new Composite(parent, SWT.NONE);
LibraryProperties.java 43 import org.eclipse.swt.widgets.Composite;
59 private Composite mTop;
123 LibraryProperties(Composite parent) {
129 mTop = new Composite(parent, SWT.NONE);
157 Composite buttons = new Composite(mTop, SWT.NONE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 39 import org.eclipse.swt.widgets.Composite;
100 protected Control createContents(Composite parent) {
102 Composite panel = new Composite(parent, SWT.NONE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SampleSelectionPage.java 41 import org.eclipse.swt.widgets.Composite;
72 public void createControl(Composite parent) {
73 Composite container = new Composite(parent, SWT.NULL);
TestTargetPage.java 40 import org.eclipse.swt.widgets.Composite;
72 public void createControl(Composite parent) {
73 Composite container = new Composite(parent, SWT.NULL);
  /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;
81 public void createControl(Composite parent) {
84 Composite composite = new Composite(parent, SWT.NULL); local
85 composite.setLayout(new GridLayout(2, false /* makeColumnsEqualWidth */));
86 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
89 Label label = new Label(composite, SWT.NONE);
94 mConfigSelector = new ConfigurationSelector(composite, SelectorMode.DEFAULT);
106 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL)
    [all...]
  /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(GLFramesView view, 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.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
VboDetailProvider.java 32 import org.eclipse.swt.widgets.Composite;
51 private Composite mComposite;
67 public void createControl(Composite parent) {
68 mComposite = new Composite(parent, SWT.NONE);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
AuthenticationDialog.java 24 import org.eclipse.swt.widgets.Composite;
62 public void createDialogContent(Composite parent) {
68 // Upper Composite
69 Composite upperComposite = new Composite(parent, SWT.NONE);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
EditFilterDialog.java 31 import org.eclipse.swt.widgets.Composite;
158 Composite nameComposite = new Composite(mShell, SWT.NONE);
192 Composite main = new Composite(mShell, SWT.NONE);
282 Composite bottomComp = new Composite(mShell, SWT.NONE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/
StaticPortConfigDialog.java 29 import org.eclipse.swt.widgets.Composite;
141 Composite main = new Composite(mShell, SWT.NONE);
164 Composite buttons = new Composite(main, SWT.NONE);
223 Composite bottomComp = new Composite(mShell, SWT.NONE);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 24 import org.eclipse.swt.widgets.Composite;
51 public static Control createTooltipControl(Composite parent, String header, String details) {
55 public static Control createTooltipControl(Composite parent,
90 private static Control createTooltipControl_Browser(Composite parent,
300 private static Control createTooltipControl_Label(Composite parent, String html) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 51 import org.eclipse.swt.widgets.Composite;
70 private Composite mParent;
72 private Composite mContents;
255 public void createPartControl(Composite parent) {
261 mContents = new Composite(mParent, SWT.NONE);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
CaptureDisplay.java 38 import org.eclipse.swt.widgets.Composite;
51 private static Composite sButtonBar;
98 sButtonBar = new Composite(sShell, SWT.NONE);
103 Composite buttons = new Composite(sButtonBar, SWT.NONE);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapPanel.java 53 import org.eclipse.swt.widgets.Composite;
477 protected Control createControl(Composite parent) {
480 Composite c = new Composite(parent, SWT.NONE);
494 private void createControlsSection(Composite parent) {
495 Composite c = new Composite(parent, SWT.NONE);
507 private void createGetHeapDataSection(Composite parent) {
508 Composite c = new Composite(parent, SWT.NONE)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CComboBox.java 44 import org.eclipse.swt.widgets.Composite;
66 public class CComboBox extends Composite {
80 public CComboBox(Composite parent, int style) {
144 protected void createContents(Composite parent) {
154 protected void createText(Composite parent) {
238 protected void createButton(Composite parent) {
253 protected void createImage(Composite parent) {
271 protected void createPopup(Composite parent) {
280 protected void createTable(Composite parent) {
CFlatButton.java 24 import org.eclipse.swt.widgets.Composite;
59 public CFlatButton(Composite parent, int style) {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventValueSelector.java 36 import org.eclipse.swt.widgets.Composite;
236 new Composite(mShell, SWT.NONE).setLayoutData(gd = new GridData());
327 // add a composite to hold the ok/cancel button, no matter what the columns size are.
328 Composite buttonComp = new Composite(mShell, SWT.NONE);
336 Composite padding = new Composite(mShell, SWT.NONE);
352 padding = new Composite(mShell, SWT.NONE);
355 padding = new Composite(mShell, SWT.NONE);
373 padding = new Composite(mShell, SWT.NONE)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SysinfoPanel.java 34 import org.eclipse.swt.widgets.Composite;
230 protected Control createControl(Composite parent) {
231 Composite top = new Composite(parent, SWT.NONE);
235 Composite buttons = new Composite(top, SWT.NONE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmulatorConfigTab.java 53 import org.eclipse.swt.widgets.Composite;
132 * @see org.eclipse.debug.ui.ILaunchConfigurationTab#createControl(org.eclipse.swt.widgets.Composite)
135 public void createControl(Composite parent) {
146 Composite topComp = new Composite(parent, SWT.NONE);
188 Composite offsetComp = new Composite(targetModeGroup, SWT.NONE);

Completed in 962 milliseconds

1 2 3 4 56 7 8 91011>>