Example usage for org.eclipse.jface.dialogs IDialogConstants VERTICAL_SPACING

List of usage examples for org.eclipse.jface.dialogs IDialogConstants VERTICAL_SPACING

Introduction

In this page you can find the example usage for org.eclipse.jface.dialogs IDialogConstants VERTICAL_SPACING.

Prototype

int VERTICAL_SPACING

To view the source code for org.eclipse.jface.dialogs IDialogConstants VERTICAL_SPACING.

Click Source Link

Document

Vertical spacing in dialog units (value 4).

Usage

From source file:org.eclipse.jsch.internal.ui.preference.ExportDialog.java

License:Open Source License

protected Control createDialogArea(Composite parent) {
    initializeDialogUnits(parent);//w  w w  .j a v  a2s  .  c  om
    Composite main = new Composite(parent, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.numColumns = 2;
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    main.setLayout(layout);
    main.setLayoutData(new GridData(GridData.FILL_BOTH));

    if (message != null) {
        Label messageLabel = new Label(main, SWT.WRAP);
        messageLabel.setText(message);
        GridData data = new GridData(GridData.FILL_HORIZONTAL);
        data.horizontalSpan = 2;
        messageLabel.setLayoutData(data);
    }

    createTargetFields(main);
    Dialog.applyDialogFont(main);
    return main;
}

From source file:org.eclipse.jsch.internal.ui.preference.PassphraseDialog.java

License:Open Source License

protected Control createDialogArea(Composite parent) {
    initializeDialogUnits(parent);/*  w w  w.  j a v a  2  s.c om*/
    Composite main = new Composite(parent, SWT.NONE);

    GridLayout layout = new GridLayout();
    layout.numColumns = 3;
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    main.setLayout(layout);
    main.setLayoutData(new GridData(GridData.FILL_BOTH));

    if (message != null) {
        Label messageLabel = new Label(main, SWT.WRAP);
        messageLabel.setText(message);
        GridData data = new GridData(GridData.FILL_HORIZONTAL);
        data.horizontalSpan = 3;
        messageLabel.setLayoutData(data);
    }

    createPassphraseFields(main);
    Dialog.applyDialogFont(main);
    return main;
}

From source file:org.eclipse.jsch.internal.ui.preference.PreferencePage.java

License:Open Source License

private Control createGeneralPage(Composite parent) {
    Composite group = new Composite(parent, SWT.NULL);
    GridLayout layout = new GridLayout();
    layout.numColumns = 3;/*from   w  w  w . java2s.  c  o m*/
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    group.setLayout(layout);
    GridData data = new GridData();
    data.horizontalAlignment = GridData.FILL;
    group.setLayoutData(data);

    ssh2HomeLabel = new Label(group, SWT.NONE);
    ssh2HomeLabel.setText(Messages.CVSSSH2PreferencePage_23);

    ssh2HomeText = new Text(group, SWT.SINGLE | SWT.BORDER);
    ssh2HomeText.setFont(group.getFont());
    GridData gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 1;
    ssh2HomeText.setLayoutData(gd);

    ssh2HomeBrowse = new Button(group, SWT.NULL);
    ssh2HomeBrowse.setText(Messages.CVSSSH2PreferencePage_24);
    gd = new GridData(GridData.HORIZONTAL_ALIGN_FILL);
    gd.horizontalSpan = 1;
    ssh2HomeBrowse.setLayoutData(gd);

    createSpacer(group, 3);

    privateKeyLabel = new Label(group, SWT.NONE);
    privateKeyLabel.setText(Messages.CVSSSH2PreferencePage_25);

    privateKeyText = new Text(group, SWT.SINGLE | SWT.BORDER);
    privateKeyText.setFont(group.getFont());
    gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 1;
    privateKeyText.setLayoutData(gd);

    privateKeyAdd = new Button(group, SWT.NULL);
    privateKeyAdd.setText(Messages.CVSSSH2PreferencePage_26);
    gd = new GridData(GridData.HORIZONTAL_ALIGN_FILL);
    gd.horizontalSpan = 1;
    privateKeyAdd.setLayoutData(gd);

    ssh2HomeBrowse.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(SelectionEvent e) {
            String home = ssh2HomeText.getText();

            if (!new File(home).exists()) {
                while (true) {
                    int foo = home.lastIndexOf(java.io.File.separator, home.length());
                    if (foo == -1)
                        break;
                    home = home.substring(0, foo);
                    if (new File(home).exists())
                        break;
                }
            }

            DirectoryDialog dd = new DirectoryDialog(getShell());
            dd.setFilterPath(home);
            dd.setMessage(Messages.CVSSSH2PreferencePage_27);
            String dir = dd.open();
            if (dir == null) { // cancel
                return;
            }
            ssh2HomeText.setText(dir);
        }
    });

    privateKeyAdd.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(SelectionEvent e) {
            String home = ssh2HomeText.getText();

            FileDialog fd = new FileDialog(getShell(), SWT.OPEN | SWT.MULTI);
            fd.setFilterPath(home);
            Object o = fd.open();
            if (o == null) { // cancel
                return;
            }
            String[] files = fd.getFileNames();
            String keys = privateKeyText.getText();
            String dir = fd.getFilterPath();
            if (dir.equals(home)) {
                dir = ""; //$NON-NLS-1$
            } else {
                dir += java.io.File.separator;
            }

            for (int i = 0; i < files.length; i++) {
                String foo = files[i];
                if (keys.length() != 0)
                    keys = keys + ","; //$NON-NLS-1$
                keys = keys + dir + foo;
            }
            privateKeyText.setText(keys);
        }
    });

    return group;
}

