MAJ V4.5.0
5
bin/.gitignore
vendored
@ -13,3 +13,8 @@
|
||||
/sousmenuRecherche/
|
||||
/sousmenuRepresentation/
|
||||
/resources/
|
||||
/bye-bye.png
|
||||
/bye-bye.svg
|
||||
/enregistrer_modifications.png
|
||||
/enregistrer_modifications.svg
|
||||
/enregistrer_modifications.svg.2024_05_18_15_52_08.0.svg
|
||||
|
BIN
icons/bye-bye.png
Normal file
After Width: | Height: | Size: 65 KiB |
7382
icons/bye-bye.svg
Normal file
After Width: | Height: | Size: 1.1 MiB |
1391
icons/enregistrer_modifications.svg.2024_05_18_15_52_08.0.svg
Normal file
After Width: | Height: | Size: 98 KiB |
@ -89,7 +89,7 @@ public class evaluate extends JFrame {
|
||||
private static JCheckBox chckbxVerif;
|
||||
private static JCheckBox chckbxNewLogo;
|
||||
private static JCheckBox chckbxNoDetail;
|
||||
private static JCheckBox chckPasDeProgression = new JCheckBox("Ne pas afficher le coef. de progression");
|
||||
private static JCheckBox chckPasDeProgression = new JCheckBox("<html><p>Ne pas afficher le coef. de progression<br>dans les feedbacks</p></html>");
|
||||
private static afficheText txtpnmessages;
|
||||
private JButton btnChargeEvaluation = new JButton();
|
||||
private JButton btnSaveEvaluation = new JButton();
|
||||
@ -188,16 +188,22 @@ public class evaluate extends JFrame {
|
||||
}
|
||||
});
|
||||
|
||||
panelBoutons.add(chckPasDeProgression, "cell 1 0");
|
||||
JLabel lblafficheprogression = new JLabel(new ImageIcon(create.class.getResource("/resources/afficheprogression.png")));
|
||||
panelBoutons.add(lblafficheprogression, "cell 0 0");
|
||||
chckPasDeProgression.setFont(new Font("Tahoma", Font.PLAIN, 12));
|
||||
|
||||
panelBoutons.add(chckPasDeProgression, "cell 1 0,alignx left,aligny center");
|
||||
chckPasDeProgression.setSelected(commandes.noAfficheProgression);
|
||||
chckPasDeProgression.addChangeListener(new ChangeListener() {
|
||||
public void stateChanged(ChangeEvent e) {
|
||||
if(chckPasDeProgression.isSelected()) {
|
||||
commandes.noAfficheProgression=true;
|
||||
commandes.evaluationChargeEnMemoire.getAttributs().put("noAfficheProgression", "true" );
|
||||
lblafficheprogression.setIcon(new ImageIcon(create.class.getResource("/resources/noafficheprogression.png")));
|
||||
}else {
|
||||
commandes.noAfficheProgression=false;
|
||||
commandes.evaluationChargeEnMemoire.getAttributs().put("noAfficheProgression", "false" );
|
||||
lblafficheprogression.setIcon(new ImageIcon(create.class.getResource("/resources/afficheprogression.png")));
|
||||
}
|
||||
}
|
||||
});
|
||||
|
BIN
src/resources/afficheprogression.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/resources/afficheprogressionmini.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
src/resources/noafficheprogression.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
src/resources/noafficheprogressionmini.png
Normal file
After Width: | Height: | Size: 710 B |