Transférer les fichiers vers 'src/Test'
This commit is contained in:
parent
3573ac6da1
commit
4783da6ded
@ -5,13 +5,30 @@ import javax.swing.JButton;
|
|||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import java.awt.Font;
|
import java.awt.Font;
|
||||||
|
|
||||||
/**
|
|
||||||
* Bouton personnalisé avec des bords arrondis et un fond transparent
|
|
||||||
*/
|
|
||||||
public class CustomJButton extends JButton {
|
public class CustomJButton extends JButton {
|
||||||
|
private int fontSize = 12;
|
||||||
private Font font = new Font("Arial", Font.PLAIN, 12);
|
private Font font = new Font("Arial", Font.PLAIN, 12);
|
||||||
private Color color = Color.BLACK;
|
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
|
* @param text texte affiché dans le bouton
|
||||||
@ -27,9 +44,8 @@ public class CustomJButton extends JButton {
|
|||||||
* @param text texte affiché dans le bouton
|
* @param text texte affiché dans le bouton
|
||||||
* @param font police du texte
|
* @param font police du texte
|
||||||
*/
|
*/
|
||||||
public CustomJButton(String text, Font font, Color c) {
|
public CustomJButton(String text, Font font) {
|
||||||
super(text);
|
super(text);
|
||||||
this.color = c;
|
|
||||||
this.font = font;
|
this.font = font;
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
@ -38,28 +54,18 @@ public class CustomJButton extends JButton {
|
|||||||
* @param text texte affiché dans le bouton
|
* @param text texte affiché dans le bouton
|
||||||
* @param font police du texte
|
* @param font police du texte
|
||||||
*/
|
*/
|
||||||
public CustomJButton(String text, Font font) {
|
public CustomJButton(String text, Font font, Color c) {
|
||||||
super(text);
|
super(text);
|
||||||
|
this.color = c;
|
||||||
this.font = font;
|
this.font = font;
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param text texte affiché dans le bouton
|
|
||||||
*/
|
|
||||||
public CustomJButton(String text) {
|
|
||||||
super(text);
|
|
||||||
init();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void init() {
|
private void init() {
|
||||||
this.setForeground(Color.WHITE);
|
this.setForeground(Color.WHITE);
|
||||||
this.setBackground(color);
|
this.setBackground(color);
|
||||||
this.setFont(font);
|
this.setFont(font);
|
||||||
this.setFocusPainted(false);
|
this.setFocusPainted(false);
|
||||||
this.setContentAreaFilled(true);
|
this.setContentAreaFilled(true);
|
||||||
//this.setBorderPainted(false);
|
|
||||||
//this.setBorder(new RoundedBorder(radius, this));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user