From source file:org.eclipse.jsch.internal.ui.preference.PreferencePage.java

License:Open Source License

private Control createKeyManagementPage(Composite parent) {
    int columnSpan = 3;
    Composite group = new Composite(parent, SWT.NULL);
    GridLayout layout = new GridLayout();
    layout.numColumns = 3;//from  w w  w . jav  a2s  .com
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    group.setLayout(layout);
    GridData gd = new GridData();
    gd.horizontalAlignment = GridData.FILL;
    group.setLayoutData(gd);

    keyGenerateDSA = new Button(group, SWT.NULL);
    keyGenerateDSA.setText(Messages.CVSSSH2PreferencePage_131);
    gd = new GridData();
    gd.horizontalSpan = 1;
    keyGenerateDSA.setLayoutData(gd);

    keyGenerateRSA = new Button(group, SWT.NULL);
    keyGenerateRSA.setText(Messages.CVSSSH2PreferencePage_132);
    gd = new GridData();
    gd.horizontalSpan = 1;
    keyGenerateRSA.setLayoutData(gd);

    keyLoad = new Button(group, SWT.NULL);
    keyLoad.setText(Messages.CVSSSH2PreferencePage_128);
    gd = new GridData();
    gd.horizontalSpan = 1;
    keyLoad.setLayoutData(gd);

    publicKeylabel = new Label(group, SWT.NONE);
    publicKeylabel.setText(Messages.CVSSSH2PreferencePage_39);
    gd = new GridData();
    gd.horizontalSpan = columnSpan;
    publicKeylabel.setLayoutData(gd);

    publicKeyText = new Text(group, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL | SWT.WRAP | SWT.LEFT_TO_RIGHT);
    publicKeyText.setText(""); //$NON-NLS-1$
    publicKeyText.setEditable(false);
    gd = new GridData();
    gd.horizontalSpan = columnSpan;
    gd.horizontalAlignment = GridData.FILL;
    gd.verticalAlignment = GridData.FILL;
    gd.grabExcessHorizontalSpace = true;
    gd.grabExcessVerticalSpace = true;
    publicKeyText.setLayoutData(gd);

    keyFingerPrintLabel = new Label(group, SWT.NONE);
    keyFingerPrintLabel.setText(Messages.CVSSSH2PreferencePage_41);
    keyFingerPrintText = new Text(group, SWT.SINGLE | SWT.BORDER | SWT.LEFT_TO_RIGHT);
    keyFingerPrintText.setFont(group.getFont());
    keyFingerPrintText.setEditable(false);
    gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 2;
    keyFingerPrintText.setLayoutData(gd);

    keyCommentLabel = new Label(group, SWT.NONE);
    keyCommentLabel.setText(Messages.CVSSSH2PreferencePage_42);
    keyCommentText = new Text(group, SWT.SINGLE | SWT.BORDER);
    keyCommentText.setFont(group.getFont());
    gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 2;
    keyCommentText.setLayoutData(gd);

    keyCommentText.addModifyListener(new ModifyListener() {
        public void modifyText(ModifyEvent e) {
            if (kpair == null)
                return;
            try {
                ByteArrayOutputStream out = new ByteArrayOutputStream();
                kpairComment = keyCommentText.getText();
                kpair.writePublicKey(out, kpairComment);
                out.close();
                publicKeyText.setText(out.toString());
            } catch (IOException ee) {
                // Ignore
            }
        }
    });

    keyPassphrase1Label = new Label(group, SWT.NONE);
    keyPassphrase1Label.setText(Messages.CVSSSH2PreferencePage_43);
    keyPassphrase1Text = new Text(group, SWT.SINGLE | SWT.BORDER);
    keyPassphrase1Text.setFont(group.getFont());
    keyPassphrase1Text.setEchoChar('*');
    gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 2;
    keyPassphrase1Text.setLayoutData(gd);

    keyPassphrase2Label = new Label(group, SWT.NONE);
    keyPassphrase2Label.setText(Messages.CVSSSH2PreferencePage_44);
    keyPassphrase2Text = new Text(group, SWT.SINGLE | SWT.BORDER);
    keyPassphrase2Text.setFont(group.getFont());
    keyPassphrase2Text.setEchoChar('*');
    gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 2;
    keyPassphrase2Text.setLayoutData(gd);

    keyPassphrase1Text.addModifyListener(new ModifyListener() {
        public void modifyText(ModifyEvent e) {
            String pass1 = keyPassphrase1Text.getText();
            String pass2 = keyPassphrase2Text.getText();
            if (kpair != null && pass1.equals(pass2)) {
                saveKeyPair.setEnabled(true);
            } else {
                saveKeyPair.setEnabled(false);
            }
            if (pass2.length() == 0) {
                setErrorMessage(null);
                return;
            }
            if (pass1.equals(pass2)) {
                setErrorMessage(null);
            } else {
                setErrorMessage(Messages.CVSSSH2PreferencePage_48);
            }
        }
    });

    keyPassphrase2Text.addModifyListener(new ModifyListener() {
        public void modifyText(ModifyEvent e) {
            String pass1 = keyPassphrase1Text.getText();
            String pass2 = keyPassphrase2Text.getText();
            if (kpair != null && pass1.equals(pass2)) {
                saveKeyPair.setEnabled(true);
            } else {
                saveKeyPair.setEnabled(false);
            }
            if (pass2.length() < pass1.length()) {
                if (pass1.startsWith(pass2)) {
                    setErrorMessage(null);
                } else {
                    setErrorMessage(Messages.CVSSSH2PreferencePage_48);
                }
                return;
            }
            if (pass1.equals(pass2)) {
                setErrorMessage(null);
            } else {
                setErrorMessage(Messages.CVSSSH2PreferencePage_48);
            }
        }
    });

    keyPassphrase2Text.addFocusListener(new FocusListener() {
        public void focusGained(FocusEvent e) {
            String pass1 = keyPassphrase1Text.getText();
            String pass2 = keyPassphrase2Text.getText();
            if (pass2.length() < pass1.length()) {
                if (pass1.startsWith(pass2)) {
                    setErrorMessage(null);
                } else {
                    setErrorMessage(Messages.CVSSSH2PreferencePage_48);
                }
                return;
            }
            if (pass1.equals(pass2)) {
                setErrorMessage(null);
            } else {
                setErrorMessage(Messages.CVSSSH2PreferencePage_48);
            }
        }

        public void focusLost(FocusEvent e) {
            String pass1 = keyPassphrase1Text.getText();
            String pass2 = keyPassphrase2Text.getText();
            if (pass1.equals(pass2)) {
                setErrorMessage(null);
            } else {
                setErrorMessage(Messages.CVSSSH2PreferencePage_48);
            }
        }
    });

    Composite buttons = new Composite(group, SWT.NONE);
    layout = new GridLayout(2, true);
    layout.marginWidth = 0;
    layout.marginHeight = 0;
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    buttons.setLayout(layout);
    gd = new GridData(GridData.HORIZONTAL_ALIGN_END);
    gd.horizontalSpan = columnSpan;
    buttons.setLayoutData(gd);

    keyExport = new Button(buttons, SWT.NULL);
    keyExport.setText(Messages.CVSSSH2PreferencePage_105);
    gd = new GridData(GridData.FILL_BOTH);
    keyExport.setLayoutData(gd);

    saveKeyPair = new Button(buttons, SWT.NULL);
    saveKeyPair.setText(Messages.CVSSSH2PreferencePage_45);
    gd = new GridData(GridData.FILL_BOTH);
    saveKeyPair.setLayoutData(gd);

    SelectionAdapter keygenadapter = new SelectionAdapter() {
        public void widgetSelected(SelectionEvent e) {
            boolean ok = true;
            String _type = ""; //$NON-NLS-1$

            try {
                int type = 0;
                if (e.widget == keyGenerateDSA) {
                    type = KeyPair.DSA;
                    _type = IConstants.DSA;
                } else if (e.widget == keyGenerateRSA) {
                    type = KeyPair.RSA;
                    _type = IConstants.RSA;
                } else {
                    return;
                }

                final KeyPair[] _kpair = new KeyPair[1];
                final int __type = type;
                final JSchException[] _e = new JSchException[1];
                BusyIndicator.showWhile(getShell().getDisplay(), new Runnable() {
                    public void run() {
                        try {
                            _kpair[0] = KeyPair.genKeyPair(getJSch(), __type);
                        } catch (JSchException e) {
                            _e[0] = e;
                        }
                    }
                });
                if (_e[0] != null) {
                    throw _e[0];
                }
                kpair = _kpair[0];

                ByteArrayOutputStream out = new ByteArrayOutputStream();
                kpairComment = _type + "-1024"; //$NON-NLS-1$
                kpair.writePublicKey(out, kpairComment);
                out.close();
                publicKeyText.setText(out.toString());
                keyFingerPrintText.setText(kpair.getFingerPrint());
                keyCommentText.setText(kpairComment);
                keyPassphrase1Text.setText(""); //$NON-NLS-1$
                keyPassphrase2Text.setText(""); //$NON-NLS-1$
                updateControls();
            } catch (IOException ee) {
                ok = false;
            } catch (JSchException ee) {
                ok = false;
            }
            if (!ok) {
                MessageDialog.openError(getShell(), Messages.CVSSSH2PreferencePage_error,
                        Messages.CVSSSH2PreferencePage_47);
            }
        }
    };
    keyGenerateDSA.addSelectionListener(keygenadapter);
    keyGenerateRSA.addSelectionListener(keygenadapter);

    keyLoad.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(SelectionEvent e) {
            boolean ok = true;
            String home = ssh2HomeText.getText();
            FileDialog fd = new FileDialog(getShell(), SWT.OPEN);
            fd.setFilterPath(home);
            Object o = fd.open();
            if (o == null) { // cancel
                return;
            }
            String pkey = fd.getFileName();
            String pkeyab = (new File(fd.getFilterPath(), pkey)).getAbsolutePath();
            try {
                KeyPair _kpair = KeyPair.load(getJSch(), pkeyab);
                PassphrasePrompt prompt = null;
                while (_kpair.isEncrypted()) {
                    if (prompt == null) {
                        prompt = new PassphrasePrompt(
                                NLS.bind(Messages.CVSSSH2PreferencePage_126, new String[] { pkey }));
                    }
                    Display.getDefault().syncExec(prompt);
                    String passphrase = prompt.getPassphrase();
                    if (passphrase == null)
                        break;
                    if (_kpair.decrypt(passphrase)) {
                        break;
                    }
                    MessageDialog.openError(getShell(), Messages.CVSSSH2PreferencePage_error,
                            NLS.bind(Messages.CVSSSH2PreferencePage_129, new String[] { pkey }));
                }
                if (_kpair.isEncrypted()) {
                    return;
                }
                kpair = _kpair;
                String _type = (kpair.getKeyType() == KeyPair.DSA) ? IConstants.DSA : IConstants.RSA;
                kpairComment = _type + "-1024"; //$NON-NLS-1$

                // TODO Bug 351094 The comment should be from kpair object,
                // but the JSch API does not provided such a method.
                // In the version 0.1.45, JSch will support such a method,
                // and the following code should be replaced with it at that time.
                java.io.FileInputStream fis = null;
                try {
                    java.io.File f = new java.io.File(pkeyab + ".pub"); //$NON-NLS-1$
                    int i = 0;
                    fis = new java.io.FileInputStream(f);
                    byte[] buf = new byte[(int) f.length()];
                    while (i < buf.length) {
                        int j = fis.read(buf, i, buf.length - i);
                        if (j <= 0)
                            break;
                        i += j;
                    }
                    String pubkey = new String(buf);
                    if (pubkey.indexOf(' ') > 0 && pubkey.indexOf(' ', pubkey.indexOf(' ') + 1) > 0) {
                        int j = pubkey.indexOf(' ', pubkey.indexOf(' ') + 1) + 1;
                        kpairComment = pubkey.substring(j);
                        if (kpairComment.indexOf('\n') > 0) {
                            kpairComment = kpairComment.substring(0, kpairComment.indexOf('\n'));
                        }
                    }
                } catch (IOException ioe) {
                    // ignore if public-key does not exist.
                } finally {
                    if (fis != null)
                        fis.close();
                }

                ByteArrayOutputStream out = new ByteArrayOutputStream();

                kpair.writePublicKey(out, kpairComment);
                out.close();
                publicKeyText.setText(out.toString());
                keyFingerPrintText.setText(kpair.getFingerPrint());
                keyCommentText.setText(kpairComment);
                keyPassphrase1Text.setText(""); //$NON-NLS-1$
                keyPassphrase2Text.setText(""); //$NON-NLS-1$
                updateControls();
            } catch (IOException ee) {
                ok = false;
            } catch (JSchException ee) {
                ok = false;
            }
            if (!ok) {
                MessageDialog.openError(getShell(), Messages.CVSSSH2PreferencePage_error,
                        Messages.CVSSSH2PreferencePage_130);
            }
        }
    });

    keyExport.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(SelectionEvent e) {
            if (kpair == null)
                return;

            setErrorMessage(null);

            final String[] target = new String[1];
            final String title = Messages.CVSSSH2PreferencePage_106;
            final String message = Messages.CVSSSH2PreferencePage_107;
            Display.getDefault().syncExec(new Runnable() {
                public void run() {
                    Display display = Display.getCurrent();
                    Shell shell = new Shell(display);
                    ExportDialog dialog = new ExportDialog(shell, title, message);
                    dialog.open();
                    shell.dispose();
                    target[0] = dialog.getTarget();
                }
            });
            if (target[0] == null) {
                return;
            }
            String user = ""; //$NON-NLS-1$
            String host = ""; //$NON-NLS-1$
            int port = 22;

            if (target[0].indexOf('@') > 0) {
                user = target[0].substring(0, target[0].indexOf('@'));
                host = target[0].substring(target[0].indexOf('@') + 1);
            }
            if (host.indexOf(':') > 0) {
                try {
                    port = Integer.parseInt(host.substring(host.indexOf(':') + 1));
                } catch (NumberFormatException ee) {
                    port = -1;
                }
                host = host.substring(0, host.indexOf(':'));
            }

            if (user.length() == 0 || host.length() == 0 || port == -1) {
                setErrorMessage(NLS.bind(Messages.CVSSSH2PreferencePage_108, new String[] { target[0] }));
                return;
            }

            String options = ""; //$NON-NLS-1$
            try {
                ByteArrayOutputStream bos = new ByteArrayOutputStream();
                if (options.length() != 0) {
                    try {
                        bos.write((options + " ").getBytes()); //$NON-NLS-1$
                    } catch (IOException eeee) {
                        // Ignore
                    }
                }
                kpair.writePublicKey(bos, kpairComment);
                bos.close();
                export_via_sftp(user, host, port, /* ".ssh/authorized_keys", //$NON-NLS-1$ */
                        bos.toByteArray());
            } catch (IOException ee) {
                // Ignore
            } catch (JSchException ee) {
                setErrorMessage(Messages.CVSSSH2PreferencePage_111);
            }
        }
    });

    saveKeyPair.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(SelectionEvent e) {
            if (kpair == null)
                return;

            String pass = keyPassphrase1Text.getText();
            /*
             * if(!pass.equals(keyPassphrase2Text.getText())){
             * setErrorMessage(Policy.bind("CVSSSH2PreferencePage.48"));
             * //$NON-NLS-1$ return; }
             */
            if (pass.length() == 0) {
                if (!MessageDialog.openConfirm(getShell(), Messages.CVSSSH2PreferencePage_confirmation,
                        Messages.CVSSSH2PreferencePage_49)) {
                    return;
                }
            }

            kpair.setPassphrase(pass);

            String home = ssh2HomeText.getText();

            File _home = new File(home);

            if (!_home.exists()) {
                if (!MessageDialog.openConfirm(getShell(), Messages.CVSSSH2PreferencePage_confirmation,
                        NLS.bind(Messages.CVSSSH2PreferencePage_50, new String[] { home }))) {
                    return;
                }
                if (!_home.mkdirs()) {
                    setErrorMessage(Messages.CVSSSH2PreferencePage_100 + home);
                    return;
                }
            }

            FileDialog fd = new FileDialog(getShell(), SWT.SAVE);
            fd.setFilterPath(home);
            String file = (kpair.getKeyType() == KeyPair.RSA) ? "id_rsa" : "id_dsa"; //$NON-NLS-1$ //$NON-NLS-2$
            fd.setFileName(file);
            file = fd.open();
            if (file == null) { // cancel
                return;
            }

            if (new File(file).exists()) {
                if (!MessageDialog.openConfirm(getShell(), Messages.CVSSSH2PreferencePage_confirmation, // 
                        NLS.bind(Messages.CVSSSH2PreferencePage_53, new String[] { file }))) {
                    return;
                }
            }

            boolean ok = true;
            try {
                kpair.writePrivateKey(file);
                kpair.writePublicKey(file + ".pub", kpairComment); //$NON-NLS-1$
            } catch (Exception ee) {
                ok = false;
            }

            if (ok) {
                MessageDialog.openInformation(getShell(), Messages.CVSSSH2PreferencePage_information,
                        Messages.CVSSSH2PreferencePage_55 + "\n" + //$NON-NLS-1$
                Messages.CVSSSH2PreferencePage_57 + file + "\n" + //$NON-NLS-1$
                Messages.CVSSSH2PreferencePage_59 + file + ".pub"); //$NON-NLS-1$
            } else {
                return;
            }

            // The generated key should be added to privateKeyText.

            String dir = fd.getFilterPath();
            File mypkey = new java.io.File(dir, fd.getFileName());
            String pkeys = privateKeyText.getText();

            // Check if the generated key has been included in pkeys?
            String[] pkeysa = pkeys.split(","); //$NON-NLS-1$
            for (int i = 0; i < pkeysa.length; i++) {
                File pkey = new java.io.File(pkeysa[i]);
                if (!pkey.isAbsolute()) {
                    pkey = new java.io.File(home, pkeysa[i]);
                }
                if (pkey.equals(mypkey))
                    return;
            }

            if (dir.equals(home)) {
                dir = ""; //$NON-NLS-1$
            } else {
                dir += java.io.File.separator;
            }
            if (pkeys.length() > 0)
                pkeys += ","; //$NON-NLS-1$
            pkeys = pkeys + dir + fd.getFileName();
            privateKeyText.setText(pkeys);
        }
    });

    return group;
}

