JAL-1700 made PDB service error mechanism more user friendly
[jalview.git] / src / jalview / jbgui / GStructureChooser.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3  * Copyright (C) 2014 The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21
22 package jalview.jbgui;
23
24 import jalview.datamodel.SequenceI;
25 import jalview.gui.AlignmentPanel;
26 import jalview.gui.Desktop;
27 import jalview.jbgui.PDBDocFieldPreferences.PreferenceSource;
28 import jalview.util.MessageManager;
29
30 import java.awt.BorderLayout;
31 import java.awt.CardLayout;
32 import java.awt.Dimension;
33 import java.awt.FlowLayout;
34 import java.awt.event.ActionEvent;
35 import java.awt.event.ItemEvent;
36 import java.awt.event.ItemListener;
37 import java.awt.event.MouseAdapter;
38 import java.awt.event.MouseEvent;
39
40 import javax.swing.ImageIcon;
41 import javax.swing.JButton;
42 import javax.swing.JCheckBox;
43 import javax.swing.JComboBox;
44 import javax.swing.JFrame;
45 import javax.swing.JInternalFrame;
46 import javax.swing.JLabel;
47 import javax.swing.JPanel;
48 import javax.swing.JScrollPane;
49 import javax.swing.JTabbedPane;
50 import javax.swing.JTable;
51 import javax.swing.JTextField;
52 import javax.swing.event.ChangeEvent;
53 import javax.swing.event.ChangeListener;
54 import javax.swing.event.DocumentEvent;
55 import javax.swing.event.DocumentListener;
56
57 @SuppressWarnings("serial")
58 /**
59  * GUI layout for structure chooser 
60  * @author tcnofoegbu
61  *
62  */
63 public abstract class GStructureChooser extends JPanel implements
64         ItemListener
65 {
66   protected String frameTitle = MessageManager
67           .getString("label.structure_chooser");
68
69   protected JInternalFrame mainFrame = new JInternalFrame(frameTitle);
70
71   protected JComboBox<FilterOption> cmb_filterOption = new JComboBox<FilterOption>();
72
73   protected AlignmentPanel ap;
74   
75   protected StringBuilder errorWarning = new StringBuilder();
76
77   protected JLabel lbl_result = new JLabel(
78           MessageManager.getString("label.select"));
79
80   protected JButton btn_view = new JButton();
81
82   protected JButton btn_cancel = new JButton();
83
84   protected JButton btn_pdbFromFile = new JButton();
85
86   protected JTextField txt_search = new JTextField(14);
87
88   private JPanel pnl_actions = new JPanel();
89
90   private JPanel pnl_main = new JPanel();
91
92   private JPanel pnl_idInput = new JPanel(new FlowLayout());
93
94   private JPanel pnl_fileChooser = new JPanel(new FlowLayout());
95
96   private JPanel pnl_idInputBL = new JPanel(new BorderLayout());
97
98   private JPanel pnl_fileChooserBL = new JPanel(new BorderLayout());
99
100   private JPanel pnl_locPDB = new JPanel(new BorderLayout());
101
102   protected JPanel pnl_switchableViews = new JPanel(new CardLayout());
103
104   protected CardLayout layout_switchableViews = (CardLayout) (pnl_switchableViews
105           .getLayout());
106
107   private BorderLayout mainLayout = new BorderLayout();
108
109   protected JCheckBox chk_rememberSettings = new JCheckBox(
110           MessageManager.getString("label.dont_ask_me_again"));
111
112   protected JCheckBox chk_invertFilter = new JCheckBox(
113           MessageManager.getString("label.invert"));
114
115   protected ImageIcon loadingImage = new ImageIcon(getClass().getResource(
116           "/images/loading.gif"));
117
118   protected ImageIcon goodImage = new ImageIcon(getClass().getResource(
119           "/images/good.png"));
120
121   protected ImageIcon errorImage = new ImageIcon(getClass().getResource(
122           "/images/error.png"));
123
124   protected ImageIcon warningImage = new ImageIcon(getClass().getResource(
125           "/images/warning.gif"));
126
127   protected JLabel lbl_warning = new JLabel(warningImage);
128
129   protected JLabel lbl_loading = new JLabel(loadingImage);
130
131   protected JLabel lbl_pdbManualFetchStatus = new JLabel(errorImage);
132
133   protected JLabel lbl_fromFileStatus = new JLabel(errorImage);
134
135
136   protected AssciateSeqPanel idInputAssSeqPanel = new AssciateSeqPanel();
137
138   protected AssciateSeqPanel fileChooserAssSeqPanel = new AssciateSeqPanel();
139
140   protected static final String VIEWS_FILTER = "VIEWS_FILTER";
141
142   protected static final String VIEWS_FROM_FILE = "VIEWS_FROM_FILE";
143
144   protected static final String VIEWS_ENTER_ID = "VIEWS_ENTER_ID";
145
146   protected static final String VIEWS_LOCAL_PDB = "VIEWS_LOCAL_PDB";
147
148   protected JTable tbl_summary = new JTable();
149
150   protected JScrollPane scrl_foundStructures = new JScrollPane(
151           tbl_summary);
152
153   protected JTable tbl_local_pdb = new JTable();
154
155   protected JScrollPane scrl_localPDB = new JScrollPane(tbl_local_pdb);
156
157   private JTabbedPane pnl_filter = new JTabbedPane();
158
159   private PDBDocFieldPreferences pdbDocFieldPrefs = new PDBDocFieldPreferences(
160           PreferenceSource.STRUCTURE_CHOOSER);
161
162   public GStructureChooser()
163   {
164     try
165     {
166       jbInit();
167       mainFrame.setVisible(false);
168       mainFrame.invalidate();
169       mainFrame.pack();
170     } catch (Exception e)
171     {
172       e.printStackTrace();
173     }
174   }
175
176   /**
177    * Initializes the GUI default properties
178    * 
179    * @throws Exception
180    */
181   private void jbInit() throws Exception
182   {
183     tbl_summary.setAutoCreateRowSorter(true);
184     tbl_local_pdb.setAutoCreateRowSorter(true);
185     tbl_local_pdb.addMouseListener(new MouseAdapter()
186     {
187       public void mouseClicked(MouseEvent e)
188       {
189         updateCurrentView();
190       }
191     });
192
193     btn_view.setFont(new java.awt.Font("Verdana", 0, 12));
194     btn_view.setText(MessageManager.getString("action.view"));
195     btn_view.addActionListener(new java.awt.event.ActionListener()
196     {
197       public void actionPerformed(ActionEvent e)
198       {
199         ok_ActionPerformed();
200       }
201     });
202     btn_cancel.setFont(new java.awt.Font("Verdana", 0, 12));
203     btn_cancel.setText(MessageManager.getString("action.cancel"));
204     btn_cancel.addActionListener(new java.awt.event.ActionListener()
205     {
206       public void actionPerformed(ActionEvent e)
207       {
208         mainFrame.dispose();
209       }
210     });
211
212     btn_pdbFromFile.setFont(new java.awt.Font("Verdana", 0, 12));
213     String btn_title = MessageManager.getString("label.select_pdb_file");
214     btn_pdbFromFile.setText(btn_title + "              ");
215     btn_pdbFromFile.addActionListener(new java.awt.event.ActionListener()
216     {
217       public void actionPerformed(ActionEvent e)
218       {
219         pdbFromFile_actionPerformed();
220       }
221     });
222
223     scrl_foundStructures.setPreferredSize(new Dimension(500, 300));
224     scrl_foundStructures
225             .setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
226
227     scrl_localPDB.setPreferredSize(new Dimension(500, 300));
228     scrl_localPDB
229             .setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
230
231     cmb_filterOption.setFont(new java.awt.Font("Verdana", 0, 12));
232     chk_invertFilter.setFont(new java.awt.Font("Verdana", 0, 12));
233     chk_rememberSettings.setFont(new java.awt.Font("Verdana", 0, 12));
234
235
236     txt_search.setToolTipText(MessageManager
237             .getString("label.enter_pdb_id"));
238     cmb_filterOption.setToolTipText(MessageManager
239             .getString("info.select_filter_option"));
240     txt_search.getDocument().addDocumentListener(new DocumentListener()
241     {
242       @Override
243       public void insertUpdate(DocumentEvent e)
244       {
245         txt_search_ActionPerformed();
246       }
247
248       @Override
249       public void removeUpdate(DocumentEvent e)
250       {
251         txt_search_ActionPerformed();
252       }
253
254       @Override
255       public void changedUpdate(DocumentEvent e)
256       {
257         txt_search_ActionPerformed();
258       }
259     });
260
261     cmb_filterOption.addItemListener(this);
262     chk_invertFilter.addItemListener(this);
263
264     pnl_actions.add(chk_rememberSettings);
265     pnl_actions.add(btn_view);
266     pnl_actions.add(btn_cancel);
267
268     // pnl_filter.add(lbl_result);
269     pnl_main.add(cmb_filterOption);
270     pnl_main.add(lbl_loading);
271     pnl_main.add(chk_invertFilter);
272     lbl_loading.setVisible(false);
273
274
275     pnl_fileChooser.add(btn_pdbFromFile);
276     pnl_fileChooser.add(lbl_fromFileStatus);
277     pnl_fileChooserBL.add(fileChooserAssSeqPanel, BorderLayout.NORTH);
278     pnl_fileChooserBL.add(pnl_fileChooser, BorderLayout.CENTER);
279
280     pnl_idInput.add(txt_search);
281     pnl_idInput.add(lbl_pdbManualFetchStatus);
282     pnl_idInputBL.add(idInputAssSeqPanel, BorderLayout.NORTH);
283     pnl_idInputBL.add(pnl_idInput, BorderLayout.CENTER);
284     
285     final String foundStructureSummary = MessageManager
286             .getString("label.found_structures_summary");
287
288     ChangeListener changeListener = new ChangeListener()
289     {
290       public void stateChanged(ChangeEvent changeEvent)
291       {
292         JTabbedPane sourceTabbedPane = (JTabbedPane) changeEvent
293                 .getSource();
294         int index = sourceTabbedPane.getSelectedIndex();
295         if (sourceTabbedPane.getTitleAt(index)
296                 .equals(foundStructureSummary))
297         {
298           tabRefresh();
299         }
300       }
301     };
302     pnl_filter.addChangeListener(changeListener);
303     pnl_filter.setPreferredSize(new Dimension(500, 300));
304     pnl_filter.add(foundStructureSummary, scrl_foundStructures);
305     pnl_filter.add(
306             MessageManager.getString("label.configure_displayed_columns"),
307             pdbDocFieldPrefs);
308     
309     pnl_locPDB.add(scrl_localPDB);
310
311     pnl_switchableViews.add(pnl_fileChooserBL, VIEWS_FROM_FILE);
312     pnl_switchableViews.add(pnl_idInputBL, VIEWS_ENTER_ID);
313     pnl_switchableViews.add(pnl_filter, VIEWS_FILTER);
314     pnl_switchableViews.add(pnl_locPDB, VIEWS_LOCAL_PDB);
315     
316     this.setLayout(mainLayout);
317     this.add(pnl_main, java.awt.BorderLayout.NORTH);
318     this.add(pnl_switchableViews, java.awt.BorderLayout.CENTER);
319     this.add(pnl_actions, java.awt.BorderLayout.SOUTH);
320
321     mainFrame.setVisible(true);
322     mainFrame.setContentPane(this);
323     mainFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
324     Desktop.addInternalFrame(mainFrame, frameTitle, 800, 400);
325   }
326
327   
328   @Override
329   /**
330    * Event listener for the 'filter' combo-box and 'invert' check-box
331    */
332   public void itemStateChanged(ItemEvent e)
333   {
334     stateChanged(e);
335   }
336
337   /**
338    * This inner class provides the data model for the structure filter combo-box
339    * 
340    * @author tcnofoegbu
341    *
342    */
343   public class FilterOption
344   {
345     private String name;
346
347     private String value;
348
349     private String view;
350
351     public FilterOption(String name, String value, String view)
352     {
353       this.name = name;
354       this.value = value;
355       this.view = view;
356     }
357
358     public String getName()
359     {
360       return name;
361     }
362
363     public void setName(String name)
364     {
365       this.name = name;
366     }
367
368     public String getValue()
369     {
370       return value;
371     }
372
373     public void setValue(String value)
374     {
375       this.value = value;
376     }
377
378     public String getView()
379     {
380       return view;
381     }
382
383     public void setView(String view)
384     {
385       this.view = view;
386     }
387
388     public String toString()
389     {
390       return this.name;
391     }
392   }
393
394   /**
395    * This inner class provides the provides the data model for associate
396    * sequence combo-box - cmb_assSeq
397    * 
398    * @author tcnofoegbu
399    *
400    */
401   public class AssociateSeqOptions
402   {
403     private SequenceI sequence;
404     private String name;
405
406     public AssociateSeqOptions(SequenceI seq)
407     {
408       this.sequence = seq;
409       this.name = (seq.getName().length() >= 23) ? seq.getName().substring(
410               0, 23) : seq.getName();
411     }
412
413     public AssociateSeqOptions(String name, SequenceI seq)
414     {
415       this.name = name;
416       this.sequence = seq;
417     }
418
419     public String toString()
420     {
421       return name;
422     }
423
424     public String getName()
425     {
426       return name;
427     }
428
429     public void setName(String name)
430     {
431       this.name = name;
432     }
433
434     public SequenceI getSequence()
435     {
436       return sequence;
437     }
438
439     public void setSequence(SequenceI sequence)
440     {
441       this.sequence = sequence;
442     }
443
444   }
445
446   /**
447    * This inner class holds the Layout and configuration of the panel which
448    * handles association of manually fetched structures to a unique sequence
449    * when more than one sequence selection is made
450    * 
451    * @author tcnofoegbu
452    *
453    */
454   public class AssciateSeqPanel extends JPanel implements ItemListener
455   {
456     private JComboBox<AssociateSeqOptions> cmb_assSeq = new JComboBox<AssociateSeqOptions>();
457
458     private JLabel lbl_associateSeq = new JLabel();
459
460     public AssciateSeqPanel()
461     {
462       this.setLayout(new FlowLayout());
463       this.add(cmb_assSeq);
464       this.add(lbl_associateSeq);
465       cmb_assSeq.setToolTipText(MessageManager
466               .getString("info.associate_wit_sequence"));
467       cmb_assSeq.addItemListener(this);
468     }
469
470     public void loadCmbAssSeq()
471     {
472       populateCmbAssociateSeqOptions(cmb_assSeq, lbl_associateSeq);
473     }
474
475     public JComboBox<AssociateSeqOptions> getCmb_assSeq()
476     {
477       return cmb_assSeq;
478     }
479
480     public void setCmb_assSeq(JComboBox<AssociateSeqOptions> cmb_assSeq)
481     {
482       this.cmb_assSeq = cmb_assSeq;
483     }
484
485     @Override
486     public void itemStateChanged(ItemEvent e)
487     {
488       if (e.getStateChange() == ItemEvent.SELECTED)
489       {
490         cmbAssSeqStateChanged();
491       }
492     }
493   }
494
495   public JComboBox<FilterOption> getCmbFilterOption()
496   {
497     return cmb_filterOption;
498   }
499
500   protected abstract void stateChanged(ItemEvent e);
501
502   protected abstract void updateCurrentView();
503
504   protected abstract void populateFilterComboBox();
505
506   protected abstract void ok_ActionPerformed();
507
508   protected abstract void pdbFromFile_actionPerformed();
509
510   protected abstract void txt_search_ActionPerformed();
511
512   public abstract void populateCmbAssociateSeqOptions(
513           JComboBox<AssociateSeqOptions> cmb_assSeq, JLabel lbl_associateSeq);
514
515   public abstract void cmbAssSeqStateChanged();
516
517   public abstract void tabRefresh();
518 }