33 lines
989 B
Java
33 lines
989 B
Java
// Tom Monint et Clément Martins
|
|
// main_ex V1
|
|
// Classe ayant pour but d'être executer
|
|
|
|
//importons les packages necessaires
|
|
import java.awt.*;
|
|
import javax.swing.*;
|
|
|
|
public class main_ex{
|
|
public static void main(String[] args){
|
|
// on initialise une fenettre
|
|
JFrame fenetre = new JFrame("Démineur");
|
|
fenetre.setLocation(0,0);
|
|
//on choisi une taille arbitraire
|
|
fenetre.setSize(1030,800);
|
|
//nous utiliserons un gestionnaire GridLayout
|
|
GridLayout grille = new GridLayout(1,3);
|
|
fenetre.setLayout(grille);
|
|
// l'application ne se fermera que si on clique sur
|
|
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
fenetre.setVisible(true);
|
|
nombreCollonnesLigneEtBombe choixCLB = new nombreCollonnesLigneEtBombe(fenetre);
|
|
fenetre.addMouseListener(new observateurChoix(fenetre, choixCLB));
|
|
JLabel test = new JLabel("1");
|
|
fenetre.add(new paintChoix(1));
|
|
fenetre.add(test);
|
|
fenetre.add(new paintChoix(2));
|
|
|
|
// Choix des lignes/Collonnes/Bombe
|
|
|
|
|
|
}
|
|
} |