001package jmri.jmrit.operations.automation.gui;
002
003import java.awt.Dimension;
004import java.awt.GridBagLayout;
005
006import javax.swing.*;
007
008import jmri.InstanceManager;
009import jmri.jmrit.operations.OperationsFrame;
010import jmri.jmrit.operations.automation.*;
011import jmri.jmrit.operations.setup.Control;
012import jmri.util.swing.JmriJOptionPane;
013
014/**
015 * Frame for making a new copy of a automation.
016 *
017 * @author Bob Jacobsen Copyright (C) 2001
018 * @author Daniel Boudreau Copyright (C) 2016
019 */
020public class AutomationCopyFrame extends OperationsFrame {
021
022    AutomationManager automationManager = InstanceManager.getDefault(AutomationManager.class);
023
024    // labels
025    // text field
026    javax.swing.JTextField automationNameTextField = new javax.swing.JTextField(Control.max_len_string_automation_name);
027
028    // major buttons
029    javax.swing.JButton copyButton = new javax.swing.JButton(Bundle.getMessage("ButtonCopy"));
030
031    // combo boxes
032    JComboBox<Automation> automationBox = InstanceManager.getDefault(AutomationManager.class).getComboBox();
033
034    public AutomationCopyFrame(Automation automation) {
035        // general GUI config
036
037        getContentPane().setLayout(new BoxLayout(getContentPane(), BoxLayout.Y_AXIS));
038
039        // Set up the panels
040        // Layout the panel by rows
041        // row 1
042        JPanel pName = new JPanel();
043        pName.setLayout(new GridBagLayout());
044        pName.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("Name")));
045        addItem(pName, automationNameTextField, 0, 0);
046
047        // row 2
048        JPanel pCopy = new JPanel();
049        pCopy.setLayout(new GridBagLayout());
050        pCopy.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("SelectAutomation")));
051        addItem(pCopy, automationBox, 0, 0);
052
053        automationBox.setSelectedItem(automation);
054
055        // row 4
056        JPanel pButton = new JPanel();
057        pButton.add(copyButton);
058
059        getContentPane().add(pName);
060        getContentPane().add(pCopy);
061        getContentPane().add(pButton);
062
063        // add help menu to window
064        addHelpMenu("package.jmri.jmrit.operations.Operations_CopyAutomation", true); // NOI18N
065
066        setTitle(Bundle.getMessage("TitleAutomationCopy"));
067
068        // setup buttons
069        addButtonAction(copyButton);
070        
071        initMinimumSize(new Dimension(Control.panelWidth400, Control.panelHeight200));
072    }
073
074    @Override
075    public void buttonActionPerformed(java.awt.event.ActionEvent ae) {
076        if (ae.getSource() == copyButton) {
077            log.debug("copy automation button activated");
078            if (!checkName()) {
079                return;
080            }
081
082            Automation newAutomation = automationManager.getAutomationByName(automationNameTextField.getText());
083            if (newAutomation != null) {
084                reportAutomationExists();
085                return;
086            }
087            if (automationBox.getSelectedItem() == null) {
088                reportAutomationDoesNotExist();
089                return;
090            }
091            Automation oldAutomation = (Automation) automationBox.getSelectedItem();
092            if (oldAutomation == null) {
093                reportAutomationDoesNotExist();
094                return;
095            }
096
097            // now copy
098            newAutomation = automationManager.copyAutomation(oldAutomation, automationNameTextField.getText());
099            new AutomationTableFrame(newAutomation);
100        }
101    }
102
103    private void reportAutomationExists() {
104        JmriJOptionPane.showMessageDialog(this, Bundle.getMessage("ReportExists"), Bundle
105                .getMessage("CanNotCopyAutomation"), JmriJOptionPane.ERROR_MESSAGE);
106    }
107
108    private void reportAutomationDoesNotExist() {
109        JmriJOptionPane.showMessageDialog(this, Bundle.getMessage("SelectAutomation"), Bundle
110                .getMessage("CanNotCopyAutomation"), JmriJOptionPane.ERROR_MESSAGE);
111    }
112
113    /**
114     *
115     * @return true if name isn't too long
116     */
117    private boolean checkName() {
118        if (automationNameTextField.getText().trim().isEmpty()) {
119            JmriJOptionPane.showMessageDialog(this, Bundle.getMessage("EnterAutomationName"), Bundle
120                    .getMessage("CanNotCopyAutomation"), JmriJOptionPane.ERROR_MESSAGE);
121            return false;
122        }
123        if (automationNameTextField.getText().length() > Control.max_len_string_automation_name) {
124            JmriJOptionPane.showMessageDialog(this,
125                    Bundle.getMessage("AutomationNameLengthMax", Control.max_len_string_automation_name),
126                    Bundle.getMessage("CanNotCopyAutomation"), JmriJOptionPane.ERROR_MESSAGE);
127            return false;
128        }
129        return true;
130    }
131
132    @Override
133    public void dispose() {
134        super.dispose();
135    }
136
137    private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(AutomationCopyFrame.class);
138
139}