From source file:org.eclipse.jsch.internal.ui.preference.PreferencePage.java

License:Open Source License

private Control createHostKeyManagementPage(Composite parent) {
    Composite group = new Composite(parent, SWT.NULL);
    GridLayout layout = new GridLayout();
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    layout.numColumns = 2;//from w  ww. java 2s .co  m
    group.setLayout(layout);
    GridData gd = new GridData();
    gd.horizontalAlignment = GridData.FILL;
    gd.verticalAlignment = GridData.FILL;
    group.setLayoutData(gd);

    Label label = new Label(group, SWT.NONE);
    label.setText(Messages.CVSSSH2PreferencePage_139);
    gd = new GridData();
    gd.horizontalSpan = 2;
    label.setLayoutData(gd);

    viewer = new TableViewer(group, SWT.MULTI | SWT.FULL_SELECTION | SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER);
    Table table = viewer.getTable();
    new TableEditor(table);
    table.setHeaderVisible(true);
    table.setLinesVisible(true);
    gd = new GridData(GridData.FILL_BOTH);
    gd.widthHint = convertWidthInCharsToPixels(30);
    /*
     * The hardcoded hint does not look elegant, but in reality it does not make
     * anything bound to this 100-pixel value, because in any case the tree on
     * the left is taller and that's what really determines the height.
     */
    gd.heightHint = 100;
    table.setLayoutData(gd);
    table.addListener(SWT.Selection, new Listener() {
        public void handleEvent(Event e) {
            handleSelection();
        }
    });
    // Create the table columns
    new TableColumn(table, SWT.NULL);
    new TableColumn(table, SWT.NULL);
    new TableColumn(table, SWT.NULL);
    TableColumn[] columns = table.getColumns();
    columns[0].setText(Messages.CVSSSH2PreferencePage_134);
    columns[1].setText(Messages.CVSSSH2PreferencePage_135);
    columns[2].setText(Messages.CVSSSH2PreferencePage_136);
    viewer.setColumnProperties(new String[] { Messages.CVSSSH2PreferencePage_134, // 
            Messages.CVSSSH2PreferencePage_135, // 
            Messages.CVSSSH2PreferencePage_136 });
    viewer.setLabelProvider(new TableLabelProvider());
    viewer.setContentProvider(new IStructuredContentProvider() {
        public void dispose() {
            // nothing to do
        }

        public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
            // nothing to do
        }

        public Object[] getElements(Object inputElement) {
            if (inputElement == null)
                return null;
            return (Object[]) inputElement;
        }
    });
    TableLayout tl = new TableLayout();
    tl.addColumnData(new ColumnWeightData(30));
    tl.addColumnData(new ColumnWeightData(20));
    tl.addColumnData(new ColumnWeightData(70));
    table.setLayout(tl);

    Composite buttons = new Composite(group, SWT.NULL);
    buttons.setLayoutData(new GridData(GridData.VERTICAL_ALIGN_BEGINNING));
    layout = new GridLayout();
    layout.marginHeight = 0;
    layout.marginWidth = 0;
    buttons.setLayout(layout);

    removeHostKeyButton = new Button(buttons, SWT.PUSH);
    removeHostKeyButton.setText(Messages.CVSSSH2PreferencePage_138);
    int buttonWidth = SWTUtils.calculateControlSize(SWTUtils.createDialogPixelConverter(parent),
            new Button[] { removeHostKeyButton });
    removeHostKeyButton.setLayoutData(
            SWTUtils.createGridData(buttonWidth, SWT.DEFAULT, SWT.END, SWT.CENTER, false, false));
    removeHostKeyButton.setEnabled(false);
    removeHostKeyButton.addListener(SWT.Selection, new Listener() {
        public void handleEvent(Event e) {
            removeHostKey();
        }
    });

    Dialog.applyDialogFont(parent);

    // JSchSession.loadKnownHosts(JSchContext.getDefaultContext().getJSch());
    JSchCorePlugin.getPlugin().loadKnownHosts();
    HostKeyRepository hkr = getJSch().getHostKeyRepository();
    viewer.setInput(hkr.getHostKey());
    handleSelection();

    return group;
}

