From f4ff850ecc8a944fb8f8adbdcbea2d1cccef9116 Mon Sep 17 00:00:00 2001 From: CHEVALIER Noemy <noemy.chevalier7@etu.univ-lorraine.fr> Date: Mon, 29 May 2023 20:24:24 +0000 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20la=20couleur=20de=20la=20barre=20d?= =?UTF-8?q?es=20=C3=A9l=C3=A8ves?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shukan/ShukanParameters.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/shukan/ShukanParameters.java b/shukan/ShukanParameters.java index 603c594..148df38 100644 --- a/shukan/ShukanParameters.java +++ b/shukan/ShukanParameters.java @@ -18,12 +18,15 @@ class ShukanParameters extends JFrame { /** Number of modules to display */ private int nbModules = STD_MODULES_NUMBER; /** Standard number of modules */ - private final static int STD_MODULES_NUMBER = 14; + private final static int STD_MODULES_NUMBER = 14; + /**view of the app */ + private ShukanStudent student; /** built a parameter window */ - public ShukanParameters(String titre, ShukanView canvas) { + public ShukanParameters(String titre, ShukanView canvas, ShukanStudent student) { super(titre); this.canvas = canvas; + this.student = student; p = new JPanel(new GridBagLayout()); GridBagConstraints gbcprinc = new GridBagConstraints(); @@ -61,7 +64,8 @@ class ShukanParameters extends JFrame { INACTIVE_COLOR = new Color (204,204,204); canvas.setBackgroundColor(BACK_COLOR, BACK_COLOR2); canvas.setForeground(TEXT_COLOR, HOLLY_COLOR, INACTIVE_COLOR); - + student.setBackgroundColor(BACK_COLOR2); + student.setForeground(TEXT_COLOR); } canvas.repaint(); } @@ -79,6 +83,8 @@ class ShukanParameters extends JFrame { INACTIVE_COLOR = new Color(51,51,51); canvas.setBackgroundColor(BACK_COLOR, BACK_COLOR2); canvas.setForeground(TEXT_COLOR, HOLLY_COLOR, INACTIVE_COLOR); + student.setBackgroundColor(BACK_COLOR2); + student.setForeground(TEXT_COLOR); } canvas.repaint(); } @@ -96,6 +102,8 @@ class ShukanParameters extends JFrame { INACTIVE_COLOR = new Color (0.5f, 0.5f, 0.5f); canvas.setBackgroundColor(BACK_COLOR, BACK_COLOR2); canvas.setForeground(TEXT_COLOR, HOLLY_COLOR, INACTIVE_COLOR); + student.setBackgroundColor(BACK_COLOR2); + student.setForeground(TEXT_COLOR); } canvas.repaint(); -- GitLab