diff --git a/Cellules.java b/Cellules.java index 4d9260d..f2e028f 100644 --- a/Cellules.java +++ b/Cellules.java @@ -1,6 +1,5 @@ import java.awt.Color; import javax.swing.JComponent; - import java.awt.Graphics; public class Cellules extends JComponent{ diff --git a/ChoixAlgo.java b/ChoixAlgo.java index 6e60a7e..f6e8d9f 100644 --- a/ChoixAlgo.java +++ b/ChoixAlgo.java @@ -11,6 +11,7 @@ public class ChoixAlgo extends Fenetre { super(); this.fenetre.setVisible(true); this.fenetre.setTitle("Algorithmes et visualisation"); + this.fenetre.setLocation(1000, 200); this.ceTableau = uneGrille; this.cetteGrille = uneGrilleCell; diff --git a/FenetreImpGrille.java b/FenetreImpGrille.java index 9c12ff2..868a850 100644 --- a/FenetreImpGrille.java +++ b/FenetreImpGrille.java @@ -18,6 +18,7 @@ public class FenetreImpGrille extends Fenetre { /* =============================================================== Gestion des paramètres de la fenètre ========================================================================== */ /*Création de la fenètre */ this.fenetre.setSize(600, 600); + this.fenetre.setLocation(300, 150); /*Mise en place du grid layout */ GridLayout gestionnaire = new GridLayout(taille,taille); this.fenetre.setLayout(gestionnaire); diff --git a/FenetreRndmGrille.java b/FenetreRndmGrille.java index e2d81ca..6a58467 100644 --- a/FenetreRndmGrille.java +++ b/FenetreRndmGrille.java @@ -25,7 +25,7 @@ public class FenetreRndmGrille extends Fenetre{ public void randomGrille(){ this.fenetre.setSize(600, 600); - this.fenetre.setLocation(450, 200); + this.fenetre.setLocation(300, 150); GridLayout gestionnaire = new GridLayout(this.taille,this.taille); this.fenetre.setLayout(gestionnaire); diff --git a/FenetreVideGrille.java b/FenetreVideGrille.java index 9d20fec..9c1ba98 100644 --- a/FenetreVideGrille.java +++ b/FenetreVideGrille.java @@ -21,7 +21,7 @@ public class FenetreVideGrille extends Fenetre{ public void videGrille(){ this.fenetre.setSize(600, 600); - this.fenetre.setLocation(450, 200); + this.fenetre.setLocation(300, 150); GridLayout gestionnaire = new GridLayout(this.taille,this.taille); this.fenetre.setLayout(gestionnaire); @@ -33,7 +33,7 @@ public class FenetreVideGrille extends Fenetre{ for(int i=0; i