Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I use a SWT InputDialog object to enter a password, replacing normal characters with usual *?

Or it is not possible?

share|improve this question

1 Answer

up vote 3 down vote accepted

Just create your own Dialog:

public static void main(String[] args) {
    PasswordDialog dialog = new PasswordDialog(new Shell());
    dialog.open();

    System.out.println(dialog.getPassword());
}

public static class PasswordDialog extends Dialog {
    private Text passwordField;
    private String passwordString;

    public PasswordDialog(Shell parentShell) {
        super(parentShell);
    }

    @Override
    protected void configureShell(Shell newShell)
    {
        super.configureShell(newShell);
        newShell.setText("Please enter password");
    }

    @Override
    protected Control createDialogArea(Composite parent) {
        Composite comp = (Composite) super.createDialogArea(parent);

        GridLayout layout = (GridLayout) comp.getLayout();
        layout.numColumns = 2;

        Label passwordLabel = new Label(comp, SWT.RIGHT);
        passwordLabel.setText("Password: ");
        passwordField = new Text(comp, SWT.SINGLE | SWT.BORDER | SWT.PASSWORD);

        GridData data = new GridData(SWT.FILL, SWT.CENTER, true, false);
        passwordField.setLayoutData(data);

        return comp;
    }

    @Override
    protected void okPressed()
    {
        passwordString = passwordField.getText();
        super.okPressed();
    }

    @Override
    protected void cancelPressed()
    {
        passwordField.setText("");
        super.cancelPressed();
    }

    public String getPassword()
    {
        return passwordString;
    }
}

The result looks like this:

enter image description here

share|improve this answer
that's a JFaces dialog and not an SWT dialog. Related of course, but doesn't quite answer the question. – adamfisk Dec 6 '12 at 18:11
@adamfisk I have to disagree. The question is asking for InputDialog, which is a JFace dialog. The question doesn't mention something like: "I just want SWT dialogs, no JFace". – Baz Dec 6 '12 at 18:14
Right you are -- InputDialog doesn't exist in SWT, so JFaces is certainly implied and required -- I stand corrected! – adamfisk Dec 6 '12 at 22:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.