MAJ V4.5.0

This commit is contained in:
pablo rodriguez 2024-04-06 15:13:13 +02:00
parent 56f88c1259
commit 667714b4a7
11 changed files with 11 additions and 10 deletions

2
bin/.gitignore vendored
View File

@ -182,3 +182,5 @@
/OnLineVersions/
/accueil_new_version.png
/accueill new version.svg
/apropos_new.png
/apropos_new.svg

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

@ -34,7 +34,7 @@ public class commandes {
public static node nodeCSV = null;
//** Version
public static String version ="V4.3.0"; // La version actuelle
public static String version ="V4.5.0"; // La version actuelle
public static String versionEvaluation = "";
public static String branch = "Origin";
public static String Annee ="2024";

View File

@ -25,7 +25,6 @@ import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JSplitPane;
import javax.swing.JTable;
import javax.swing.JToolBar;
import javax.swing.JTree;
import javax.swing.KeyStroke;
@ -96,7 +95,7 @@ public final class create extends JFrame {
private static create instance;
public static boolean isDispose = true;
private static JLabel lblInfo = new JLabel("Fichier d'analyse");
private static JTable table = new JTable();
// private static JTable table = new JTable();
/**
* Création de la fenêtre.</br>
*/
@ -214,7 +213,7 @@ public final class create extends JFrame {
rightScrollPane.setViewportView(textNodeSelect);
textNodeSelect.setFont(new Font("Monospaced", Font.PLAIN, 15));
ScrollPaneTable.setViewportView(table);
// ScrollPaneTable.setViewportView(table);
leftScrollPane.setViewportView(tree);
tree.setFont(new Font("Tahoma", Font.PLAIN, 16));
@ -225,12 +224,12 @@ public final class create extends JFrame {
if(commandes.fichierAnalyseValide) {
tree.setVisible(true);
table.setModel(new myTableModel(commandes.sujet.retourneFirstEnfantsByName("structurepage")));
table.setVisible(true);
// table.setModel(new myTableModel(commandes.sujet.retourneFirstEnfantsByName("structurepage")));
// table.setVisible(true);
constructionTree();
}else {
tree.setVisible(false);
table.setVisible(false);
// table.setVisible(false);
}
@ -702,11 +701,11 @@ public final class create extends JFrame {
// fenetres.create.getTglbtnTousLesNodes().setSelected(false);
fenetres.create.getButtonEvaluate().setEnabled(true);
fenetres.create.getTextNodeSelect().afficheChargementFichierAnalyse();
table.setModel(new myTableModel(commandes.sujet.retourneFirstEnfantsByName("structurepage")));
table.setVisible(true);
// table.setModel(new myTableModel(commandes.sujet.retourneFirstEnfantsByName("structurepage")));
// table.setVisible(true);
}else {
fenetres.create.getTextNodeSelect().setContentType("text/plain");
table.setVisible(false);
// table.setVisible(false);
}
}