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".

NouvelleReponseDialog.java 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. import javax.swing.*;
  2. import java.awt.*;
  3. import java.awt.event.ActionEvent;
  4. import java.awt.event.ActionListener;
  5. public class NouvelleReponseDialog extends JDialog implements ActionListener
  6. {
  7. private JTextField rep1;
  8. private JTextField rep2;
  9. private JButton ok;
  10. private JButton annuler;
  11. private boolean mofidEffectues;
  12. private JComboBox comboCat;
  13. public NouvelleReponseDialog(String title, String defRep1, String defRep2, String defCategorie, String[] tabCategorie,JFrame parent)
  14. {
  15. super(parent, title, true);
  16. mofidEffectues = false;
  17. createInterface(defRep1, defRep2, defCategorie, tabCategorie);
  18. pack();
  19. setLocationRelativeTo(null);
  20. setResizable(false);
  21. }
  22. private void createInterface(String defRep1, String defRep2, String defCategorie, String[] tabCategorie)
  23. {
  24. JPanel champs = new JPanel();
  25. JPanel boutons = new JPanel();
  26. rep1 = new JTextField(defRep1,15);
  27. rep2 = new JTextField(defRep2,15);
  28. rep1.setBackground(Color.WHITE);
  29. rep2.setBackground(Color.WHITE);
  30. ok = new JButton("OK", UIManager.getIcon("OptionPane.errorIcon"));
  31. annuler = new JButton("Annuler");
  32. ok.addActionListener(this);
  33. annuler.addActionListener(this);
  34. GridLayout gridLayout = new GridLayout(2, 2);
  35. champs.setLayout(gridLayout);
  36. champs.add(new JLabel("Réponse 1:"));
  37. champs.add(rep1);
  38. champs.add(new JLabel("Réponse 2:"));
  39. champs.add(rep2);
  40. if(defCategorie != null)
  41. {
  42. comboCat = new JComboBox();
  43. comboCat.setOpaque(true);
  44. for(int i=0; i< tabCategorie.length; i++)
  45. {
  46. comboCat.addItem(tabCategorie[i]);
  47. if(tabCategorie[i].equals(defCategorie))
  48. {
  49. comboCat.setSelectedIndex(i);
  50. }
  51. }
  52. gridLayout.setRows(3);
  53. champs.add(new JLabel("Catégorie:"));
  54. champs.add(comboCat);
  55. }
  56. boutons.add(annuler);
  57. boutons.add(ok);
  58. getContentPane().setLayout(new BorderLayout());
  59. getContentPane().add(champs, BorderLayout.CENTER);
  60. getContentPane().add(boutons, BorderLayout.SOUTH);
  61. }
  62. public boolean afficher()
  63. {
  64. setVisible(true);
  65. return mofidEffectues;
  66. }
  67. public void actionPerformed(ActionEvent e)
  68. {
  69. if(e.getSource() == annuler)
  70. {
  71. mofidEffectues = false;
  72. setVisible(false);
  73. }
  74. else if(e.getSource() == ok) {
  75. if(rep1.getText().isEmpty() || rep2.getText().isEmpty())
  76. {
  77. JOptionPane.showMessageDialog(this, "Les champs ne doivent pas être vide.", "Champs non remplis", JOptionPane.WARNING_MESSAGE);
  78. return;
  79. }
  80. mofidEffectues = true;
  81. setVisible(false);
  82. }
  83. }
  84. public String getRep2() {
  85. return rep2.getText();
  86. }
  87. public String getRep1() {
  88. return rep1.getText();
  89. }
  90. public String getCat() {
  91. return comboCat.getSelectedItem().toString();
  92. }
  93. }