From source file:org.eclipse.jsch.internal.ui.preference.PreferencePage.java

License:Open Source License

private Control createPreferredAuthenticationPage(Composite parent) {
    Composite root = new Composite(parent, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    layout.numColumns = 2;/*w w  w .j  av  a 2 s.  c o  m*/
    root.setLayout(layout);

    Label label = new Label(root, SWT.NONE);
    GridData textLayoutData = new GridData(SWT.BEGINNING, SWT.BEGINNING, true, false);
    textLayoutData.horizontalSpan = 2;
    label.setLayoutData(textLayoutData);
    label.setText(Messages.CVSSSH2PreferencePage_4);

    preferedAuthMethodTable = new Table(root, SWT.CHECK | SWT.BORDER);
    GridData layoutData = new GridData(SWT.FILL, SWT.BEGINNING, true, true);
    layoutData.verticalSpan = 3;
    preferedAuthMethodTable.setLayoutData(layoutData);
    layoutData.minimumHeight = 150;
    layoutData.minimumWidth = 200;
    populateAuthMethods();

    up = new Button(root, SWT.PUSH);
    up.setText(Messages.CVSSSH2PreferencePage_2);
    up.setEnabled(false);
    setButtonLayoutData(up);

    down = new Button(root, SWT.PUSH);
    down.setText(Messages.CVSSSH2PreferencePage_3);
    down.setEnabled(false);
    setButtonLayoutData(down);

    preferedAuthMethodTable.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            boolean anySelected = false;
            for (int i = 0; i < preferedAuthMethodTable.getItemCount(); i++) {
                anySelected |= preferedAuthMethodTable.getItem(i).getChecked();
            }

            if (anySelected) {
                setErrorMessage(null);
                setValid(true);
            } else {
                setErrorMessage(Messages.CVSSSH2PreferencePage_5);
                setValid(false);
            }
            up.setEnabled(preferedAuthMethodTable.getSelectionIndex() > 0);
            down.setEnabled(
                    preferedAuthMethodTable.getSelectionIndex() < preferedAuthMethodTable.getItemCount() - 1);
        }

    });
    up.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            int selectedIndex = preferedAuthMethodTable.getSelectionIndex();
            if (selectedIndex == 1) { //this is the last possible swap
                up.setEnabled(false);
            }
            down.setEnabled(true);
            TableItem sourceItem = preferedAuthMethodTable.getItem(selectedIndex);
            TableItem targetItem = preferedAuthMethodTable.getItem(selectedIndex - 1);

            //switch text
            String stemp = targetItem.getText();
            targetItem.setText(sourceItem.getText());
            sourceItem.setText(stemp);

            //switch selection
            boolean btemp = targetItem.getChecked();
            targetItem.setChecked(sourceItem.getChecked());
            sourceItem.setChecked(btemp);

            preferedAuthMethodTable.setSelection(targetItem);
        }
    });

    down.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            int selectedIndex = preferedAuthMethodTable.getSelectionIndex();
            if (selectedIndex == preferedAuthMethodTable.getItemCount() - 2) { //this is the last possible swap
                down.setEnabled(false);
            }
            up.setEnabled(true);
            TableItem sourceItem = preferedAuthMethodTable.getItem(selectedIndex);
            TableItem targetItem = preferedAuthMethodTable.getItem(selectedIndex + 1);

            //switch text
            String stemp = targetItem.getText();
            targetItem.setText(sourceItem.getText());
            sourceItem.setText(stemp);

            //switch selection
            boolean btemp = targetItem.getChecked();
            targetItem.setChecked(sourceItem.getChecked());
            sourceItem.setChecked(btemp);

            preferedAuthMethodTable.setSelection(targetItem);
        }
    });

    return root;
}

