Files
DEV/DEV2.1/TP09/02_Playlist/Fenetre.java
Simoes Lukas cf33623a5d TP Exceptions
2025-03-12 17:10:44 +01:00

58 lines
1.2 KiB
Java

import java.awt.*;
import javax.swing.*;
public class Fenetre extends JFrame {
private JLabel2 actif;
private boolean estActif;
public Fenetre() {
this.estActif = false;
this.setLocation(100, 100);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLayout(new GridLayout(14, 1));
JLabel2[] chromakopia = {
new JLabel2("St. Chroma"),
new JLabel2("Rah Tah Tah"),
new JLabel2("Noid"),
new JLabel2("Darling, I"),
new JLabel2("Hey Jane"),
new JLabel2("I Killed You"),
new JLabel2("Judge Judy"),
new JLabel2("Sticky"),
new JLabel2("Take Your Mask Off"),
new JLabel2("Tomorrow"),
new JLabel2("Thought I Was Dead"),
new JLabel2("Like Him"),
new JLabel2("Balloon"),
new JLabel2("I Hope You Find Your Way Home")
};
for (JLabel2 titre : chromakopia) {
GestionSouris gestion = new GestionSouris(titre, this);
titre.addMouseListener(gestion);
titre.setGestionnaireSouris(gestion);
this.add(titre);
}
this.pack();
}
public boolean getEstActif() {
return this.estActif;
}
public void setEstActif(boolean n) {
this.estActif = n;
}
public void setActif(JLabel2 n) {
this.actif = n;
}
public JLabel2 getActif() {
return this.actif;
}
}