/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * CSTutorStudent.java * * Created on Nov 21, 2009, 6:22:42 PM */ package cstutor; /** * * @author Kareem */ public class CSTutorStudent extends javax.swing.JFrame { /** Creates new form CSTutorStudent */ public CSTutorStudent() { 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() { jInternalFrame1 = new javax.swing.JInternalFrame(); ViewTButton = new javax.swing.JButton(); StatButton = new javax.swing.JButton(); ToolBar = new javax.swing.JButton(); jLabel1 = new javax.swing.JLabel(); jMenuBar1 = new javax.swing.JMenuBar(); jMenu1 = new javax.swing.JMenu(); jMenuItem1 = new javax.swing.JMenuItem(); jMenu2 = new javax.swing.JMenu(); jMenuItem2 = new javax.swing.JMenuItem(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jInternalFrame1.setBackground(new java.awt.Color(204, 204, 204)); jInternalFrame1.setClosable(true); jInternalFrame1.setVisible(true); ViewTButton.setText("View Tutorial"); ViewTButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { ViewTButtonActionPerformed(evt); } }); StatButton.setText("Statistics"); StatButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { StatButtonActionPerformed(evt); } }); javax.swing.GroupLayout jInternalFrame1Layout = new javax.swing.GroupLayout(jInternalFrame1.getContentPane()); jInternalFrame1.getContentPane().setLayout(jInternalFrame1Layout); jInternalFrame1Layout.setHorizontalGroup( jInternalFrame1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jInternalFrame1Layout.createSequentialGroup() .addContainerGap() .addGroup(jInternalFrame1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(ViewTButton, javax.swing.GroupLayout.DEFAULT_SIZE, 113, Short.MAX_VALUE) .addComponent(StatButton, javax.swing.GroupLayout.DEFAULT_SIZE, 113, Short.MAX_VALUE)) .addContainerGap()) ); jInternalFrame1Layout.setVerticalGroup( jInternalFrame1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jInternalFrame1Layout.createSequentialGroup() .addComponent(ViewTButton) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(StatButton) .addContainerGap(31, Short.MAX_VALUE)) ); ToolBar.setText("ToolBar"); ToolBar.addMouseListener(new java.awt.event.MouseAdapter() { public void mousePressed(java.awt.event.MouseEvent evt) { ToolBarMousePressed(evt); } }); ToolBar.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { ToolBarActionPerformed(evt); } }); jLabel1.setText("Welcome to the CSTutor Student"); jMenu1.setText("File"); jMenuItem1.setText("Save Progress"); jMenuItem1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { ProgessSaved(evt); } }); jMenu1.add(jMenuItem1); jMenuBar1.add(jMenu1); jMenu2.setText("Edit"); jMenuItem2.setText("Show/Hide TOC"); jMenuItem2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { ToggleTOC(evt); } }); jMenu2.add(jMenuItem2); jMenuBar1.add(jMenu2); setJMenuBar(jMenuBar1); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(ToolBar)) .addGroup(layout.createSequentialGroup() .addGap(111, 111, 111) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jInternalFrame1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel1)))) .addContainerGap(131, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 32, Short.MAX_VALUE) .addComponent(jInternalFrame1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(79, 79, 79) .addComponent(ToolBar) .addContainerGap()) ); pack(); }// //GEN-END:initComponents private void ViewTButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ViewTButtonActionPerformed // TODO add your handling code here: new cstutor.TutorialPage().setVisible(true); new cstutor.TOC().setVisible(true); }//GEN-LAST:event_ViewTButtonActionPerformed private void StatButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_StatButtonActionPerformed // TODO add your handling code here: cstutor.quizresults.Results r = new cstutor.quizresults.Results(); r.setVisible(true); }//GEN-LAST:event_StatButtonActionPerformed private void ToolBarMousePressed(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ToolBarMousePressed // TODO add your handling code here: }//GEN-LAST:event_ToolBarMousePressed private void ToolBarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ToolBarActionPerformed // TODO add your handling code here: jInternalFrame1.setVisible(true); }//GEN-LAST:event_ToolBarActionPerformed private void ProgessSaved(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ProgessSaved // TODO add your handling code here: System.out.println("Progess Saved"); }//GEN-LAST:event_ProgessSaved private void ToggleTOC(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ToggleTOC // TODO add your handling code here: }//GEN-LAST:event_ToggleTOC /** * @param args the command line arguments */ public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new CSTutorStudent().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton StatButton; private javax.swing.JButton ToolBar; private javax.swing.JButton ViewTButton; private javax.swing.JInternalFrame jInternalFrame1; private javax.swing.JLabel jLabel1; private javax.swing.JMenu jMenu1; private javax.swing.JMenu jMenu2; private javax.swing.JMenuBar jMenuBar1; private javax.swing.JMenuItem jMenuItem1; private javax.swing.JMenuItem jMenuItem2; // End of variables declaration//GEN-END:variables }