Package ds.ihm.joystick

Examples of ds.ihm.joystick.ConfigurationJoystick


    this.add(lancer);
  }

  public void actionPerformed(ActionEvent event) {
    if(event.getSource().equals(this.lancer)){
      ConfigurationJoystick confJoy = this.ihm.getGestionnaireJoystick().getConfJoystick();
      confJoy.setUtiliserJoystick(this.checkBoxJoystick.isSelected());
      try {
        confJoy.saveConf();
      } catch (IOException e) {
        System.out.println("Impossible de sauvegarder la configuration joystick");
      }
      int indexFichier = this.comboTerrain.getSelectedIndex();
      this.ihm.getControleur().initSimu(fl.getFichiersTerrain().get(indexFichier));
View Full Code Here

TOP

Related Classes of ds.ihm.joystick.ConfigurationJoystick

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.