/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * UpdateRoster.java * * Created on Dec 6, 2009, 2:20:29 PM */ package graderforms.resources; import javax.swing.JFileChooser; /** * * @author Kevin */ public class UpdateRoster extends javax.swing.JDialog { java.awt.Frame parent; /** Creates new form UpdateRoster */ public UpdateRoster(java.awt.Frame parent, boolean modal) { super(parent, modal); this.parent=parent; initComponents(); this.setTitle("Update Roster"); this.setLocationRelativeTo(null); } /** 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() { jLabel1 = new javax.swing.JLabel(); jLabel2 = new javax.swing.JLabel(); jCheckBox1 = new javax.swing.JCheckBox(); text1 = new javax.swing.JTextField(); browseButton = new javax.swing.JButton(); jButton2 = new javax.swing.JButton(); synchButton = new javax.swing.JButton(); jLabel1.setText("Update Roster will synchronize your current class roster with a roster provided online"); jLabel1.setName("jLabel1"); // NOI18N jLabel2.setText("***NOTE: Roster changes will not yet be finalized after clicking Synchronize Roster below."); jLabel2.setName("jLabel2"); // NOI18N jCheckBox1.setText("Use previously accessed SIS roster?"); jCheckBox1.setHorizontalTextPosition(javax.swing.SwingConstants.LEADING); jCheckBox1.setName("jCheckBox1"); // NOI18N jCheckBox1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jCheckBox1ActionPerformed(evt); } }); text1.setName("text1"); // NOI18N browseButton.setText("..."); browseButton.setName("browseButton"); // NOI18N browseButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { browseButtonActionPerformed(evt); } }); jButton2.setText("Cancel"); jButton2.setName("jButton2"); // NOI18N jButton2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jButton2ActionPerformed(evt); } }); synchButton.setText("Synchronize Roster"); synchButton.setEnabled(false); synchButton.setName("synchButton"); // NOI18N synchButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { synchButtonActionPerformed(evt); } }); 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) .addComponent(jCheckBox1) .addComponent(jLabel1) .addComponent(jLabel2) .addGroup(layout.createSequentialGroup() .addComponent(text1, javax.swing.GroupLayout.PREFERRED_SIZE, 286, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(browseButton))) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap(226, Short.MAX_VALUE) .addComponent(synchButton) .addGap(27, 27, 27) .addComponent(jButton2) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jLabel2) .addGap(18, 18, 18) .addComponent(jCheckBox1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(text1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(browseButton)) .addGap(18, 18, 18) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jButton2) .addComponent(synchButton)) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); pack(); }// //GEN-END:initComponents private void browseButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_browseButtonActionPerformed JFileChooser jfc=new JFileChooser(); if(jfc.showOpenDialog(this)==jfc.APPROVE_OPTION){ text1.setText(jfc.getSelectedFile().getName()); synchButton.setEnabled(true); } }//GEN-LAST:event_browseButtonActionPerformed private void jCheckBox1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCheckBox1ActionPerformed if(jCheckBox1.isSelected()) { text1.setText(""); text1.setEnabled(false); browseButton.setEnabled(false); synchButton.setEnabled(true); } else { text1.setEnabled(true); browseButton.setEnabled(true); synchButton.setEnabled(false); } }//GEN-LAST:event_jCheckBox1ActionPerformed private void synchButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_synchButtonActionPerformed (new LoadingRoster(parent, false)).setVisible(true); this.setVisible(false); }//GEN-LAST:event_synchButtonActionPerformed private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed this.setVisible(false); }//GEN-LAST:event_jButton2ActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { UpdateRoster dialog = new UpdateRoster(new javax.swing.JFrame(), true); dialog.addWindowListener(new java.awt.event.WindowAdapter() { public void windowClosing(java.awt.event.WindowEvent e) { System.exit(0); } }); dialog.setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton browseButton; private javax.swing.JButton jButton2; private javax.swing.JCheckBox jCheckBox1; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JButton synchButton; private javax.swing.JTextField text1; // End of variables declaration//GEN-END:variables }