/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/ |
GridDialog.java | 26 import org.eclipse.swt.widgets.Shell; 46 * @param parentShell the parent {@link Shell}. 50 public GridDialog(Shell parentShell, int numColumns, boolean makeColumnsEqualWidth) { 59 * passed to {@link #GridDialog(Shell, int, boolean)}.
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
ScreenShotDialog.java | 42 import org.eclipse.swt.widgets.Shell; 67 public ScreenShotDialog(Shell parent) { 75 public ScreenShotDialog(Shell parent, int style) { 86 Shell parent = getParent(); 87 Shell shell = new Shell(parent, getStyle()); local 88 shell.setText("Device Screen Capture"); 90 createContents(shell); 91 shell.pack() [all...] |
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
AvdManagerWindowImpl1.java | 45 import org.eclipse.swt.widgets.Shell;
57 private final Shell mParentShell;
66 protected Shell mShell;
73 * @param parentShell Parent shell.
80 Shell parentShell,
96 * @param parentShell Parent shell.
102 Shell parentShell,
142 // The AVD Manager must use a shell trim when standalone
149 mShell = new Shell(mParentShell, style);
295 * Creates the icon of the window shell. [all...] |
LogWindow.java | 37 import org.eclipse.swt.widgets.Shell;
53 private Shell mParentShell;
54 private Shell mShell;
77 public LogWindow(Shell parentShell, ISdkLog secondaryLog) {
150 mShell = new Shell(mParentShell, SWT.SHELL_TRIM | SWT.TOOL);
284 * Centers the dialog in its parent shell.
287 // Centers the dialog in its parent shell
288 Shell child = mShell;
|
ShellSizeAndPos.java | 25 import org.eclipse.swt.widgets.Shell;
45 public static void loadSizeAndPos(Shell shell, String prefix) {
60 for (Monitor monitor : shell.getDisplay().getMonitors()) {
63 // The shell is fully visible on this monitor. Just use that.
90 shell.setLocation(px, py);
91 shell.setSize(sx, sy);
100 public static void saveSizeAndPos(Shell shell, String prefix) {
103 Point loc = shell.getLocation(); [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
StringPropertyDialog.java | 19 import org.eclipse.swt.widgets.Shell; 54 public StringPropertyDialog(Shell parentShell, Property property) throws Exception { 120 // Shell 124 protected void configureShell(Shell newShell) {
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/ |
TextDialog.java | 19 import org.eclipse.swt.widgets.Shell; 41 public TextDialog(Shell parentShell, 108 protected void configureShell(Shell newShell) {
|
ResizableDialog.java | 20 import org.eclipse.swt.widgets.Shell; 31 * Key for accessing {@link Dialog} from its {@link Shell}. 55 public ResizableDialog(Shell parentShell, AbstractUIPlugin plugin) { 101 Shell windowShell = m_plugin.getWorkbench().getActiveWorkbenchWindow().getShell(); 213 // Shell 217 protected void configureShell(Shell newShell) {
|
/sdk/ddms/app/src/com/android/ddms/ |
Main.java | 25 import org.eclipse.swt.widgets.Shell; 78 // Create an initial shell display with the correct app name. 80 Shell shell = new Shell(Display.getDefault()); local 85 stats.checkUserPermissionForPing(shell);
|
StaticPortEditDialog.java | 36 import org.eclipse.swt.widgets.Shell; 49 private Shell mParent; 51 private Shell mShell; 72 * @param parent The parent Shell 75 public StaticPortEditDialog(Shell parent, ArrayList<Integer> ports) { 83 * @param shell The parent shell 89 public StaticPortEditDialog(Shell shell, ArrayList<Integer> ports, 91 this(shell, ports) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
InputDensityDialog.java | 30 import org.eclipse.swt.widgets.Shell; 43 InputDensityDialog(Shell parentShell) { 110 protected void configureShell(Shell shell) { 111 super.configureShell(shell); 112 shell.setText("Choose Density");
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
AboutDialog.java | 33 import org.eclipse.swt.widgets.Shell;
42 public AboutDialog(Shell parentShell, UpdaterData updaterData) {
50 Shell shell = getShell();
local 51 shell.setMinimumSize(new Point(450, 150));
52 shell.setSize(450, 150);
54 GridLayoutBuilder.create(shell).columns(3);
56 Label logo = new Label(shell, SWT.NONE);
61 Label label = new Label(shell, SWT.NONE);
73 Label filler = new Label(shell, SWT.NONE); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ |
MonitorApplication.java | 31 import org.eclipse.swt.widgets.Shell; 62 stats.checkUserPermissionForPing(new Shell(display)); 126 sdkLocation = getSdkLocationFromUser(new Shell(display)); 147 private String getSdkLocationFromUser(Shell shell) { 148 SdkLocationChooserDialog dlg = new SdkLocationChooserDialog(shell);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtUtilsTest.java | 28 import org.eclipse.swt.widgets.Shell; 50 Shell shell = new Shell(); local 51 Display display = shell.getDisplay(); 106 Shell shell = new Shell(); local 107 Display display = shell.getDisplay(); 139 Shell shell = new Shell() local 174 Shell shell = new Shell(); local 329 Shell shell = new Shell(); local [all...] |
PointTestCases.java | 24 import org.eclipse.swt.widgets.Shell; 56 super(null, null, new Shell(), 0);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTooltipProvider.java | 21 import org.eclipse.swt.widgets.Shell; 53 * Shows tooltip {@link Shell}. 55 public void show(Shell shell) { 56 shell.setVisible(true);
|
PropertyTableTooltipHelper.java | 19 import org.eclipse.swt.widgets.Shell; 32 private Shell m_tooltip; 143 // create Shell 145 m_tooltip = new Shell(m_table.getShell(), SWT.NO_FOCUS | SWT.ON_TOP | SWT.TOOL | SWT.SINGLE); 155 // show Shell
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ExportScreenshotAction.java | 26 import org.eclipse.swt.widgets.Shell; 45 Shell shell = AdtPlugin.getDisplay().getActiveShell(); local 50 FileDialog dialog = new FileDialog(shell, SWT.SAVE); 79 MessageDialog.openError(shell, "Error", "Image not available");
|
GestureToolTip.java | 27 import org.eclipse.swt.widgets.Shell; 58 /** The shell holding the tooltip */ 59 private Shell mShell; 95 mShell = new Shell(parent.getShell(), SWT.ON_TOP | SWT.TOOL | SWT.NO_FOCUS);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/ |
ExportAction.java | 30 import org.eclipse.swt.widgets.Shell; 37 private Shell mShell;
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
MessageBoxLog.java | 23 import org.eclipse.swt.widgets.Shell; 120 Shell shell = null; 122 shell = mDisplay.getActiveShell(); 124 if (shell == null || shell.isDisposed()) { 130 MessageDialog.openInformation(shell, "Android Virtual Devices Manager", 133 MessageDialog.openError(shell, "Android Virtual Devices Manager",
|
ResolutionChooserDialog.java | 33 import org.eclipse.swt.widgets.Shell; 55 public ResolutionChooserDialog(Shell parentShell) { 72 protected void configureShell(Shell newShell) {
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/handler/ |
BaseFileHandler.java | 32 import org.eclipse.swt.widgets.Shell; 47 protected final Shell mParentShell; 49 public BaseFileHandler(Shell parentShell) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
WelcomeWizard.java | 29 import org.eclipse.swt.widgets.Shell; 150 // Get a shell to use for the SDK installation. There are cases where getActiveShell 153 Shell shell = display.getActiveShell(); local 154 if (shell == null) { 158 shell = window.getShell(); 162 if (shell == null) { 163 shell = new Shell(display); 164 AdtPlugin.log(IStatus.WARNING, "No parent shell for SDK installation dialog") [all...] |
/external/openssh/contrib/caldera/ |
openssh.spec | 39 Summary : OpenSSH free Secure Shell (SSH) implementation. 40 Summary(de) : OpenSSH - freie Implementation der Secure Shell (SSH). 41 Summary(es) : OpenSSH implementaci?n libre de Secure Shell (SSH). 42 Summary(fr) : Impl?mentation libre du shell s?curis? OpenSSH (SSH). 43 Summary(it) : Implementazione gratuita OpenSSH della Secure Shell. 44 Summary(pt) : Implementa??o livre OpenSSH do protocolo 'Secure Shell' (SSH). 45 Summary(pt_BR) : Implementa??o livre OpenSSH do protocolo Secure Shell (SSH). 70 Summary : OpenSSH Secure Shell protocol server (sshd). 71 Summary(de) : OpenSSH Secure Shell Protocol-Server (sshd). 72 Summary(es) : Servidor del protocolo OpenSSH Secure Shell (sshd) [all...] |