From bc345cfc9387290f319dc11c50cbe54a05fcaa49 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 23 May 2022 22:18:52 +0200 Subject: [PATCH] menu un peu plus beau + nettoyage --- EtatPartie.java | 20 -------------------- Fond.java | 47 ----------------------------------------------- MineLeft.java | 21 --------------------- 3 files changed, 88 deletions(-) delete mode 100644 EtatPartie.java delete mode 100644 Fond.java delete mode 100644 MineLeft.java diff --git a/EtatPartie.java b/EtatPartie.java deleted file mode 100644 index 9cd0f9b..0000000 --- a/EtatPartie.java +++ /dev/null @@ -1,20 +0,0 @@ -import javax.swing.*; -import java.awt.*; - -public class EtatPartie extends JPanel { - // Définition du constructeur - public EtatPartie(int mines) { - super(); - - // On défini un style à la bannière - this.setBackground( new Color(0, 236, 96)); - } - - // Méthode pour afficher le nombre de mines restantes - public void setMinesLeft(int minesLeft){ - this.removeAll(); - this.add(new MineLeft(minesLeft,this.getSize())); - this.repaint(); - this.updateUI(); - } -} \ No newline at end of file diff --git a/Fond.java b/Fond.java deleted file mode 100644 index 3d85509..0000000 --- a/Fond.java +++ /dev/null @@ -1,47 +0,0 @@ -import javax.swing.*; -import java.awt.*; - -public class Fond extends JPanel{ - public Fond(JFrame fenetre) { - - // On créer un damier aux couleurs du démineur pour le fond - - // Découpage de la fenêtre pour la mise en place du damier - Dimension damierSize = fenetre.getSize(); - Dimension gridSize = new Dimension(damierSize.width/75, damierSize.height/75); - GridLayout layoutDamier = new GridLayout(gridSize.height, gridSize.width); - this.setLayout(layoutDamier); - this.setSize(damierSize); - - // Création des couleurs - Color gray1 = new Color(70,70,70); - Color gray2 = new Color(60,60,60); - - // Réalisation du damier et ajout d'éléments graphiques - for (int line=0; line