HomeSort by relevance Sort by last modified time
    Searched refs:mShell (Results 1 - 22 of 22) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureToolTip.java 59 private Shell mShell;
95 mShell = new Shell(parent.getShell(), SWT.ON_TOP | SWT.TOOL | SWT.NO_FOCUS);
96 mShell.setLayout(new FillLayout());
97 mShell.setAlpha(SHELL_TRANSPARENCY);
100 mLabel = new CLabel(mShell, SWT.SHADOW_NONE);
112 mShell.setVisible(false);
136 Point location = mShell.getDisplay().getCursorLocation();
154 mShell.pack(changed);
155 Point size = mShell.getSize();
174 mShell.setLocation(location)
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
SwtBaseDialog.java 68 private Shell mShell;
102 mShell.open();
103 mShell.layout();
118 mShell = new Shell(getParent(), SWT.DIALOG_TRIM | SWT.RESIZE | SWT.APPLICATION_MODAL);
119 mShell.setMinimumSize(new Point(450, 300));
120 mShell.setSize(450, 300);
122 mShell.setText(getText());
124 mShell.addDisposeListener(new DisposeListener() {
158 while (!mQuitRequested && !mShell.isDisposed()) {
186 return mShell;
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/
LogWindow.java 54 private Shell mShell;
89 while (!mShell.isDisposed()) {
106 mShell.open();
107 mShell.layout();
108 mShell.setVisible(false);
118 if (mShell != null && !mShell.isDisposed()) {
120 mShell.close();
121 mShell = null;
131 return mShell != null && !mShell.isDisposed() && mShell.isVisible()
    [all...]
AvdManagerWindowImpl1.java 76 protected Shell mShell;
136 mShell.open();
137 mShell.layout();
143 while (!mShell.isDisposed()) {
161 mShell = new Shell(mParentShell, style);
162 mShell.addDisposeListener(new DisposeListener() {
165 ShellSizeAndPos.saveSizeAndPos(mShell, SIZE_POS_PREFIX); //$hide$
176 mShell.setLayout(glShell);
178 mShell.setMinimumSize(new Point(500, 300));
179 mShell.setSize(700, 500)
    [all...]
SdkUpdaterWindowImpl2.java 79 protected Shell mShell;
142 mShell.open();
143 mShell.layout();
147 while (!mShell.isDisposed()) {
168 mShell = new Shell(mParentShell, style);
169 mShell.addDisposeListener(new DisposeListener() {
172 ShellSizeAndPos.saveSizeAndPos(mShell, SIZE_POS_PREFIX);
182 mShell.setLayout(glShell);
184 mShell.setMinimumSize(new Point(500, 300));
185 mShell.setSize(700, 500)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
EditFilterDialog.java 53 private Shell mShell;
96 if (mParent == null || mShell == null) {
100 mShell.setMinimumSize(DLG_WIDTH, DLG_HEIGHT);
107 mShell.setBounds(x, y, DLG_WIDTH, DLG_HEIGHT);
109 mShell.open();
112 while (!mShell.isDisposed()) {
146 mShell = new Shell(mParent, getStyle());
147 mShell.setText("Log Filter");
149 mShell.setLayout(new GridLayout(1, false));
151 mShell.addListener(SWT.Close, new Listener()
    [all...]
  /sdk/ddms/app/src/com/android/ddms/
StaticPortConfigDialog.java 65 private Shell mShell;
92 if (mParent == null || mShell == null) {
99 mShell.setMinimumSize(DLG_WIDTH, DLG_HEIGHT);
106 mShell.setBounds(x, y, DLG_WIDTH, DLG_HEIGHT);
108 mShell.pack();
111 mShell.open();
115 while (!mShell.isDisposed()) {
126 mShell = new Shell(mParent, getStyle());
127 mShell.setText("Static Port Configuration");
129 mShell.setLayout(new GridLayout(1, true))
    [all...]
StaticPortEditDialog.java 51 private Shell mShell;
108 if (mParent == null || mShell == null) {
112 mShell.setMinimumSize(DLG_WIDTH, DLG_HEIGHT);
119 mShell.setBounds(x, y, DLG_WIDTH, DLG_HEIGHT);
121 mShell.open();
124 while (!mShell.isDisposed()) {
146 mShell = new Shell(mParent, getStyle());
147 mShell.setText("Static Port");
149 mShell.setLayout(new GridLayout(1, false));
151 mShell.addListener(SWT.Close, new Listener()
    [all...]
DeviceCommandDialog.java 222 private Shell mShell;
233 mShell = shell;
275 mShell.getDisplay().asyncExec(new Runnable() {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventValueSelector.java 54 private Shell mShell;
121 if (mParent == null || mShell == null) {
131 mShell.setMinimumSize(DLG_WIDTH, DLG_HEIGHT);
138 mShell.setBounds(x, y, DLG_WIDTH, DLG_HEIGHT);
143 mShell.layout();
146 mShell.open();
150 while (!mShell.isDisposed()) {
166 mShell = new Shell(mParent, getStyle());
167 mShell.setText("Event Display Configuration");
169 mShell.setLayout(new GridLayout(2, false))
    [all...]
EventDisplayOptions.java 58 private Shell mShell;
149 if (mParent == null || mShell == null) {
154 mShell.setMinimumSize(DLG_WIDTH, DLG_HEIGHT);
161 mShell.setBounds(x, y, DLG_WIDTH, DLG_HEIGHT);
163 mShell.layout();
166 mShell.open();
170 while (!mShell.isDisposed()) {
184 mShell = new Shell(mParent, getStyle());
185 mShell.setText("Event Display Configuration");
187 mShell.setLayout(new GridLayout(1, true))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
ExportAction.java 37 private Shell mShell;
44 mShell = targetPart.getSite().getShell();
65 if (!EclipseLintRunner.runLintOnExport(mShell, project)) {
71 MessageDialog.openError(mShell, "Android Export",
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/
StaticPortEditDialog.java 51 private Shell mShell;
108 if (mParent == null || mShell == null) {
112 mShell.setMinimumSize(DLG_WIDTH, DLG_HEIGHT);
119 mShell.setBounds(x, y, DLG_WIDTH, DLG_HEIGHT);
121 mShell.open();
124 while (!mShell.isDisposed()) {
146 mShell = new Shell(mParent, getStyle());
147 mShell.setText("Static Port");
149 mShell.setLayout(new GridLayout(1, false));
151 mShell.addListener(SWT.Close, new Listener()
    [all...]
StaticPortConfigDialog.java 66 private Shell mShell;
93 if (mParent == null || mShell == null) {
100 mShell.setMinimumSize(DLG_WIDTH, DLG_HEIGHT);
107 mShell.setBounds(x, y, DLG_WIDTH, DLG_HEIGHT);
109 mShell.pack();
112 mShell.open();
116 while (!mShell.isDisposed()) {
127 mShell = new Shell(mParent, getStyle());
128 mShell.setText("Static Port Configuration");
130 mShell.setLayout(new GridLayout(1, true))
    [all...]
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/actions/
AboutAction.java 37 private Shell mShell;
41 this.mShell = shell;
58 new AboutDialog(mShell).open();
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/
CapturePSDAction.java 34 private Shell mShell;
38 this.mShell = shell;
55 HierarchyViewerDirector.getDirector().capturePSD(mShell);
DisplayViewAction.java 34 private Shell mShell;
38 this.mShell = shell;
55 HierarchyViewerDirector.getDirector().showCapture(mShell);
LoadOverlayAction.java 34 private Shell mShell;
38 this.mShell = shell;
55 HierarchyViewerDirector.getDirector().loadOverlay(mShell);
SavePixelPerfectAction.java 34 private Shell mShell;
38 this.mShell = shell;
55 HierarchyViewerDirector.getDirector().savePixelPerfect(mShell);
SaveTreeViewAction.java 34 private Shell mShell;
38 this.mShell = shell;
55 HierarchyViewerDirector.getDirector().saveTreeView(mShell);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/
ProgressTaskFactory.java 31 private final Shell mShell;
34 mShell = shell;
46 ProgressTask p = new ProgressTask(mShell, title);
ProgressTaskDialog.java 446 private Shell mShell;
451 mShell = shell;
458 AuthenticationDialog authenticationDialog = new AuthenticationDialog(mShell,

Completed in 748 milliseconds