/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package tmcsim.client.cadclientgui.screens; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import tmcsim.client.cadclientgui.data.CADData; /** * CURRENTLY NOT IN USE. * @author Stuart */ public class LicensePlateInformation extends javax.swing.JDialog { private CADData cadData; int incidentId; /** * Creates new form licensePlateInformation */ public LicensePlateInformation(java.awt.Frame parent, boolean modal, int incidentId,CADData cadData) { super(parent, modal); this.cadData = cadData; this.incidentId = incidentId; initComponents(); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // //GEN-BEGIN:initComponents private void initComponents() { plateNumberLabel = new javax.swing.JLabel(); plateNumberField = new javax.swing.JTextField(5); stateLabel = new javax.swing.JLabel(); stateField = new javax.swing.JTextField(5); yearField = new javax.swing.JTextField(); yearLabel = new javax.swing.JLabel(); typeLabel = new javax.swing.JLabel(); typeCombo = new javax.swing.JComboBox(); okButton = new javax.swing.JButton(); nextButton = new javax.swing.JButton(); cancelButton = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.HIDE_ON_CLOSE); plateNumberLabel.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N plateNumberLabel.setText("Plate Number:"); stateLabel.setText("State:"); yearLabel.setText("Year:"); typeLabel.setText("Type:"); typeCombo.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" })); okButton.setText("OK"); okButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent arg0) { cadData.getIncident(incidentId).getIncidentVehicle().addVehicleInformation(plateNumberField.getText(), stateField.getText(), (String)(typeCombo.getSelectedItem()), yearField.getText() ); //ScreenManager.refreshIncidentViewerLicenseTable(incidentId); dispose(); } }); nextButton.setText("Next"); nextButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent arg0) { cadData.getIncident(incidentId).getIncidentVehicle().addVehicleInformation(plateNumberField.getText(), stateField.getText(), (String)(typeCombo.getSelectedItem()), yearField.getText() ); //ScreenManager.refreshIncidentViewerLicenseTable(incidentId); refreshInformation(incidentId); } }); cancelButton.setText("Cancel"); cancelButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent arg0) { dispose(); } }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(stateLabel) .addComponent(plateNumberLabel)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addGroup(layout.createSequentialGroup() .addComponent(stateField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(typeLabel)) .addGroup(layout.createSequentialGroup() .addComponent(plateNumberField, javax.swing.GroupLayout.PREFERRED_SIZE, 100, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(yearLabel))) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(typeCombo, 0, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addGroup(layout.createSequentialGroup() .addComponent(yearField, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(0, 0, Short.MAX_VALUE)))) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addGap(0, 0, Short.MAX_VALUE) .addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(0, 0, 0) .addComponent(nextButton, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(0, 0, 0) .addComponent(cancelButton, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE))) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(plateNumberLabel) .addComponent(plateNumberField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(yearLabel) .addComponent(yearField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(stateLabel) .addComponent(stateField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(typeLabel) .addComponent(typeCombo, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(cancelButton) .addComponent(nextButton) .addComponent(okButton)) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); pack(); setVisible(true); }// //GEN-END:initComponents public void refreshInformation(int incidentId){ this.incidentId = incidentId; plateNumberField.setText(""); stateField.setText(""); yearField.setText(""); } public void open(int incidentId){ refreshInformation(incidentId); setVisible(true); } public void close(){ setVisible(false); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton cancelButton; private javax.swing.JButton nextButton; private javax.swing.JButton okButton; private javax.swing.JTextField plateNumberField; private javax.swing.JLabel plateNumberLabel; private javax.swing.JTextField stateField; private javax.swing.JLabel stateLabel; private javax.swing.JComboBox typeCombo; private javax.swing.JLabel typeLabel; private javax.swing.JTextField yearField; private javax.swing.JLabel yearLabel; // End of variables declaration//GEN-END:variables }