Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 95f6bb995593ebb977e1e34a3a0dd1fd633f0778 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*******************************************************************************
 * Copyright (c) 2009, 2012 Wind River Systems, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.internal.debug.ui.launch;

import java.util.Map;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.tcf.internal.debug.ui.launch.setup.PeerPropsControl;

class PeerPropsDialog extends Dialog {

    private final Map<String,String> attrs;
    private final boolean enable_editing;
    private final Image image;

    private PeerPropsControl props;

    PeerPropsDialog(Shell parent, Image image, Map<String,String> attrs, boolean enable_editing) {
        super(parent);
        this.image = image;
        this.attrs = attrs;
        this.enable_editing = enable_editing;
    }

    @Override
    protected void configureShell(Shell shell) {
        super.configureShell(shell);
        shell.setText("TCF Peer Properties");
        shell.setImage(image);
    }

    @Override
    protected void createButtonsForButtonBar(Composite parent) {
        createButton(parent, IDialogConstants.OK_ID, IDialogConstants.OK_LABEL, true);
        if (enable_editing) createButton(parent, IDialogConstants.CANCEL_ID, IDialogConstants.CANCEL_LABEL, false);
        updateButtons();
    }

    @Override
    protected Control createDialogArea(Composite parent) {
        Composite composite = (Composite)super.createDialogArea(parent);
        props = new PeerPropsControl(composite, attrs, enable_editing, new Runnable() {
            public void run() {
                updateButtons();
            }
        });
        composite.setSize(composite.computeSize(SWT.DEFAULT, SWT.DEFAULT));
        return composite;
    }

    private void updateButtons() {
        getButton(IDialogConstants.OK_ID).setEnabled(props.isComplete());
    }

    @Override
    protected void okPressed() {
        props.okPressed();
        super.okPressed();
    }
}

Back to the top