2022-06-19 21:01:30 +02:00
|
|
|
package fenetres.create_act;
|
|
|
|
|
|
|
|
import java.awt.event.ActionEvent;
|
|
|
|
|
|
|
|
import javax.swing.AbstractAction;
|
|
|
|
import javax.swing.Action;
|
2022-12-12 11:49:47 +01:00
|
|
|
import javax.swing.ImageIcon;
|
2022-06-19 21:01:30 +02:00
|
|
|
|
|
|
|
import MEPTL.commandes;
|
|
|
|
import cXML.node;
|
2022-12-12 11:49:47 +01:00
|
|
|
import fenetres.create;
|
2022-06-19 21:01:30 +02:00
|
|
|
import list.listeNodeFormatageDirectDeWriter;
|
|
|
|
|
|
|
|
public class actEvaluerStyleFalse extends AbstractAction{
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
{
|
|
|
|
putValue( Action.NAME, "N'évaluer pas le style." );
|
2022-12-12 11:49:47 +01:00
|
|
|
putValue( Action.SHORT_DESCRIPTION, "N'évaluer pas le style:name de ce node dans le fichier de l'étudiant" );
|
|
|
|
putValue( Action.SMALL_ICON, new ImageIcon(create.class.getResource("/resources/falsemini.png")));
|
2022-06-19 21:01:30 +02:00
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent e) {
|
|
|
|
node nod = (node) fenetres.create.getSelectNode().getUserObject();
|
|
|
|
nod.getAttributs().put("analyseStyle", "false");
|
|
|
|
|
|
|
|
//***************************************************************************************************************
|
|
|
|
//** Place l'attribut EvaluerATraversAnalyseStyle=false au style qui doit être évaluer à travers d'analyseStyle **
|
|
|
|
//** S'il y a des attributs évaluer avec ‼ alors change par ‽ **
|
|
|
|
//***************************************************************************************************************
|
|
|
|
node nodStyle = commandes.sujet.retourneFirstNodeByNameAndAttributValueExactStrict("style:style", "style:name", nod.getAttributs().get("text:style-name"));
|
|
|
|
if(nodStyle!=null) {
|
|
|
|
nodStyle.getAttributs().put("EvaluerATraversAnalyseStyle", "false");
|
|
|
|
nodStyle.evaluerAllChildFalse();
|
|
|
|
if(!listeNodeFormatageDirectDeWriter.isFormatageDirect(nodStyle)) {
|
|
|
|
nodStyle.changeLesCodesEvaluateursVersCodeEvaluateurDirect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fenetres.create.getTextNodeSelect().refreshAffichage(nod);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|