Transférer les fichiers vers 'src/Test'

This commit is contained in:
Romain BESSON 2022-12-07 14:44:09 +01:00
parent 3573ac6da1
commit 4783da6ded

View File

@ -5,13 +5,30 @@ import javax.swing.JButton;
import java.awt.Color;
import java.awt.Font;
/**
* Bouton personnalisé avec des bords arrondis et un fond transparent
*/
public class CustomJButton extends JButton {
private int fontSize = 12;
private Font font = new Font("Arial", Font.PLAIN, 12);
private Color color = Color.BLACK;
//private final int radius = 20;
/**
* @param text texte affiché dans le bouton
*/
public CustomJButton(String text) {
super(text);
init();
}
/**
* @param text texte affiché dans le bouton
* @param fontSize taille du texte
*/
public CustomJButton(String text, int fontSize) {
super(text);
init();
this.fontSize = fontSize;
this.font = new Font("Arial", Font.PLAIN, this.fontSize);
}
/**
* @param text texte affiché dans le bouton
@ -27,9 +44,8 @@ public class CustomJButton extends JButton {
* @param text texte affiché dans le bouton
* @param font police du texte
*/
public CustomJButton(String text, Font font, Color c) {
public CustomJButton(String text, Font font) {
super(text);
this.color = c;
this.font = font;
init();
}
@ -38,28 +54,18 @@ public class CustomJButton extends JButton {
* @param text texte affiché dans le bouton
* @param font police du texte
*/
public CustomJButton(String text, Font font) {
public CustomJButton(String text, Font font, Color c) {
super(text);
this.color = c;
this.font = font;
init();
}
/**
* @param text texte affiché dans le bouton
*/
public CustomJButton(String text) {
super(text);
init();
}
private void init() {
this.setForeground(Color.WHITE);
this.setBackground(color);
this.setFont(font);
this.setFocusPainted(false);
this.setContentAreaFilled(true);
//this.setBorderPainted(false);
//this.setBorder(new RoundedBorder(radius, this));
}
}