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

InterfacePrincipale.java 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. package InterfaceGraphique;
  2. import InterfaceGraphique.DialogBoxes.ConnexionBddDialog;
  3. import InterfaceGraphique.DialogBoxes.NouvelleQuestionDialog;
  4. import InterfaceGraphique.DialogBoxes.NouvelleReponseDialog;
  5. import GestionBddDAO.ConnexionBDD;
  6. import Modele.Categorie;
  7. import GestionBddDAO.ConfigBDD;
  8. import Modele.Question;
  9. import Modele.Reponses;
  10. import javax.swing.*;
  11. import javax.swing.border.Border;
  12. import javax.swing.event.ListSelectionEvent;
  13. import javax.swing.event.ListSelectionListener;
  14. import java.awt.*;
  15. import java.awt.event.ActionEvent;
  16. import java.awt.event.ActionListener;
  17. import java.util.Arrays;
  18. import java.util.Vector;
  19. import static java.lang.Thread.sleep;
  20. import static javax.swing.BoxLayout.*;
  21. public class InterfacePrincipale extends JFrame
  22. {
  23. //Panel des catégories
  24. private JPanel panCategories;
  25. private Bouton addC;
  26. private Bouton delC;
  27. private Bouton editC;
  28. private JList listC;
  29. //Panel des réponses
  30. private JPanel panReponses;
  31. private Bouton addR;
  32. private Bouton delR;
  33. private Bouton editR;
  34. private JList listR;
  35. //Panel des questions
  36. private JPanel panQuestions;
  37. private Bouton addQ;
  38. private Bouton delQ;
  39. private Bouton editQ;
  40. private JList listQ;
  41. //image pour les boutons
  42. private ImageIcon plusImg;
  43. private ImageIcon delImg;
  44. private ImageIcon editImg;
  45. private ImageIcon setupImg;
  46. //barre de statut
  47. private JPanel statusBar;
  48. private JLabel statusText;
  49. private Bouton config;
  50. //objet bdd
  51. private ConnexionBDD bdd;
  52. private ConfigBDD configBDD;
  53. public InterfacePrincipale()
  54. {
  55. configBDD = new ConfigBDD();
  56. configBDD.loadConf();
  57. bdd = new ConnexionBDD();
  58. tryToConnect();
  59. setTitle("Administration base de données de l'aplication BurgerQuizz");
  60. setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  61. setLayout(new BorderLayout());
  62. loadImgBouton();
  63. createPanelCategories();
  64. createPanelReponses();
  65. createPanelQuestion();
  66. createStatusBar();
  67. JSplitPane sp2 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,true,panReponses,panQuestions);
  68. JSplitPane sp1 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,true,panCategories,sp2);
  69. sp1.setBorder(BorderFactory.createLineBorder(new Color(238,238,238),5));
  70. sp2.setBorder(BorderFactory.createEmptyBorder());
  71. sp1.setDividerSize(10);
  72. sp2.setDividerSize(10);
  73. JPanel conteneur = new JPanel();
  74. conteneur.setLayout(new BorderLayout());
  75. conteneur.setBorder(BorderFactory.createEmptyBorder(0,5,0,5));
  76. conteneur.add(sp1, BorderLayout.CENTER);
  77. Color bg = new Color(220,220,220);
  78. panQuestions.setBackground(bg);
  79. panReponses.setBackground(bg);
  80. panCategories.setBackground(bg);
  81. getContentPane().add(new JLabel(new ImageIcon("rsc/burgerquizz.png")), BorderLayout.NORTH);
  82. getContentPane().add(conteneur, BorderLayout.CENTER);
  83. getContentPane().add(statusBar, BorderLayout.SOUTH);
  84. pack();
  85. sp1.setDividerLocation(0.30);
  86. sp2.setDividerLocation(0.50);
  87. setLocationRelativeTo(null);
  88. setVisible(true);
  89. }
  90. private void loadImgBouton()
  91. {
  92. plusImg = new ImageIcon("rsc/plus.png");
  93. delImg = new ImageIcon("rsc/del.png");
  94. editImg = new ImageIcon("rsc/edit.png");
  95. setupImg = new ImageIcon("rsc/cle.png");
  96. }
  97. private void createStatusBar()
  98. {
  99. statusBar = new JPanel(new BorderLayout(0,0));
  100. statusText = new JLabel("Application demarrée, connexion à la base de donné effective. ");
  101. Border border = BorderFactory.createMatteBorder(3,0,0,0, new Color(220,220,220));
  102. statusBar.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createEmptyBorder(10,70,5,70),border));
  103. statusText.setHorizontalAlignment(SwingConstants.CENTER);
  104. config = new Bouton("Configuration", setupImg);
  105. config.setPreferredSize(new Dimension(200, 34));
  106. JPanel p = new JPanel();
  107. p.setLayout(new BorderLayout());
  108. p.add(config, BorderLayout.CENTER);
  109. p.setBorder(BorderFactory.createEmptyBorder(5,0,0,0));
  110. statusBar.add(statusText, BorderLayout.CENTER);
  111. statusBar.add(p, BorderLayout.EAST);
  112. config.addActionListener(new ActionListener() {
  113. public void actionPerformed(ActionEvent actionEvent) {
  114. configureBDD(false);
  115. tryToConnect();
  116. listC.setListData(bdd.getListeCategorie().toArray());
  117. listR.setListData(new Vector(0));
  118. listQ.setListData(new Vector(0));
  119. }
  120. });
  121. }
  122. private void createPanelCategories()
  123. {
  124. panCategories = new JPanel();
  125. addC = new Bouton("Ajouter une catégorie", plusImg);
  126. delC = new Bouton("Supprimer la catégorie", delImg);
  127. editC = new Bouton("Modifier la catégorie", editImg);
  128. listC = new JList(bdd.getListeCategorie().toArray());
  129. JScrollPane sp = new JScrollPane(listC,
  130. JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
  131. JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
  132. panCategories.setLayout(new BoxLayout(panCategories,Y_AXIS));
  133. panCategories.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
  134. addC.setAlignmentX(CENTER_ALIGNMENT);
  135. delC.setAlignmentX(CENTER_ALIGNMENT);
  136. editC.setAlignmentX(CENTER_ALIGNMENT);
  137. addC.setMaximumSize(new Dimension(208,34));
  138. delC.setMaximumSize(new Dimension(208,34));
  139. editC.setMaximumSize(new Dimension(208,34));
  140. JLabel labC = new JLabel("Catégories");
  141. labC.setAlignmentX(Component.CENTER_ALIGNMENT);
  142. labC.setBorder(BorderFactory.createEmptyBorder(0,0,10,0));
  143. panCategories.add(labC);
  144. panCategories.add(addC);
  145. panCategories.add(Box.createRigidArea(new Dimension(1,5)));
  146. panCategories.add(delC);
  147. panCategories.add(Box.createRigidArea(new Dimension(1,10)));
  148. panCategories.add(sp);
  149. panCategories.add(Box.createRigidArea(new Dimension(1,10)));
  150. panCategories.add(editC);
  151. PanCategoriesListener pcl = new PanCategoriesListener();
  152. addC.addActionListener(pcl);
  153. delC.addActionListener(pcl);
  154. editC.addActionListener(pcl);
  155. listC.addListSelectionListener(pcl);
  156. }
  157. private void createPanelReponses()
  158. {
  159. panReponses = new JPanel();
  160. addR = new Bouton("Ajouter un jeu de réponses", plusImg);
  161. delR = new Bouton("Supprimer le jeu de réponses", delImg);
  162. editR = new Bouton("Modifier le jeu de réponse", editImg);
  163. listR = new JList();
  164. JScrollPane sp = new JScrollPane(listR,
  165. JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
  166. JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
  167. panReponses.setLayout(new BoxLayout(panReponses,Y_AXIS));
  168. panReponses.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
  169. addR.setAlignmentX(CENTER_ALIGNMENT);
  170. delR.setAlignmentX(CENTER_ALIGNMENT);
  171. editR.setAlignmentX(CENTER_ALIGNMENT);
  172. addR.setMaximumSize(new Dimension(300,34));
  173. delR.setMaximumSize(new Dimension(300,34));
  174. editR.setMaximumSize(new Dimension(300,34));
  175. JLabel labR = new JLabel("Réponses");
  176. labR.setAlignmentX(Component.CENTER_ALIGNMENT);
  177. labR.setBorder(BorderFactory.createEmptyBorder(0,0,10,0));
  178. panReponses.add(labR);
  179. panReponses.add(addR);
  180. panReponses.add(Box.createRigidArea(new Dimension(1,5)));
  181. panReponses.add(delR);
  182. panReponses.add(Box.createRigidArea(new Dimension(1, 10)));
  183. panReponses.add(sp);
  184. panReponses.add(Box.createRigidArea(new Dimension(1, 10)));
  185. panReponses.add(editR);
  186. PanReponsesListener prl = new PanReponsesListener();
  187. addR.addActionListener(prl);
  188. delR.addActionListener(prl);
  189. editR.addActionListener(prl);
  190. listR.addListSelectionListener(prl);
  191. }
  192. private void createPanelQuestion()
  193. {
  194. panQuestions = new JPanel();
  195. addQ = new Bouton("Ajouter une question", plusImg);
  196. delQ = new Bouton("Supprimer la question", delImg);
  197. editQ = new Bouton("Modifier la question", editImg);
  198. listQ = new JList();
  199. JScrollPane sp = new JScrollPane(listQ,
  200. JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
  201. JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
  202. panQuestions.setLayout(new BoxLayout(panQuestions,Y_AXIS));
  203. panQuestions.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
  204. addQ.setAlignmentX(CENTER_ALIGNMENT);
  205. delQ.setAlignmentX(CENTER_ALIGNMENT);
  206. editQ.setAlignmentX(CENTER_ALIGNMENT);
  207. addQ.setMaximumSize(new Dimension(208,34));
  208. delQ.setMaximumSize(new Dimension(208,34));
  209. editQ.setMaximumSize(new Dimension(208,34));
  210. JLabel labQ = new JLabel("Questions");
  211. labQ.setAlignmentX(Component.CENTER_ALIGNMENT);
  212. labQ.setBorder(BorderFactory.createEmptyBorder(0,0,10,0));
  213. panQuestions.add(labQ);
  214. panQuestions.add(addQ);
  215. panQuestions.add(Box.createRigidArea(new Dimension(1,5)));
  216. panQuestions.add(delQ);
  217. panQuestions.add(Box.createRigidArea(new Dimension(1, 10)));
  218. panQuestions.add(sp);
  219. panQuestions.add(Box.createRigidArea(new Dimension(1, 10)));
  220. panQuestions.add(editQ);
  221. PanQuestionsListener pql = new PanQuestionsListener();
  222. addQ.addActionListener(pql);
  223. delQ.addActionListener(pql);
  224. editQ.addActionListener(pql);
  225. }
  226. public void modem56k()
  227. {
  228. int i =0;
  229. while(i != 500)
  230. {
  231. this.setSize(1000, i);
  232. try
  233. {
  234. sleep(100);
  235. }
  236. catch(InterruptedException e)
  237. {}
  238. i++;
  239. }
  240. }
  241. public void nyan()
  242. {
  243. BorderLayout bl = (BorderLayout)getContentPane().getLayout();
  244. JLabel l = (JLabel)bl.getLayoutComponent(BorderLayout.NORTH);
  245. l.setIcon(new ImageIcon("rsc/nyan.gif"));
  246. setLocationRelativeTo(null);
  247. pack();
  248. }
  249. public void configureBDD(boolean showExitButton)
  250. {
  251. ConnexionBddDialog cbddd = new ConnexionBddDialog(configBDD.getNomBdd(), configBDD.getPort(),
  252. configBDD.getIp(), configBDD.getLogin(),
  253. configBDD.getPassword(), null, showExitButton);
  254. if(cbddd.afficher() == true)
  255. {
  256. configBDD.setNomBdd(cbddd.getNomBdd());
  257. configBDD.setIp(cbddd.getIp());
  258. configBDD.setPort(cbddd.getPort());
  259. configBDD.setLogin(cbddd.getLogin());
  260. configBDD.setPassword(cbddd.getPassword());
  261. configBDD.saveConf();
  262. }
  263. }
  264. private void tryToConnect()
  265. {
  266. boolean conOK = false;
  267. do
  268. {
  269. conOK = bdd.connect(configBDD.getNomBdd(), configBDD.getPort(), configBDD.getIp(), configBDD.getLogin(), configBDD.getPassword());
  270. if(conOK == false)
  271. {
  272. JOptionPane.showMessageDialog(this, "Impossible d'établir la connexion à la base de données.", "Erreur conexion base de données", JOptionPane.ERROR_MESSAGE);
  273. configureBDD(true);
  274. }
  275. }while(!conOK);
  276. }
  277. private void reSelectCategorie(String newCatName)
  278. {
  279. Object[] tabObject = bdd.getListeCategorie().toArray();
  280. Categorie[] tabCategorie = Arrays.copyOf(tabObject, tabObject.length, Categorie[].class);
  281. listC.setListData(tabCategorie);
  282. for(int i=0; i<tabCategorie.length; i++)
  283. {
  284. if(tabCategorie[i].getNom().equals(newCatName))
  285. {
  286. listC.setSelectedValue(tabCategorie[i], true);
  287. break;
  288. }
  289. }
  290. }
  291. private void reSelectReponses(String rep1, String rep2)
  292. {
  293. Object[] tabObject = bdd.getListeReponses(listC.getSelectedValue().toString()).toArray();
  294. Reponses[] tabReponses = Arrays.copyOf(tabObject, tabObject.length, Reponses[].class);
  295. listR.setListData(tabReponses);
  296. for(int i=0; i<tabReponses.length; i++)
  297. {
  298. if(tabReponses[i].getReponse1().equals(rep1) && tabReponses[i].getReponse2().equals(rep2))
  299. {
  300. listR.setSelectedValue(tabReponses[i], true);
  301. break;
  302. }
  303. }
  304. }
  305. private void reSelectQuestion(String intitule)
  306. {
  307. Reponses r = (Reponses) listR.getSelectedValue();
  308. Object[] tabObject = bdd.getListeQuestions(r.getReponse1(), r.getReponse2()).toArray();
  309. Question[] tabQuestions = Arrays.copyOf(tabObject, tabObject.length, Question[].class);
  310. listQ.setListData(tabQuestions);
  311. for(int i=0; i<tabQuestions.length; i++)
  312. {
  313. if(tabQuestions[i].getIntitule().equals(intitule))
  314. {
  315. listQ.setSelectedValue(tabQuestions[i], true);
  316. break;
  317. }
  318. }
  319. }
  320. private String[] getCategorieList()
  321. {
  322. ListModel model = listC.getModel();
  323. String[] tabCategories = new String[model.getSize()];
  324. for(int i=0; i < model.getSize(); i++)
  325. {
  326. Categorie c = (Categorie)model.getElementAt(i);
  327. tabCategories[i] = c.getNom();
  328. }
  329. return tabCategories;
  330. }
  331. private class PanCategoriesListener implements ActionListener, ListSelectionListener
  332. {
  333. public void actionPerformed(ActionEvent e)
  334. {
  335. if(e.getSource() == addC)
  336. {
  337. String catName = JOptionPane.showInputDialog(null,
  338. "Nom de la nouvelle categorie:",
  339. "Nouvelle catégorie",
  340. JOptionPane.QUESTION_MESSAGE);
  341. if(catName == null)
  342. {
  343. return ;
  344. }
  345. else if(catName.isEmpty())
  346. {
  347. statusText.setText("Une categorie ne peut porter un nom vide.");
  348. return ;
  349. }
  350. bdd.createCategorie(catName);
  351. reSelectCategorie(catName);
  352. listQ.setListData(new Vector(0));
  353. }
  354. else if(e.getSource() == delC)
  355. {
  356. Categorie c = (Categorie) listC.getSelectedValue();
  357. if(c == null)
  358. {
  359. statusText.setText("Veuiller d'abord selectionner une categorie.");
  360. return;
  361. }
  362. String categorieName = c.getNom();
  363. if(JOptionPane.showConfirmDialog(null, "Voulez vous vraiment supprimer la catégorie " + categorieName + " ?\nCela supprimera aussi toute les reponses et questions associé à cette catégorie.", "Supression de catégorie", JOptionPane.OK_CANCEL_OPTION) == JOptionPane.OK_OPTION)
  364. {
  365. bdd.deleteCategorie(categorieName);
  366. listC.setListData(bdd.getListeCategorie().toArray());
  367. listR.setListData(new Vector(0));
  368. listQ.setListData(new Vector(0));
  369. }
  370. }
  371. else if(e.getSource() == editC)
  372. {
  373. Categorie c = (Categorie) listC.getSelectedValue();
  374. if(c == null)
  375. {
  376. statusText.setText("Veuiller d'abord selectionner une categorie.");
  377. return;
  378. }
  379. String oldCatName = c.getNom();
  380. String newCatName = JOptionPane.showInputDialog(null,
  381. "Nouveau nom pour la categorie " + oldCatName + ":",
  382. "Renomer catégorie",
  383. JOptionPane.QUESTION_MESSAGE);
  384. if(newCatName == null)
  385. {
  386. return ;
  387. }
  388. else if(newCatName.isEmpty())
  389. {
  390. statusText.setText("Une categorie ne peut porter un nom vide.");
  391. return ;
  392. }
  393. bdd.renameCategorie(oldCatName, newCatName);
  394. reSelectCategorie(newCatName);
  395. }
  396. }
  397. public void valueChanged(ListSelectionEvent e)
  398. {
  399. if(!listC.isSelectionEmpty())
  400. {
  401. listR.setListData(bdd.getListeReponses(listC.getSelectedValue().toString()).toArray());
  402. listQ.setListData(new Vector(0));
  403. }
  404. }
  405. }
  406. private class PanReponsesListener implements ActionListener, ListSelectionListener
  407. {
  408. public void actionPerformed(ActionEvent e)
  409. {
  410. if(listC.isSelectionEmpty())
  411. {
  412. statusText.setText("Veuillez selectioner une catégorie.");
  413. return;
  414. }
  415. if(e.getSource() == addR)
  416. {
  417. NouvelleReponseDialog nrd = new NouvelleReponseDialog("Nouveau jeu de réponses", "", "", null, null, null);
  418. if(nrd.afficher() == true)
  419. {
  420. String catName = listC.getSelectedValue().toString();
  421. bdd.createReponses(catName, nrd.getRep1(), nrd.getRep2());
  422. reSelectReponses(nrd.getRep1(), nrd.getRep2());
  423. }
  424. }
  425. else if(e.getSource() == delR)
  426. {
  427. Reponses r = (Reponses) listR.getSelectedValue();
  428. if(r == null)
  429. {
  430. statusText.setText("Veuiller d'abord selectionner un jeu de réponses.");
  431. return;
  432. }
  433. String reponse1 = r.getReponse1();
  434. String reponse2 = r.getReponse2();
  435. if(JOptionPane.showConfirmDialog(null,"Voulez vous vraiment supprimer le jeu de réponses " + reponse1 + ", " + reponse2 + " ?\nCela supprimera aussi toutes les questions associé à cette catégorie.", "Supression de réponses", JOptionPane.OK_CANCEL_OPTION) == JOptionPane.OK_OPTION)
  436. {
  437. bdd.deleteReponses(reponse1, reponse2);
  438. listR.setListData(bdd.getListeReponses(listC.getSelectedValue().toString()).toArray());
  439. listQ.setListData(new Vector(0));
  440. }
  441. }
  442. else if(e.getSource() == editR)
  443. {
  444. Reponses r = (Reponses) listR.getSelectedValue();
  445. if(r == null)
  446. {
  447. statusText.setText("Veuiller d'abord selectionner un jeu de réponses.");
  448. return;
  449. }
  450. String reponse1 = r.getReponse1();
  451. String reponse2 = r.getReponse2();
  452. String catName = listC.getSelectedValue().toString();
  453. NouvelleReponseDialog nrd = new NouvelleReponseDialog("Modification jeu de réponses", reponse1, reponse2, catName, getCategorieList(), null);
  454. if(nrd.afficher() == true)
  455. {
  456. bdd.modifyReponses(nrd.getCat(), reponse1, reponse2, nrd.getRep1(), nrd.getRep2());
  457. reSelectCategorie(nrd.getCat());
  458. reSelectReponses(nrd.getRep1(), nrd.getRep2());
  459. }
  460. }
  461. }
  462. public void valueChanged(ListSelectionEvent listSelectionEvent)
  463. {
  464. if(!listR.isSelectionEmpty())
  465. {
  466. Reponses r = (Reponses) listR.getSelectedValue();
  467. listQ.setListData(bdd.getListeQuestions(r.getReponse1(), r.getReponse2()).toArray());
  468. }
  469. }
  470. }
  471. private class PanQuestionsListener implements ActionListener
  472. {
  473. public void actionPerformed(ActionEvent e)
  474. {
  475. if(listR.isSelectionEmpty())
  476. {
  477. statusText.setText("Veuillez selectioner une sous-catégorie.");
  478. return;
  479. }
  480. if(e.getSource() == addQ)
  481. {
  482. Reponses r = (Reponses) listR.getSelectedValue();
  483. NouvelleQuestionDialog nqd = new NouvelleQuestionDialog("Nouvelle question", "",
  484. 0, r.getReponse1(),r.getReponse2(), null);
  485. if(nqd.afficher() == true)
  486. {
  487. bdd.createQuestion(nqd.getIntitule(), r.getReponse1(), r.getReponse2(), nqd.getReponse());
  488. reSelectQuestion(nqd.getIntitule());
  489. }
  490. }
  491. else if(e.getSource() == delQ)
  492. {
  493. Question q = (Question) listQ.getSelectedValue();
  494. if(q == null)
  495. {
  496. statusText.setText("Veuiller d'abord selectionner une question.");
  497. return;
  498. }
  499. if(JOptionPane.showConfirmDialog(null, "Voulez vous vraiment supprimer la question " + q.getIntitule() + " ?", "Supression de question", JOptionPane.OK_CANCEL_OPTION) == JOptionPane.OK_OPTION)
  500. {
  501. bdd.deleteQuestion(q.getIntitule(), q.getReponse1(), q.getReponse2());
  502. listQ.setListData(bdd.getListeQuestions(q.getReponse1(), q.getReponse2()).toArray());
  503. }
  504. }
  505. else if(e.getSource() == editQ)
  506. {
  507. Question q = (Question) listQ.getSelectedValue();
  508. if(q == null)
  509. {
  510. statusText.setText("Veuiller d'abord selectionner une question.");
  511. return;
  512. }
  513. NouvelleQuestionDialog nqd = new NouvelleQuestionDialog("Modification question", q.getIntitule(),
  514. q.getReponse(), q.getReponse1(), q.getReponse2(), null);
  515. if(nqd.afficher() == true)
  516. {
  517. bdd.modifyQuestion(q.getIntitule(), nqd.getIntitule(),
  518. q.getReponse1(), q.getReponse2(), nqd.getReponse());
  519. reSelectQuestion(nqd.getIntitule());
  520. }
  521. }
  522. }
  523. }
  524. }