MAJ V4.5.0

This commit is contained in:
pablo rodriguez 2024-04-05 16:04:14 +02:00
parent 8af5365982
commit a957834bd2
9 changed files with 0 additions and 65 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1063,71 +1063,6 @@ private AbstractAction actOpen = new AbstractAction() {
}
};
// /**
// * Quitter l'application
// */
// private AbstractAction actExit = new AbstractAction() {
//
// private static final long serialVersionUID = 1L;
//
// {
// putValue( Action.NAME, "Quitter" );
// putValue( Action.SMALL_ICON, new ImageIcon(evaluate.class.getResource("/resources/exitmini.png")));
// putValue( Action.LARGE_ICON_KEY, new ImageIcon(evaluate.class.getResource("/resources/exit.png")) );
// putValue( Action.MNEMONIC_KEY, KeyEvent.VK_Q );
// putValue( Action.SHORT_DESCRIPTION, "Quitter (CRTL+Q)" );
// putValue( Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_Q, KeyEvent.CTRL_DOWN_MASK ) );
// }
//
// @Override public void actionPerformed( ActionEvent e ) {
// if(JOptionPane.showConfirmDialog(null,"Voulez-vous quitter analyseWriter?", "Quitter", JOptionPane.YES_NO_OPTION,JOptionPane.QUESTION_MESSAGE)==JOptionPane.YES_OPTION) {
// baseDonneesEvaluations.ferme();
// create.fermeCreate();
// dispose();
// evaluate.isDispose=true;
// }
//
// }
// };
// /**
// * Enregistre la zone de texte.</br>
// */
// private AbstractAction actSave = new AbstractAction() {
//
// private static final long serialVersionUID = 1L;
//
// {
// putValue( Action.NAME, "Enregistrer la zone de texte" );
// putValue( Action.SMALL_ICON, new ImageIcon(evaluate.class.getResource("/resources/savemini.png")));
// putValue( Action.MNEMONIC_KEY, KeyEvent.VK_S );
// putValue( Action.SHORT_DESCRIPTION, "Enregistrer la zone de texte (CRTL+S)" );
// putValue( Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_S, KeyEvent.CTRL_DOWN_MASK ) );
// }
//
// @Override public void actionPerformed( ActionEvent e ) {
// }
// };
// /**
// * Enregistre sous la zone de texte.</br>
// */
// private AbstractAction actSaveas = new AbstractAction() {
//
// private static final long serialVersionUID = 1L;
//
// {
// putValue( Action.NAME, "Enregistrer la zone de texte sous ..." );
// putValue( Action.SMALL_ICON, new ImageIcon(evaluate.class.getResource("/resources/saveasmini.png")));
// putValue( Action.SHORT_DESCRIPTION, "Enregistrer la zone de texte sous ..." );
// }
//
// @Override public void actionPerformed( ActionEvent e ) {
//
//
//
// }
// };
/**