MAJ (V4.3.1 : Amélioration affichage des information d'un node)

This commit is contained in:
pablo rodriguez 2022-12-01 17:25:36 +01:00
parent d0632ff7d7
commit a51972ac77
13 changed files with 7 additions and 4 deletions

View File

@ -14,6 +14,6 @@
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/zip4j-1.2.7.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/git/analyseWriter/MEPTL/miglayout15-swing.jar"/>
<classpathentry kind="lib" path="jgoodies-forms-1.8.0.jar" sourcepath="jgoodies-forms-1.8.0-sources.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/cXML.jar" sourcepath="/cXML"/>
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/cXML.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Binary file not shown.

Binary file not shown.

1
bin/.gitignore vendored
View File

@ -1 +0,0 @@
/fenetres/

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Binary file not shown.

View File

@ -270,10 +270,13 @@ public class afficheText extends JEditorPane {
}
}
//**********************************
//** Affiche le contenu d'un node **
//**********************************
if(!nod.getNomElt().equals("fichier")&&!nod.getNomElt().equals("setting")&&!nod.getNomElt().equals("structurepage")) {
if(!nod.retourneLesContenusEnfants("").isEmpty()) {
sb.append("<br><br><h4><u>Contenu</u></h4><br>" + nod.retourneLesContenusEnfants("") );
sb.append("<br><h4><u>Contenu</u></h4>" + nod.retourneLesContenusEnfants2("").replace("&apos;", "&#8217;") + "<br>" ); //+ nod.retourneLesContenusEnfants("")
System.out.println(nod.retourneLesContenusEnfants2("").replace("&apos;", "&#8217;"));
}
}

View File

@ -27,6 +27,7 @@ public class baliseStyle {
+ "p.p4{margin-left: 0px; margin-bottom: 0cm; margin-top: 4px; line-height: 115%}"
+ "p.p5 {color: navy;text-indent: 30px;}"
+ ".center { display: block;margin-left: auto;margin-right: auto;width: 50%}"
+ ".tabulation { display: inline-block; margin-left: 40px;} "
+ "</style>";
}