This commit is contained in:
martins 2022-10-24 13:33:49 +02:00
parent 834600c514
commit 8cb848817b

View File

@ -70,14 +70,10 @@ public class BoutonsMenu extends JComponent{
secondPinceau.setColor(new Color(255, 255, 255));
secondPinceau.setFont(new Font(Font.SANS_SERIF, Font.BOLD, (this.getWidth()/10)));
FontMetrics metrics = secondPinceau.getFontMetrics(secondPinceau.getFont());
int x =(this.getWidth() - metrics.stringWidth(this.path)) / 2;
int y = ((this.getHeight() - metrics.getHeight()) / 3) + metrics.getAscent();
secondPinceau.drawString((this.path.toUpperCase()), x, y);
secondPinceau.drawString(this.path.toUpperCase(), (this.getWidth()/2-metrics.stringWidth(this.path.toUpperCase())/2), (this.getHeight()-metrics.getHeight())/3+metrics.getAscent());
//DISPO OU PAS
secondPinceau.setFont(new Font(Font.SANS_SERIF, Font.BOLD, (this.getWidth()/20)));
metrics = secondPinceau.getFontMetrics(secondPinceau.getFont());
x = (this.getWidth() - metrics.stringWidth(dispo)) / 2;
y = ((this.getHeight() - metrics.getHeight()) / 3*2) + metrics.getAscent();
secondPinceau.drawString(dispo, x, y);
secondPinceau.drawString(dispo, (this.getWidth()/2-metrics.stringWidth(dispo)/2), (this.getHeight()-metrics.getHeight())/3*2+metrics.getAscent());
}
}