MAJ V4.5.0
This commit is contained in:
parent
aecbe59c1c
commit
a3a75ac012
@ -38,7 +38,7 @@ public class CreatePopupMenu extends JPopupMenu {
|
||||
* Création de la popupmenu.</br>
|
||||
* @param nod
|
||||
*/
|
||||
public CreatePopupMenu(node nod) {
|
||||
public CreatePopupMenu(node nod ) {
|
||||
|
||||
if(nod!=null) {
|
||||
|
||||
|
@ -65,7 +65,8 @@ public class MnGroupeMethodeEvaluer {
|
||||
// Pour la méthode AllContent
|
||||
if(listeDesNodesAllContent.isAllContent(nod) ) {
|
||||
mnGroupeMethodeEvaluer.addSeparator();
|
||||
mnGroupeMethodeEvaluer.add(new actAllContent());
|
||||
mnGroupeMethodeEvaluer.add(new actAllContent());
|
||||
mnGroupeMethodeEvaluer.add(new actAllContent());
|
||||
}
|
||||
|
||||
// Pour la méthode evalAncrageNumeroAbsoluePage
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,10 +1,12 @@
|
||||
package action;
|
||||
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.KeyEvent;
|
||||
|
||||
import javax.swing.AbstractAction;
|
||||
import javax.swing.Action;
|
||||
import javax.swing.ImageIcon;
|
||||
import javax.swing.KeyStroke;
|
||||
|
||||
import cXML.node;
|
||||
import fenetres.allContent;
|
||||
@ -18,9 +20,10 @@ public class actAllContent extends AbstractAction{
|
||||
private static final long serialVersionUID = 1L;
|
||||
{
|
||||
putValue( Action.NAME, "Evaluer le contenu du node" );
|
||||
putValue( Action.SHORT_DESCRIPTION, "Evaluer le contenu du node" );
|
||||
putValue( Action.SHORT_DESCRIPTION, "Evaluer le contenu du node (SHIFT+A)" );
|
||||
putValue( Action.SMALL_ICON, new ImageIcon(create.class.getResource("/resources/allcontentmini.png")) );
|
||||
}
|
||||
putValue( Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_A, KeyEvent.SHIFT_DOWN_MASK) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
|
@ -1,7 +1,6 @@
|
||||
package action;
|
||||
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.InputEvent;
|
||||
import java.awt.event.KeyEvent;
|
||||
|
||||
import javax.swing.AbstractAction;
|
||||
|
@ -90,11 +90,11 @@ public final class create extends JFrame {
|
||||
private JToolBar toolBarPrincipal;
|
||||
private JMenuBar menuBar = new JMenuBar();
|
||||
private static JButton buttonEvaluate;
|
||||
// private static JToggleButton tglbtnTousLesNodes;
|
||||
private JPanel panelPrincipal;
|
||||
private static create instance;
|
||||
public static boolean isDispose = true;
|
||||
private static JLabel lblInfo = new JLabel("Fichier d'analyse");
|
||||
|
||||
// private static JTable table = new JTable();
|
||||
/**
|
||||
* Création de la fenêtre.</br>
|
||||
|
Loading…
Reference in New Issue
Block a user