From source file:org.eclipse.jsch.internal.ui.preference.PreferencePage.java

License:Open Source License

private Control createPreferredKeyExchangePage(Composite parent) {
    Composite root = new Composite(parent, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    layout.numColumns = 2;//from   w w  w  . j a  v a  2  s.  co m
    root.setLayout(layout);

    Label label = new Label(root, SWT.NONE);
    GridData textLayoutData = new GridData(SWT.BEGINNING, SWT.BEGINNING, true, false);
    textLayoutData.horizontalSpan = 2;
    label.setLayoutData(textLayoutData);
    label.setText(Messages.CVSSSH2PreferencePage_140);

    preferedKeyExchangeMethodTable = new Table(root, SWT.CHECK | SWT.BORDER);
    GridData layoutData = new GridData(SWT.FILL, SWT.BEGINNING, true, true);
    layoutData.verticalSpan = 3;
    preferedKeyExchangeMethodTable.setLayoutData(layoutData);
    layoutData.minimumHeight = 150;
    layoutData.minimumWidth = 200;
    populateAuthMethods();

    kex_up = new Button(root, SWT.PUSH);
    kex_up.setText(Messages.CVSSSH2PreferencePage_2);
    kex_up.setEnabled(false);
    setButtonLayoutData(kex_up);

    kex_down = new Button(root, SWT.PUSH);
    kex_down.setText(Messages.CVSSSH2PreferencePage_3);
    kex_down.setEnabled(false);
    setButtonLayoutData(kex_down);

    preferedKeyExchangeMethodTable.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            boolean anySelected = false;
            for (int i = 0; i < preferedKeyExchangeMethodTable.getItemCount(); i++) {
                anySelected |= preferedKeyExchangeMethodTable.getItem(i).getChecked();
            }

            if (anySelected) {
                setErrorMessage(null);
                setValid(true);
            } else {
                setErrorMessage(Messages.CVSSSH2PreferencePage_142);
                setValid(false);
            }
            kex_up.setEnabled(preferedKeyExchangeMethodTable.getSelectionIndex() > 0);
            kex_down.setEnabled(preferedKeyExchangeMethodTable
                    .getSelectionIndex() < preferedKeyExchangeMethodTable.getItemCount() - 1);
        }

    });
    kex_up.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            int selectedIndex = preferedKeyExchangeMethodTable.getSelectionIndex();
            if (selectedIndex == 1) { //this is the last possible swap
                kex_up.setEnabled(false);
            }
            kex_down.setEnabled(true);
            TableItem sourceItem = preferedKeyExchangeMethodTable.getItem(selectedIndex);
            TableItem targetItem = preferedKeyExchangeMethodTable.getItem(selectedIndex - 1);

            //switch text
            String stemp = targetItem.getText();
            targetItem.setText(sourceItem.getText());
            sourceItem.setText(stemp);

            //switch selection
            boolean btemp = targetItem.getChecked();
            targetItem.setChecked(sourceItem.getChecked());
            sourceItem.setChecked(btemp);

            preferedKeyExchangeMethodTable.setSelection(targetItem);
        }
    });

    kex_down.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            int selectedIndex = preferedKeyExchangeMethodTable.getSelectionIndex();
            if (selectedIndex == preferedKeyExchangeMethodTable.getItemCount() - 2) { //this is the last possible swap
                kex_down.setEnabled(false);
            }
            kex_up.setEnabled(true);
            TableItem sourceItem = preferedKeyExchangeMethodTable.getItem(selectedIndex);
            TableItem targetItem = preferedKeyExchangeMethodTable.getItem(selectedIndex + 1);

            //switch text
            String stemp = targetItem.getText();
            targetItem.setText(sourceItem.getText());
            sourceItem.setText(stemp);

            //switch selection
            boolean btemp = targetItem.getChecked();
            targetItem.setChecked(sourceItem.getChecked());
            sourceItem.setChecked(btemp);

            preferedKeyExchangeMethodTable.setSelection(targetItem);
        }
    });

    return root;
}

