3

SWT と JFace を使用して基本ダイアログ クラスを作成しようとしています。

 public class AplotBaseDialog extends TitleAreaDialog

ダイアログのレイアウト方法について混乱していますか?

Swingでそれを行うと、createDialogメソッドができます。次に、そのメソッドに、JPanel メソッドであるコンポーネントを追加します。次に、コンポーネントを centerPanel に追加します。これは基本ダイアログでした。各 Panel メソッドには独自のレイアウトがありました。

これは非常に単純な例です (疑似コード)

public void createDialog() {
   Component selectionsPanel = createTableArea();
   Component buttonPanel = OKCancelButtons();
   JPanel centerPanel = new JPanel();
   centerPanel.setLayout(new BoxLayout(centerPanel, BoxLayout.PAGE_AXIS));
   centerPanel.add(selectionsPanel);
   centerPanel.add(buttonPanel);
   getContentPane().add(centerPanel);
   this.pack();
   centerPanel.setVisible(true); 
}

private JPanel OKCancelButtons() {

  submitButton = new JButton("Send");
  etc... etc..
  JPanel p = new JPanel();
  p.setLayout(new BoxLayout(p, BoxLayout.LINE_AXIS));
  p.add(submitButton);
  return p;
}

private JPanel createTableArea() {
  JPanel p = new JPanel();
  similar to above but a Table;
  return p;
}

パネルをコンポーネントとしてベース パネルに追加するよりも、メソッドでパネルをどのように作成したかがわかります。

を使用してどのようにしますTitleAreaDialogか?

4

1 に答える 1

4

私はまだ使用していませんが、これは私が自分で使用TitleAreaDialogする簡単なものです。Dialogダイアログの内部の仕組みについてのアイデアが得られるはずです。これは基本的に、いくつかのエラー メッセージとチェックボックスを含む単なるダイアログです。

public class CheckboxDialog extends Dialog {

    private String message = "";
    private String checkboxMessage = "";
    private boolean checkValue;

    private Button checkButton;

    /* Constructor, set shell style and set block on open (rest of gui is blocked until closed) */
    public CheckboxDialog(Shell parentShell) {
        super(parentShell);
        setShellStyle(SWT.CLOSE | SWT.TITLE | SWT.BORDER | SWT.OK | SWT.APPLICATION_MODAL);
        setBlockOnOpen(true);
    }

    /* creates the content of the dialog */
    protected Control createDialogArea(Composite parent) {
        Composite composite = (Composite) super.createDialogArea(parent);

        /* set the layout for the content (gridlayout with 1 column)*/
        GridLayout layout = new GridLayout(1, false);
        layout.marginHeight = 15;
        layout.marginWidth = 30;
        composite.setLayout(layout);

        /* add a label with some text */
        final Label content = new Label(composite, SWT.NONE);
        content.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
        content.setText(message);

        /* add a checkbox button */
        checkButton = new Button(composite, SWT.CHECK);
        checkButton.setText(checkboxMessage);
        checkButton.setSelection(true);
        checkButton.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));

        return composite;
    }

    /* create the dialog buttons (in this case, only an OK button) */
    protected void createButtonsForButtonBar(Composite parent)
    {
        createButton(parent, IDialogConstants.OK_ID, "OK", true);
    }

    /* configure the dialog's shell (set title) */
    protected void configureShell(Shell newShell) {
        super.configureShell(newShell);
        newShell.setText("Error");
    }

    /* this method is executed if the OK button is pressed */
    public void okPressed()
    {
        checkValue = checkButton.getSelection();
        close();
    }

    /* getter and setter methods */
    public void setMessage(String message) {
        this.message = message;
    }

    public void setCheckboxMessage(String checkboxMessage) {
        this.checkboxMessage = checkboxMessage;
    }

    public boolean getCheckBoxValue()
    {
        return checkValue;
    }
}

ご覧のとおりadd、SWT にはメソッドがありません。各ウィジェットのコンストラクターで親を指定するだけです。

さらに、Vogellaによる非常に優れたチュートリアルがあり、JFace ダイアログの作成方法を詳細に説明しています。の使用方法の別の例を次に示しますTitleAreaDialog

于 2012-08-23T20:33:31.077 に答える