MAJ V4.4.1
@ -61,15 +61,17 @@ public class evaluate extends JFrame {
|
||||
*
|
||||
*/
|
||||
private JToolBar toolBar;
|
||||
private JPanel contentPane;
|
||||
private JLabel lblPath;
|
||||
private JLabel lblFileAnalyse;
|
||||
private JLabel lblFichierCSV;
|
||||
private JLabel lblFichierSVG;
|
||||
private JPanel contentPane;
|
||||
private JLabel lblPath;
|
||||
private JLabel lblFileAnalyse;
|
||||
private JLabel lblFichierCSV;
|
||||
private JLabel lblFichierSVG;
|
||||
private JLabel lblChargementFichierCSV;
|
||||
private JLabel lblImageDossierEtudiant;
|
||||
private JLabel lblNoFeedBack;
|
||||
private JLabel lblNoDeatail;
|
||||
private JLabel lblnonote;
|
||||
private JLabel lblnozip;
|
||||
private JCheckBox chckbxfichiersEtudiants;
|
||||
private JCheckBox chckbxZipfeedback;
|
||||
private JCheckBox chckbxnoFeedback;
|
||||
@ -203,37 +205,51 @@ public class evaluate extends JFrame {
|
||||
chckbxNoDetail.setSelected(commandes.noDetail);
|
||||
|
||||
|
||||
lblnonote = new JLabel("");
|
||||
lblnonote.setIcon(new ImageIcon(evaluate.class.getResource("/resources/notestudent.png")));
|
||||
chckbxNoNote = new JCheckBox("Pas de note dans les feedbacks");
|
||||
chckbxNoNote.setToolTipText("Cochez si vous voulez pas faire apparaître les notes dans les feedbacks");
|
||||
chckbxNoNote.setFont(new Font("Tahoma", Font.PLAIN, 12));
|
||||
chckbxNoNote.setSelected(commandes.noNote);
|
||||
panelWest.add(lblnonote, "cell 0 5");
|
||||
panelWest.add(chckbxNoNote, "cell 1 5,grow");
|
||||
chckbxNoNote.addChangeListener(new ChangeListener() {
|
||||
public void stateChanged(ChangeEvent e) {
|
||||
if(chckbxNoNote.isSelected()) {
|
||||
lblnonote.setIcon(new ImageIcon(evaluate.class.getResource("/resources/nonotestudent.png")));
|
||||
commandes.noNote=true;
|
||||
}else {
|
||||
lblnonote.setIcon(new ImageIcon(evaluate.class.getResource("/resources/notestudent.png")));
|
||||
commandes.noNote=false;
|
||||
}
|
||||
}
|
||||
});
|
||||
chckbxNoNote.setToolTipText("Cochez si vous voulez pas faire apparaître les notes dans les feedbacks");
|
||||
chckbxNoNote.setFont(new Font("Tahoma", Font.PLAIN, 12));
|
||||
panelWest.add(chckbxNoNote, "cell 1 5,grow");
|
||||
chckbxNoNote.setSelected(commandes.noNote);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
lblnozip = new JLabel("");
|
||||
lblnozip.setIcon(new ImageIcon(evaluate.class.getResource("/resources/zipstudent.png")));
|
||||
panelWest.add(lblnozip, "cell 0 6");
|
||||
chckbxZipfeedback = new JCheckBox("Zip les feedbacks");
|
||||
chckbxZipfeedback.addChangeListener(new ChangeListener() {
|
||||
public void stateChanged(ChangeEvent e) {
|
||||
if(chckbxZipfeedback.isSelected()) {
|
||||
commandes.zipfeedback=true;
|
||||
}else {
|
||||
commandes.zipfeedback=false;
|
||||
}
|
||||
}
|
||||
});
|
||||
chckbxZipfeedback.setToolTipText("Cochez si vous voulez placer tous les feedbacks dans une archive ZIP");
|
||||
chckbxZipfeedback.setFont(new Font("Tahoma", Font.PLAIN, 12));
|
||||
panelWest.add(chckbxZipfeedback, "cell 1 6,grow");
|
||||
chckbxZipfeedback.setSelected(commandes.zipfeedback);
|
||||
chckbxZipfeedback.addChangeListener(new ChangeListener() {
|
||||
public void stateChanged(ChangeEvent e) {
|
||||
if(chckbxZipfeedback.isSelected()) {
|
||||
lblnozip.setIcon(new ImageIcon(evaluate.class.getResource("/resources/nozipstudent.png")));
|
||||
commandes.zipfeedback=true;
|
||||
}else {
|
||||
lblnozip.setIcon(new ImageIcon(evaluate.class.getResource("/resources/zipstudent.png")));
|
||||
commandes.zipfeedback=false;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
chckbxVerif.setToolTipText("Cochez si vous voulez vérifier les échanges de fichiers entre les étudiants.");
|
||||
chckbxVerif.setFont(new Font("Tahoma", Font.PLAIN, 12));
|
||||
panelWest.add(chckbxVerif, "flowy,cell 1 7,growx,aligny top");
|
||||
|
BIN
src/resources/nonotestudent.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
src/resources/nonotestudentmini.png
Normal file
After Width: | Height: | Size: 825 B |
BIN
src/resources/notestudent.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
src/resources/notestudentmini.png
Normal file
After Width: | Height: | Size: 1019 B |
BIN
src/resources/nozipstudent.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/resources/nozipstudentmini.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
src/resources/zipstudent.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
src/resources/zipstudentmini.png
Normal file
After Width: | Height: | Size: 1.3 KiB |