From source file:org.eclipse.jsch.internal.ui.preference.PreferencePage.java

License:Open Source License

private Control createPreferredMACPage(Composite parent) {
    Composite root = new Composite(parent, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    layout.numColumns = 2;// w  w w  . j a va2  s .  com
    root.setLayout(layout);

    Label label = new Label(root, SWT.NONE);
    GridData textLayoutData = new GridData(SWT.BEGINNING, SWT.BEGINNING, true, false);
    textLayoutData.horizontalSpan = 2;
    label.setLayoutData(textLayoutData);
    label.setText(Messages.CVSSSH2PreferencePage_141);

    preferedMACMethodTable = new Table(root, SWT.CHECK | SWT.BORDER);
    GridData layoutData = new GridData(SWT.FILL, SWT.BEGINNING, true, true);
    layoutData.verticalSpan = 3;
    preferedMACMethodTable.setLayoutData(layoutData);
    layoutData.minimumHeight = 150;
    layoutData.minimumWidth = 200;
    populateMACMethods();

    mac_up = new Button(root, SWT.PUSH);
    mac_up.setText(Messages.CVSSSH2PreferencePage_2);
    mac_up.setEnabled(false);
    setButtonLayoutData(mac_up);

    mac_down = new Button(root, SWT.PUSH);
    mac_down.setText(Messages.CVSSSH2PreferencePage_3);
    mac_down.setEnabled(false);
    setButtonLayoutData(mac_down);

    preferedMACMethodTable.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            boolean anySelected = false;
            for (int i = 0; i < preferedMACMethodTable.getItemCount(); i++) {
                anySelected |= preferedMACMethodTable.getItem(i).getChecked();
            }

            if (anySelected) {
                setErrorMessage(null);
                setValid(true);
            } else {
                setErrorMessage(Messages.CVSSSH2PreferencePage_143);
                setValid(false);
            }
            mac_up.setEnabled(preferedMACMethodTable.getSelectionIndex() > 0);
            mac_down.setEnabled(
                    preferedMACMethodTable.getSelectionIndex() < preferedMACMethodTable.getItemCount() - 1);
        }

    });
    mac_up.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            int selectedIndex = preferedMACMethodTable.getSelectionIndex();
            if (selectedIndex == 1) { //this is the last possible swap
                mac_up.setEnabled(false);
            }
            mac_down.setEnabled(true);
            TableItem sourceItem = preferedMACMethodTable.getItem(selectedIndex);
            TableItem targetItem = preferedMACMethodTable.getItem(selectedIndex - 1);

            //switch text
            String stemp = targetItem.getText();
            targetItem.setText(sourceItem.getText());
            sourceItem.setText(stemp);

            //switch selection
            boolean btemp = targetItem.getChecked();
            targetItem.setChecked(sourceItem.getChecked());
            sourceItem.setChecked(btemp);

            preferedMACMethodTable.setSelection(targetItem);
        }
    });

    mac_down.addSelectionListener(new SelectionAdapter() {

        public void widgetSelected(SelectionEvent e) {
            int selectedIndex = preferedMACMethodTable.getSelectionIndex();
            if (selectedIndex == preferedMACMethodTable.getItemCount() - 2) { //this is the last possible swap
                mac_down.setEnabled(false);
            }
            mac_up.setEnabled(true);
            TableItem sourceItem = preferedMACMethodTable.getItem(selectedIndex);
            TableItem targetItem = preferedMACMethodTable.getItem(selectedIndex + 1);

            //switch text
            String stemp = targetItem.getText();
            targetItem.setText(sourceItem.getText());
            sourceItem.setText(stemp);

            //switch selection
            boolean btemp = targetItem.getChecked();
            targetItem.setChecked(sourceItem.getChecked());
            sourceItem.setChecked(btemp);

            preferedMACMethodTable.setSelection(targetItem);
        }
    });

    return root;
}

