From 4783da6dededc5e27a237ab661d2059eec57e69c Mon Sep 17 00:00:00 2001 From: besson Date: Wed, 7 Dec 2022 14:44:09 +0100 Subject: [PATCH] =?UTF-8?q?Transf=C3=A9rer=20les=20fichiers=20vers=20'src/?= =?UTF-8?q?Test'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Test/CustomJButton.java | 42 +++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/src/Test/CustomJButton.java b/src/Test/CustomJButton.java index 6e93139..c4a90cd 100644 --- a/src/Test/CustomJButton.java +++ b/src/Test/CustomJButton.java @@ -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)); } }