Créé dans le cadre du projet de fin d'année de la promo 2018 de CIR2 de l'ISEN Brest/Rennes, le Burger Quizz est une adaptation numérique du jeu télévisé éponyme, plus précisément d'une épreuve spécifique de ce jeu : le "Sel ou Poivre".

ConnexionBddDialog.java 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package InterfaceGraphique.DialogBoxes;
  2. import javax.swing.*;
  3. import java.awt.*;
  4. import java.awt.event.ActionEvent;
  5. import java.awt.event.ActionListener;
  6. import java.text.NumberFormat;
  7. public class ConnexionBddDialog extends JDialog implements ActionListener
  8. {
  9. private JTextField nomBdd;
  10. private JFormattedTextField port;
  11. private JTextField ip;
  12. private JTextField login;
  13. private JPasswordField password;
  14. private JButton ok;
  15. private JButton annuler;
  16. private JButton defParams;
  17. private JButton quitter;
  18. private boolean modifEffectuees;
  19. public ConnexionBddDialog(String nomBdd, int port, String ip, String login, String password, JFrame parent, boolean showExitButton)
  20. {
  21. super(parent, "Paramètres de connexion à la base de données", true);
  22. modifEffectuees = false;
  23. createInterface(nomBdd, port, ip, login, password, showExitButton);
  24. pack();
  25. setLocationRelativeTo(null);
  26. setResizable(false);
  27. }
  28. private void createInterface(String defNomBdd, int defPort, String defIP, String defLogin, String defPassword, boolean showExitButton)
  29. {
  30. nomBdd = new JTextField(defNomBdd, 30);
  31. port = new JFormattedTextField(NumberFormat.getInstance());
  32. port.setValue(defPort);
  33. ip = new JTextField(defIP, 30);
  34. login = new JTextField(defLogin, 30);
  35. password = new JPasswordField(defPassword, 30);
  36. nomBdd.setBackground(Color.WHITE);
  37. port.setBackground(Color.WHITE);
  38. ip.setBackground(Color.WHITE);
  39. login.setBackground(Color.WHITE);
  40. password.setBackground(Color.WHITE);
  41. ok = new JButton("OK");
  42. annuler = new JButton("Annuler");
  43. defParams = new JButton("Paramètres de connexion par défaut");
  44. quitter = new JButton("Quitter l'aplication");
  45. ok.addActionListener(this);
  46. annuler.addActionListener(this);
  47. defParams.addActionListener(this);
  48. quitter.addActionListener(this);
  49. JPanel fieldPanel = new JPanel();
  50. JPanel boutons = new JPanel();
  51. fieldPanel.setLayout(new GridLayout(5, 2));
  52. fieldPanel.add(new JLabel("Nom de la base de données:"));
  53. fieldPanel.add(nomBdd);
  54. fieldPanel.add(new JLabel("Numéro de port:"));
  55. fieldPanel.add(port);
  56. fieldPanel.add(new JLabel("Adresse IP du serveur:"));
  57. fieldPanel.add(ip);
  58. fieldPanel.add(new JLabel("Login utilisateur:"));
  59. fieldPanel.add(login);
  60. fieldPanel.add(new JLabel("Mot de passe utilisateur:"));
  61. fieldPanel.add(password);
  62. if(!showExitButton)
  63. {boutons.add(annuler);}
  64. boutons.add(defParams);
  65. boutons.add(ok);
  66. if(showExitButton)
  67. {boutons.add(quitter);}
  68. getContentPane().add(fieldPanel, BorderLayout.CENTER);
  69. getContentPane().add(boutons, BorderLayout.SOUTH);
  70. }
  71. public boolean afficher()
  72. {
  73. setVisible(true);
  74. return modifEffectuees;
  75. }
  76. public void actionPerformed(ActionEvent e)
  77. {
  78. if(e.getSource() == defParams)
  79. {
  80. nomBdd.setText("burgerquizz");
  81. port.setValue(3306);
  82. ip.setText("localhost");
  83. login.setText("alain");
  84. password.setText("chabat");
  85. }
  86. else if(e.getSource() == annuler)
  87. {
  88. modifEffectuees = false;
  89. setVisible(false);
  90. }
  91. else if(e.getSource() == ok)
  92. {
  93. if(getNomBdd().isEmpty() || getIp().isEmpty() || getLogin().isEmpty())
  94. {
  95. JOptionPane.showMessageDialog(this, "Les champs ne doivent pas être vide.", "Champs non remplis", JOptionPane.WARNING_MESSAGE);
  96. return;
  97. }
  98. modifEffectuees = true;
  99. setVisible(false);
  100. }
  101. else if(e.getSource() == quitter)
  102. {
  103. System.exit(0);
  104. }
  105. }
  106. public String getNomBdd() {
  107. return nomBdd.getText();
  108. }
  109. public int getPort() {
  110. return (int) port.getValue();
  111. }
  112. public String getIp() {
  113. return ip.getText();
  114. }
  115. public String getLogin() {
  116. return login.getText();
  117. }
  118. public String getPassword() {
  119. return String.valueOf(password.getPassword());
  120. }
  121. }