Home
last modified time | relevance | path

Searched refs:toolBar (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/gle2/
DLayoutActionBar.java313 private static void addSeparator(ToolBar toolBar) { in addSeparator() argument
314 int n = toolBar.getItemCount(); in addSeparator()
315 if (n > 0 && (toolBar.getItem(n - 1).getStyle() & SWT.SEPARATOR) == 0) { in addSeparator()
316 ToolItem separator = new ToolItem(toolBar, SWT.SEPARATOR); in addSeparator()
480 ToolBar toolBar = new ToolBar(this, SWT.FLAT | SWT.RIGHT | SWT.HORIZONTAL); in createZoomControls() local
483 mZoomRealSizeButton = new ToolItem(toolBar, SWT.CHECK); in createZoomControls()
501 mZoomFitButton = new ToolItem(toolBar, SWT.PUSH); in createZoomControls()
511 mZoomResetButton = new ToolItem(toolBar, SWT.PUSH); in createZoomControls()
522 new ToolItem(toolBar, SWT.SEPARATOR); in createZoomControls()
524 mZoomOutButton = new ToolItem(toolBar, SWT.PUSH); in createZoomControls()
[all …]
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
DWorkspace.java450 JToolBar toolBar = new JToolBar(); in buildToolBar() local
451 toolBar.setFloatable(false); in buildToolBar()
452 toolBar.setRollover(true); in buildToolBar()
458 toolBar.add(startButton); in buildToolBar()
464 toolBar.add(stopButton); in buildToolBar()
470 toolBar.add(refreshButton); in buildToolBar()
476 toolBar.add(showDevicesButton); in buildToolBar()
483 toolBar.add(loadButton); in buildToolBar()
489 toolBar.add(displayNodeButton); in buildToolBar()
500 toolBar.add(captureLayersButton); in buildToolBar()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DConfigurationChooser.java205 ToolBar toolBar = new ToolBar(this, SWT.WRAP | SWT.FLAT | SWT.RIGHT | SWT.HORIZONTAL); in ConfigurationChooser() local
206 toolBar.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); in ConfigurationChooser()
208 mConfigCombo = new ToolItem(toolBar, SWT.DROP_DOWN ); in ConfigurationChooser()
213 ToolItem separator2 = new ToolItem(toolBar, SWT.SEPARATOR); in ConfigurationChooser()
215 mDeviceCombo = new ToolItem(toolBar, SWT.DROP_DOWN); in ConfigurationChooser()
219 ToolItem separator3 = new ToolItem(toolBar, SWT.SEPARATOR); in ConfigurationChooser()
221 mOrientationCombo = new ToolItem(toolBar, SWT.DROP_DOWN); in ConfigurationChooser()
226 ToolItem separator4 = new ToolItem(toolBar, SWT.SEPARATOR); in ConfigurationChooser()
228 mThemeCombo = new ToolItem(toolBar, SWT.DROP_DOWN); in ConfigurationChooser()
232 ToolItem separator5 = new ToolItem(toolBar, SWT.SEPARATOR); in ConfigurationChooser()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DGLFunctionTraceViewer.java477 ToolBar toolBar = new ToolBar(c, SWT.FLAT | SWT.BORDER); in createOptionsBar() local
479 mExpandAllToolItem = new ToolItem(toolBar, SWT.PUSH); in createOptionsBar()
489 mCollapseAllToolItem = new ToolItem(toolBar, SWT.PUSH); in createOptionsBar()
495 mSaveAsToolItem = new ToolItem(toolBar, SWT.PUSH); in createOptionsBar()