import java.awt.*; import javax.swing.*; import java.awt.event.*; public class Volume extends JPanel implements MouseWheelListener{ int pos=0; public Volume(){ super(); } protected void paintComponent(Graphics pinceau) { // obligatoire : on cree un nouveau pinceau pour pouvoir le modifier plus tard Graphics pinceau2 = pinceau.create(); if (this.isOpaque()) { // obligatoire : on repeint toute la surface avec la couleur de fond pinceau2.setColor(Color.DARK_GRAY); pinceau2.fillRect(0, 0, this.getWidth(), this.getHeight()); } for(int i=0; i0){ if(pos==0){ } else{ pos--; this.repaint(); } } if (mv<0){ if(pos==10){ } else{ pos++; this.repaint(); } } } }