36 lines
1.2 KiB
Java
36 lines
1.2 KiB
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 test{
|
||
|
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(1000,800);
|
||
|
//nous utiliserons un gestionnaire GridLayout
|
||
|
fenetre.setLayout(null);
|
||
|
// l'application ne se fermera que si on clique sur
|
||
|
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
fenetre.setVisible(true);
|
||
|
|
||
|
test.affichageChoixTaille(fenetre);
|
||
|
}
|
||
|
private static int[] affichageChoixTaille(JFrame fenetre){
|
||
|
// fonction pour la selection des lignes et des collones de l'aplication
|
||
|
paintChoix pinceauMoins = new paintChoix(1);
|
||
|
paintChoix pinceauPlus = new paintChoix(2);
|
||
|
pinceauMoins.setSize(fenetre.getWidth()/10, fenetre.getHeight()/10);
|
||
|
pinceauMoins.setLocation(fenetre.getWidth()/5, fenetre.getHeight()/2);
|
||
|
pinceauPlus.setSize(fenetre.getWidth()/10, fenetre.getHeight()/10);
|
||
|
pinceauPlus.setLocation(fenetre.getWidth()/5*3, fenetre.getHeight()/2);
|
||
|
fenetre.add(pinceauMoins);
|
||
|
fenetre.add(pinceauPlus);
|
||
|
return (new int[3]);
|
||
|
}
|
||
|
}
|