From source file:org.eclipse.jsch.internal.ui.preference.PreferencePage.java

License:Open Source License

private Control createPreferredSSHAgentPage(Composite parent) {
    Composite root = new Composite(parent, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    layout.numColumns = 2;/*  w w  w.j  a  v  a2s .c o m*/
    root.setLayout(layout);

    Label label = new Label(root, SWT.NONE);
    GridData textLayoutData = new GridData(SWT.BEGINNING, SWT.BEGINNING, true, false);
    textLayoutData.horizontalSpan = 2;
    label.setLayoutData(textLayoutData);
    label.setText(Messages.CVSSSH2PreferencePage_147);

    preferedSSHAgentTable = new Table(root, SWT.CHECK | SWT.BORDER);
    GridData layoutData = new GridData(SWT.FILL, SWT.BEGINNING, true, true);
    layoutData.verticalSpan = 3;
    preferedSSHAgentTable.setLayoutData(layoutData);
    layoutData.minimumHeight = 150;
    layoutData.minimumWidth = 200;
    populateSSHAgents();
    return root;
}

From source file:org.eclipse.jst.j2ee.internal.plugin.ErrorDialog.java

License:Open Source License

@Override
protected Control createDialogArea(Composite parent) {
    // create a composite with standard margins and spacing
    Composite composite = new Composite(parent, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
    layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
    layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
    layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
    composite.setLayout(layout);/*from   w  w w  .  j av a 2  s . co m*/
    composite.setLayoutData(new GridData(GridData.FILL_BOTH));
    composite.setFont(parent.getFont());
    ((GridLayout) composite.getLayout()).numColumns = 2;
    // create image
    Image image = composite.getDisplay().getSystemImage(SWT.ICON_ERROR);
    if (image != null) {
        Label label = new Label(composite, 0);
        image.setBackground(label.getBackground());
        label.setImage(image);
        label.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER | GridData.VERTICAL_ALIGN_BEGINNING));
    }
    // create message
    if (msg != null) {
        Label label = new Label(composite, SWT.WRAP);
        label.setText(msg);
        GridData data = new GridData(GridData.GRAB_HORIZONTAL | GridData.GRAB_VERTICAL
                | GridData.HORIZONTAL_ALIGN_FILL | GridData.VERTICAL_ALIGN_CENTER);
        data.widthHint = convertHorizontalDLUsToPixels(IDialogConstants.MINIMUM_MESSAGE_AREA_WIDTH);
        label.setLayoutData(data);
        label.setFont(parent.getFont());
    }
    return composite;
}