bazaar4idea.ui.BzrPushDialog.java Source code

Java tutorial

Introduction

Here is the source code for bazaar4idea.ui.BzrPushDialog.java

Source

// Copyright 2009 Victor Iacoban
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under
// the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
// either express or implied. See the License for the specific language governing permissions and
// limitations under the License.
package bazaar4idea.ui;

import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.DialogWrapper;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.uiDesigner.core.GridConstraints;
import com.intellij.uiDesigner.core.GridLayoutManager;
import com.intellij.uiDesigner.core.Spacer;
import org.apache.commons.lang.StringUtils;
import bazaar4idea.command.BzrShowConfigCommand;

import javax.swing.*;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Collection;

public class BzrPushDialog extends DialogWrapper {

    private final Project project;

    private JPanel contentPanel;

    private JTextField repositoryTxt;

    private JCheckBox revisionCbx;

    private JTextField revisionTxt;

    private BzrRepositorySelectorComponent hgRepositorySelectorComponent;

    public BzrPushDialog(Project project) {
        super(project, false);
        this.project = project;
        hgRepositorySelectorComponent.setTitle("Select repository to push from");
        hgRepositorySelectorComponent.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                updateRepository();
            }
        });

        revisionCbx.addChangeListener(new ChangeListener() {
            public void stateChanged(ChangeEvent e) {
                update();
            }
        });

        DocumentListener documentListener = new DocumentListener() {
            public void insertUpdate(DocumentEvent e) {
                update();
            }

            public void removeUpdate(DocumentEvent e) {
                update();
            }

            public void changedUpdate(DocumentEvent e) {
                update();
            }
        };

        repositoryTxt.getDocument().addDocumentListener(documentListener);
        revisionTxt.getDocument().addDocumentListener(documentListener);

        setTitle("Push");
        init();
    }

    public void setRoots(Collection<VirtualFile> repos) {
        hgRepositorySelectorComponent.setRoots(repos);
        updateRepository();
    }

    public VirtualFile getRepository() {
        return hgRepositorySelectorComponent.getRepository();
    }

    public String getTarget() {
        return repositoryTxt.getText();
    }

    public boolean isRevisionSelected() {
        return revisionCbx.isSelected();
    }

    public String getRevision() {
        return revisionTxt.getText();
    }

    private void updateRepository() {
        VirtualFile repo = hgRepositorySelectorComponent.getRepository();
        BzrShowConfigCommand configCommand = new BzrShowConfigCommand(project);
        String defaultPath = configCommand.getDefaultPath(repo);
        repositoryTxt.setText(defaultPath);
        update();
    }

    protected JComponent createCenterPanel() {
        return contentPanel;
    }

    private void update() {
        setOKActionEnabled(validateOptions());
        revisionTxt.setEnabled(revisionCbx.isSelected());
    }

    private boolean validateOptions() {
        return StringUtils.isNotBlank(repositoryTxt.getText())
                && !(revisionCbx.isSelected() && StringUtils.isBlank(revisionTxt.getText()));
    }

    {
        // GUI initializer generated by IntelliJ IDEA GUI Designer
        // >>> IMPORTANT!! <<<
        // DO NOT EDIT OR ADD ANY CODE HERE!
        $$$setupUI$$$();
    }

    /** Method generated by IntelliJ IDEA GUI Designer
     * >>> IMPORTANT!! <<<
     * DO NOT edit this method OR call it in your code!
     * @noinspection ALL
     */
    private void $$$setupUI$$$() {
        contentPanel = new JPanel();
        contentPanel.setLayout(new GridLayoutManager(1, 1, new Insets(0, 0, 0, 0), -1, -1));
        final JPanel panel1 = new JPanel();
        panel1.setLayout(new GridLayoutManager(5, 1, new Insets(0, 0, 0, 0), -1, -1));
        contentPanel.add(panel1,
                new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH,
                        GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW,
                        GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, null,
                        null, 0, false));
        final Spacer spacer1 = new Spacer();
        panel1.add(spacer1,
                new GridConstraints(4, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_VERTICAL, 1,
                        GridConstraints.SIZEPOLICY_WANT_GROW, null, null, null, 0, false));
        final JLabel label1 = new JLabel();
        label1.setText("Destination Repository URL:");
        label1.setDisplayedMnemonic('D');
        label1.setDisplayedMnemonicIndex(0);
        panel1.add(label1, new GridConstraints(1, 0, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE,
                GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
        repositoryTxt = new JTextField();
        panel1.add(repositoryTxt,
                new GridConstraints(2, 0, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_HORIZONTAL,
                        GridConstraints.SIZEPOLICY_WANT_GROW, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0,
                        false));
        final JPanel panel2 = new JPanel();
        panel2.setLayout(new GridLayoutManager(2, 2, new Insets(0, 0, 0, 0), -1, -1));
        panel1.add(panel2,
                new GridConstraints(3, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH,
                        GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW,
                        GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW,
                        new Dimension(-1, 100), null, null, 0, false));
        panel2.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), "Options"));
        revisionCbx = new JCheckBox();
        revisionCbx.setText("Revision");
        revisionCbx.setMnemonic('R');
        revisionCbx.setDisplayedMnemonicIndex(0);
        panel2.add(revisionCbx,
                new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE,
                        GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW,
                        GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
        revisionTxt = new JTextField();
        revisionTxt.setEnabled(false);
        revisionTxt.setText("tip");
        panel2.add(revisionTxt,
                new GridConstraints(0, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_HORIZONTAL,
                        GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null,
                        new Dimension(150, -1), null, 0, false));
        final Spacer spacer2 = new Spacer();
        panel2.add(spacer2,
                new GridConstraints(1, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_VERTICAL, 1,
                        GridConstraints.SIZEPOLICY_WANT_GROW, null, null, null, 0, false));
        final Spacer spacer3 = new Spacer();
        panel2.add(spacer3,
                new GridConstraints(1, 1, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_HORIZONTAL,
                        GridConstraints.SIZEPOLICY_WANT_GROW, 1, null, null, null, 0, false));
        hgRepositorySelectorComponent = new BzrRepositorySelectorComponent();
        panel1.add(hgRepositorySelectorComponent.$$$getRootComponent$$$(),
                new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_HORIZONTAL,
                        GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_WANT_GROW,
                        GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, null,
                        null, 0, false));
        label1.setLabelFor(repositoryTxt);
    }

    /** @noinspection ALL */
    public JComponent $$$getRootComponent$$$() {
        return contentPanel;
    }
}