Lines Matching refs:swt
66 import org.eclipse.swt.SWT;
67 import org.eclipse.swt.SWTException;
68 import org.eclipse.swt.custom.SashForm;
69 import org.eclipse.swt.custom.StackLayout;
70 import org.eclipse.swt.events.SelectionEvent;
71 import org.eclipse.swt.events.SelectionListener;
72 import org.eclipse.swt.graphics.Image;
73 import org.eclipse.swt.graphics.Rectangle;
74 import org.eclipse.swt.layout.FillLayout;
75 import org.eclipse.swt.layout.FormAttachment;
76 import org.eclipse.swt.layout.FormData;
77 import org.eclipse.swt.layout.FormLayout;
78 import org.eclipse.swt.layout.GridData;
79 import org.eclipse.swt.layout.GridLayout;
80 import org.eclipse.swt.layout.RowLayout;
81 import org.eclipse.swt.widgets.Button;
82 import org.eclipse.swt.widgets.Composite;
83 import org.eclipse.swt.widgets.Control;
84 import org.eclipse.swt.widgets.Display;
85 import org.eclipse.swt.widgets.Label;
86 import org.eclipse.swt.widgets.ProgressBar;
87 import org.eclipse.swt.widgets.Shell;
220 // create this only once the window is opened to please SWT on Mac
231 Composite control = new Composite(parent, SWT.NONE);
236 mMainWindow = new Composite(control, SWT.NONE);
254 mStatusBar = new Composite(parent, SWT.NONE);
262 mDeviceViewButton = new Button(mStatusBar, SWT.TOGGLE);
270 mTreeViewButton = new Button(mStatusBar, SWT.TOGGLE);
279 mPixelPerfectButton = new Button(mStatusBar, SWT.TOGGLE);
292 treeViewControlsFormData.top = new FormAttachment(mTreeViewButton, 0, SWT.CENTER);
297 mProgressLabel = new Label(mStatusBar, SWT.RIGHT);
299 mProgressBar = new ProgressBar(mStatusBar, SWT.HORIZONTAL | SWT.INDETERMINATE | SWT.SMOOTH);
302 progressBarFormData.top = new FormAttachment(mTreeViewButton, 0, SWT.CENTER);
307 progressLabelFormData.top = new FormAttachment(mTreeViewButton, 0, SWT.CENTER);
319 mDeviceSelectorPanel = new Composite(parent, SWT.NONE);
325 Composite buttonPanel = new Composite(mDeviceSelectorPanel, SWT.NONE);
333 Composite innerButtonPanel = new Composite(buttonPanel, SWT.NONE);
352 Composite deviceSelectorContainer = new Composite(mDeviceSelectorPanel, SWT.BORDER);
359 mTreeViewPanel = new Composite(parent, SWT.NONE);
365 Composite buttonPanel = new Composite(mTreeViewPanel, SWT.NONE);
373 Composite innerButtonPanel = new Composite(buttonPanel, SWT.NONE);
407 SashForm mainSash = new SashForm(mTreeViewPanel, SWT.HORIZONTAL | SWT.SMOOTH);
409 Composite treeViewContainer = new Composite(mainSash, SWT.BORDER);
413 SashForm sideSash = new SashForm(mainSash, SWT.VERTICAL | SWT.SMOOTH);
420 Composite treeViewOverviewContainer = new Composite(sideSash, SWT.BORDER);
424 Composite propertyViewerContainer = new Composite(sideSash, SWT.BORDER);
428 Composite layoutViewerContainer = new Composite(sideSash, SWT.NONE);
434 Composite fullButtonBar = new Composite(layoutViewerContainer, SWT.NONE);
442 Composite buttonBar = new Composite(fullButtonBar, SWT.NONE);
444 RowLayout rowLayout = new RowLayout(SWT.HORIZONTAL);
451 mOnBlackWhiteButton = new Button(buttonBar, SWT.PUSH);
456 mShowExtras = new Button(buttonBar, SWT.CHECK);
466 Composite layoutViewerMainContainer = new Composite(layoutViewerContainer, SWT.BORDER);
479 mPixelPerfectPanel = new Composite(parent, SWT.NONE);
485 Composite buttonPanel = new Composite(mPixelPerfectPanel, SWT.NONE);
493 Composite innerButtonPanel = new Composite(buttonPanel, SWT.NONE);
524 SashForm mainSash = new SashForm(mPixelPerfectPanel, SWT.HORIZONTAL | SWT.SMOOTH);
528 Composite pixelPerfectTreeContainer = new Composite(mainSash, SWT.BORDER);
532 Composite pixelPerfectLoupeContainer = new Composite(mainSash, SWT.NONE);
538 Composite pixelPerfectLoupeBorder = new Composite(pixelPerfectLoupeContainer, SWT.BORDER);
559 Composite pixelPerfectContainer = new Composite(mainSash, SWT.BORDER);