diff --git a/analyseWriter.exe b/analyseWriter.exe index 8c1b3f2..3f3af51 100644 Binary files a/analyseWriter.exe and b/analyseWriter.exe differ diff --git a/bin/.gitignore b/bin/.gitignore index de1223b..c422e32 100644 --- a/bin/.gitignore +++ b/bin/.gitignore @@ -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 diff --git a/icons/bye-bye.png b/icons/bye-bye.png new file mode 100644 index 0000000..90f54c5 Binary files /dev/null and b/icons/bye-bye.png differ diff --git a/icons/bye-bye.svg b/icons/bye-bye.svg new file mode 100644 index 0000000..10c56da --- /dev/null +++ b/icons/bye-bye.svg @@ -0,0 +1,7382 @@ + + + +Voulez vous quitter analyseWriter ?Voulez vous quitter analyseWriter ?Voulez vous enregistrer vos modifications avant de quitter ?Voulez vous enregistrer vos modifications avant de quitter ? diff --git a/icons/enregistrer_modifications.svg.2024_05_18_15_52_08.0.svg b/icons/enregistrer_modifications.svg.2024_05_18_15_52_08.0.svg new file mode 100644 index 0000000..55ad8d0 --- /dev/null +++ b/icons/enregistrer_modifications.svg.2024_05_18_15_52_08.0.svg @@ -0,0 +1,1391 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/fenetres/evaluate.java b/src/fenetres/evaluate.java index 49d2a89..8fd5c19 100644 --- a/src/fenetres/evaluate.java +++ b/src/fenetres/evaluate.java @@ -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("

Ne pas afficher le coef. de progression
dans les feedbacks

"); 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"))); } } }); diff --git a/src/resources/afficheprogression.png b/src/resources/afficheprogression.png new file mode 100644 index 0000000..9bead26 Binary files /dev/null and b/src/resources/afficheprogression.png differ diff --git a/src/resources/afficheprogressionmini.png b/src/resources/afficheprogressionmini.png new file mode 100644 index 0000000..5af460f Binary files /dev/null and b/src/resources/afficheprogressionmini.png differ diff --git a/src/resources/noafficheprogression.png b/src/resources/noafficheprogression.png new file mode 100644 index 0000000..acd41a7 Binary files /dev/null and b/src/resources/noafficheprogression.png differ diff --git a/src/resources/noafficheprogressionmini.png b/src/resources/noafficheprogressionmini.png new file mode 100644 index 0000000..67c53d5 Binary files /dev/null and b/src/resources/noafficheprogressionmini.png differ