JAL-3534 patch for simple case (Protein or Nucleotide, but not linked): transfer...
[jalview.git] / src / jalview / gui / Desktop.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ 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 package jalview.gui;
22
23 import jalview.api.AlignViewportI;
24 import jalview.api.AlignmentViewPanel;
25 import jalview.bin.Cache;
26 import jalview.bin.Jalview;
27 import jalview.io.BackupFiles;
28 import jalview.io.DataSourceType;
29 import jalview.io.FileFormat;
30 import jalview.io.FileFormatException;
31 import jalview.io.FileFormatI;
32 import jalview.io.FileFormats;
33 import jalview.io.FileLoader;
34 import jalview.io.FormatAdapter;
35 import jalview.io.IdentifyFile;
36 import jalview.io.JalviewFileChooser;
37 import jalview.io.JalviewFileView;
38 import jalview.jbgui.GSplitFrame;
39 import jalview.jbgui.GStructureViewer;
40 import jalview.project.Jalview2XML;
41 import jalview.structure.StructureSelectionManager;
42 import jalview.urls.IdOrgSettings;
43 import jalview.util.ImageMaker;
44 import jalview.util.MessageManager;
45 import jalview.util.Platform;
46 import jalview.util.UrlConstants;
47 import jalview.viewmodel.AlignmentViewport;
48 import jalview.ws.params.ParamManager;
49 import jalview.ws.utils.UrlDownloadClient;
50
51 import java.awt.BorderLayout;
52 import java.awt.Color;
53 import java.awt.Dimension;
54 import java.awt.FontMetrics;
55 import java.awt.Graphics;
56 import java.awt.GridLayout;
57 import java.awt.Point;
58 import java.awt.Rectangle;
59 import java.awt.Toolkit;
60 import java.awt.Window;
61 import java.awt.datatransfer.Clipboard;
62 import java.awt.datatransfer.ClipboardOwner;
63 import java.awt.datatransfer.DataFlavor;
64 import java.awt.datatransfer.Transferable;
65 import java.awt.dnd.DnDConstants;
66 import java.awt.dnd.DropTargetDragEvent;
67 import java.awt.dnd.DropTargetDropEvent;
68 import java.awt.dnd.DropTargetEvent;
69 import java.awt.dnd.DropTargetListener;
70 import java.awt.event.ActionEvent;
71 import java.awt.event.ActionListener;
72 import java.awt.event.InputEvent;
73 import java.awt.event.KeyEvent;
74 import java.awt.event.MouseAdapter;
75 import java.awt.event.MouseEvent;
76 import java.awt.event.WindowAdapter;
77 import java.awt.event.WindowEvent;
78 import java.beans.PropertyChangeEvent;
79 import java.beans.PropertyChangeListener;
80 import java.io.File;
81 import java.io.FileWriter;
82 import java.io.IOException;
83 import java.net.URL;
84 import java.util.ArrayList;
85 import java.util.HashMap;
86 import java.util.Hashtable;
87 import java.util.List;
88 import java.util.ListIterator;
89 import java.util.StringTokenizer;
90 import java.util.Vector;
91 import java.util.concurrent.ExecutorService;
92 import java.util.concurrent.Executors;
93 import java.util.concurrent.Semaphore;
94
95 import javax.swing.AbstractAction;
96 import javax.swing.Action;
97 import javax.swing.ActionMap;
98 import javax.swing.Box;
99 import javax.swing.BoxLayout;
100 import javax.swing.DefaultDesktopManager;
101 import javax.swing.DesktopManager;
102 import javax.swing.InputMap;
103 import javax.swing.JButton;
104 import javax.swing.JCheckBox;
105 import javax.swing.JComboBox;
106 import javax.swing.JComponent;
107 import javax.swing.JDesktopPane;
108 import javax.swing.JInternalFrame;
109 import javax.swing.JLabel;
110 import javax.swing.JMenuItem;
111 import javax.swing.JPanel;
112 import javax.swing.JPopupMenu;
113 import javax.swing.JProgressBar;
114 import javax.swing.KeyStroke;
115 import javax.swing.SwingUtilities;
116 import javax.swing.event.HyperlinkEvent;
117 import javax.swing.event.HyperlinkEvent.EventType;
118 import javax.swing.event.InternalFrameAdapter;
119 import javax.swing.event.InternalFrameEvent;
120
121 import org.stackoverflowusers.file.WindowsShortcut;
122
123 /**
124  * Jalview Desktop
125  * 
126  * 
127  * @author $author$
128  * @version $Revision: 1.155 $
129  */
130 public class Desktop extends jalview.jbgui.GDesktop
131         implements DropTargetListener, ClipboardOwner, IProgressIndicator,
132         jalview.api.StructureSelectionManagerProvider
133 {
134   private static int DEFAULT_MIN_WIDTH = 300;
135
136   private static int DEFAULT_MIN_HEIGHT = 250;
137
138   private static int ALIGN_FRAME_DEFAULT_MIN_WIDTH = 600;
139
140   private static int ALIGN_FRAME_DEFAULT_MIN_HEIGHT = 70;
141
142   private static final String EXPERIMENTAL_FEATURES = "EXPERIMENTAL_FEATURES";
143
144   protected static final String CONFIRM_KEYBOARD_QUIT = "CONFIRM_KEYBOARD_QUIT";
145
146   public static HashMap<String, FileWriter> savingFiles = new HashMap<>();
147
148   private JalviewChangeSupport changeSupport = new JalviewChangeSupport();
149
150   /**
151    * news reader - null if it was never started.
152    */
153   private BlogReader jvnews = null;
154
155   private File projectFile;
156
157   /**
158    * @param listener
159    * @see jalview.gui.JalviewChangeSupport#addJalviewPropertyChangeListener(java.beans.PropertyChangeListener)
160    */
161   public void addJalviewPropertyChangeListener(
162           PropertyChangeListener listener)
163   {
164     changeSupport.addJalviewPropertyChangeListener(listener);
165   }
166
167   /**
168    * @param propertyName
169    * @param listener
170    * @see jalview.gui.JalviewChangeSupport#addJalviewPropertyChangeListener(java.lang.String,
171    *      java.beans.PropertyChangeListener)
172    */
173   public void addJalviewPropertyChangeListener(String propertyName,
174           PropertyChangeListener listener)
175   {
176     changeSupport.addJalviewPropertyChangeListener(propertyName, listener);
177   }
178
179   /**
180    * @param propertyName
181    * @param listener
182    * @see jalview.gui.JalviewChangeSupport#removeJalviewPropertyChangeListener(java.lang.String,
183    *      java.beans.PropertyChangeListener)
184    */
185   public void removeJalviewPropertyChangeListener(String propertyName,
186           PropertyChangeListener listener)
187   {
188     changeSupport.removeJalviewPropertyChangeListener(propertyName,
189             listener);
190   }
191
192   /** Singleton Desktop instance */
193   public static Desktop instance;
194
195   public static MyDesktopPane desktop;
196
197   static int openFrameCount = 0;
198
199   static final int xOffset = 30;
200
201   static final int yOffset = 30;
202
203   public static jalview.ws.jws1.Discoverer discoverer;
204
205   public static Object[] jalviewClipboard;
206
207   public static boolean internalCopy = false;
208
209   static int fileLoadingCount = 0;
210
211   class MyDesktopManager implements DesktopManager
212   {
213
214     private DesktopManager delegate;
215
216     public MyDesktopManager(DesktopManager delegate)
217     {
218       this.delegate = delegate;
219     }
220
221     @Override
222     public void activateFrame(JInternalFrame f)
223     {
224       try
225       {
226         delegate.activateFrame(f);
227       } catch (NullPointerException npe)
228       {
229         Point p = getMousePosition();
230         instance.showPasteMenu(p.x, p.y);
231       }
232     }
233
234     @Override
235     public void beginDraggingFrame(JComponent f)
236     {
237       delegate.beginDraggingFrame(f);
238     }
239
240     @Override
241     public void beginResizingFrame(JComponent f, int direction)
242     {
243       delegate.beginResizingFrame(f, direction);
244     }
245
246     @Override
247     public void closeFrame(JInternalFrame f)
248     {
249       delegate.closeFrame(f);
250     }
251
252     @Override
253     public void deactivateFrame(JInternalFrame f)
254     {
255       delegate.deactivateFrame(f);
256     }
257
258     @Override
259     public void deiconifyFrame(JInternalFrame f)
260     {
261       delegate.deiconifyFrame(f);
262     }
263
264     @Override
265     public void dragFrame(JComponent f, int newX, int newY)
266     {
267       if (newY < 0)
268       {
269         newY = 0;
270       }
271       delegate.dragFrame(f, newX, newY);
272     }
273
274     @Override
275     public void endDraggingFrame(JComponent f)
276     {
277       delegate.endDraggingFrame(f);
278       desktop.repaint();
279     }
280
281     @Override
282     public void endResizingFrame(JComponent f)
283     {
284       delegate.endResizingFrame(f);
285       desktop.repaint();
286     }
287
288     @Override
289     public void iconifyFrame(JInternalFrame f)
290     {
291       delegate.iconifyFrame(f);
292     }
293
294     @Override
295     public void maximizeFrame(JInternalFrame f)
296     {
297       delegate.maximizeFrame(f);
298     }
299
300     @Override
301     public void minimizeFrame(JInternalFrame f)
302     {
303       delegate.minimizeFrame(f);
304     }
305
306     @Override
307     public void openFrame(JInternalFrame f)
308     {
309       delegate.openFrame(f);
310     }
311
312     @Override
313     public void resizeFrame(JComponent f, int newX, int newY, int newWidth,
314             int newHeight)
315     {
316       if (newY < 0)
317       {
318         newY = 0;
319       }
320       delegate.resizeFrame(f, newX, newY, newWidth, newHeight);
321     }
322
323     @Override
324     public void setBoundsForFrame(JComponent f, int newX, int newY,
325             int newWidth, int newHeight)
326     {
327       delegate.setBoundsForFrame(f, newX, newY, newWidth, newHeight);
328     }
329
330     // All other methods, simply delegate
331
332   }
333
334   /**
335    * Creates a new Desktop object.
336    */
337   public Desktop()
338   {
339     /**
340      * A note to implementors. It is ESSENTIAL that any activities that might
341      * block are spawned off as threads rather than waited for during this
342      * constructor.
343      */
344     instance = this;
345
346     doConfigureStructurePrefs();
347     setTitle("Jalview " + jalview.bin.Cache.getProperty("VERSION"));
348     /*
349     if (!Platform.isAMac())
350     {
351       // this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
352     }
353     else
354     {
355      this.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
356     }
357     */
358
359     try
360     {
361       APQHandlers.setAPQHandlers(this);
362     } catch (Exception e)
363     {
364       System.out.println("Cannot set APQHandlers");
365       // e.printStackTrace();
366     } catch (Throwable t)
367     {
368       System.out.println("Cannot set APQHandlers");
369       // t.printStackTrace();
370     }
371
372
373     addWindowListener(new WindowAdapter()
374     {
375
376       @Override
377       public void windowClosing(WindowEvent ev)
378       {
379         quit();
380       }
381     });
382
383     boolean selmemusage = jalview.bin.Cache.getDefault("SHOW_MEMUSAGE",
384             false);
385
386     boolean showjconsole = jalview.bin.Cache.getDefault("SHOW_JAVA_CONSOLE",
387             false);
388     desktop = new MyDesktopPane(selmemusage);
389     showMemusage.setSelected(selmemusage);
390     desktop.setBackground(Color.white);
391
392     getContentPane().setLayout(new BorderLayout());
393     // alternate config - have scrollbars - see notes in JAL-153
394     // JScrollPane sp = new JScrollPane();
395     // sp.getViewport().setView(desktop);
396     // getContentPane().add(sp, BorderLayout.CENTER);
397     getContentPane().add(desktop, BorderLayout.CENTER);
398     desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
399
400     // This line prevents Windows Look&Feel resizing all new windows to maximum
401     // if previous window was maximised
402     desktop.setDesktopManager(new MyDesktopManager(
403             (Platform.isWindows() ? new DefaultDesktopManager()
404                     : Platform.isAMac()
405                             ? new AquaInternalFrameManager(
406                                     desktop.getDesktopManager())
407                             : desktop.getDesktopManager())));
408
409     Rectangle dims = getLastKnownDimensions("");
410     if (dims != null)
411     {
412       setBounds(dims);
413     }
414     else
415     {
416       Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
417       setBounds((screenSize.width - 900) / 2, (screenSize.height - 650) / 2,
418               900, 650);
419     }
420     jconsole = new Console(this, showjconsole);
421     // add essential build information
422     jconsole.setHeader(jalview.bin.Cache.getVersionDetailsForConsole());
423
424     showConsole(showjconsole);
425
426     showNews.setVisible(false);
427
428     experimentalFeatures.setSelected(showExperimental());
429
430     getIdentifiersOrgData();
431
432     checkURLLinks();
433
434     this.addWindowListener(new WindowAdapter()
435     {
436       @Override
437       public void windowClosing(WindowEvent evt)
438       {
439         quit();
440       }
441     });
442
443     MouseAdapter ma;
444     this.addMouseListener(ma = new MouseAdapter()
445     {
446       @Override
447       public void mousePressed(MouseEvent evt)
448       {
449         if (evt.isPopupTrigger()) // Mac
450         {
451           showPasteMenu(evt.getX(), evt.getY());
452         }
453       }
454
455       @Override
456       public void mouseReleased(MouseEvent evt)
457       {
458         if (evt.isPopupTrigger()) // Windows
459         {
460           showPasteMenu(evt.getX(), evt.getY());
461         }
462       }
463     });
464     desktop.addMouseListener(ma);
465
466     this.setDropTarget(new java.awt.dnd.DropTarget(desktop, this));
467     // Spawn a thread that shows the splashscreen
468     SwingUtilities.invokeLater(new Runnable()
469     {
470       @Override
471       public void run()
472       {
473         new SplashScreen();
474       }
475     });
476
477     // Thread off a new instance of the file chooser - this reduces the time it
478     // takes to open it later on.
479     new Thread(new Runnable()
480     {
481       @Override
482       public void run()
483       {
484         Cache.log.debug("Filechooser init thread started.");
485         String fileFormat = Cache.getProperty("DEFAULT_FILE_FORMAT");
486         JalviewFileChooser.forRead(Cache.getProperty("LAST_DIRECTORY"),
487                 fileFormat);
488         Cache.log.debug("Filechooser init thread finished.");
489       }
490     }).start();
491     // Add the service change listener
492     changeSupport.addJalviewPropertyChangeListener("services",
493             new PropertyChangeListener()
494             {
495
496               @Override
497               public void propertyChange(PropertyChangeEvent evt)
498               {
499                 Cache.log.debug("Firing service changed event for "
500                         + evt.getNewValue());
501                 JalviewServicesChanged(evt);
502               }
503
504             });
505   }
506
507   /**
508    * Answers true if user preferences to enable experimental features is True
509    * (on), else false
510    * 
511    * @return
512    */
513   public boolean showExperimental()
514   {
515     String experimental = Cache.getDefault(EXPERIMENTAL_FEATURES,
516             Boolean.FALSE.toString());
517     return Boolean.valueOf(experimental).booleanValue();
518   }
519
520   public void doConfigureStructurePrefs()
521   {
522     // configure services
523     StructureSelectionManager ssm = StructureSelectionManager
524             .getStructureSelectionManager(this);
525     if (jalview.bin.Cache.getDefault(Preferences.ADD_SS_ANN, true))
526     {
527       ssm.setAddTempFacAnnot(jalview.bin.Cache
528               .getDefault(Preferences.ADD_TEMPFACT_ANN, true));
529       ssm.setProcessSecondaryStructure(jalview.bin.Cache
530               .getDefault(Preferences.STRUCT_FROM_PDB, true));
531       ssm.setSecStructServices(
532               jalview.bin.Cache.getDefault(Preferences.USE_RNAVIEW, true));
533     }
534     else
535     {
536       ssm.setAddTempFacAnnot(false);
537       ssm.setProcessSecondaryStructure(false);
538       ssm.setSecStructServices(false);
539     }
540   }
541
542   public void checkForNews()
543   {
544     final Desktop me = this;
545     // Thread off the news reader, in case there are connection problems.
546     new Thread(new Runnable()
547     {
548       @Override
549       public void run()
550       {
551         Cache.log.debug("Starting news thread.");
552
553         jvnews = new BlogReader(me);
554         showNews.setVisible(true);
555         Cache.log.debug("Completed news thread.");
556       }
557     }).start();
558   }
559
560   public void getIdentifiersOrgData()
561   {
562     // Thread off the identifiers fetcher
563     new Thread(new Runnable()
564     {
565       @Override
566       public void run()
567       {
568         Cache.log.debug("Downloading data from identifiers.org");
569         UrlDownloadClient client = new UrlDownloadClient();
570         try
571         {
572           client.download(IdOrgSettings.getUrl(),
573                   IdOrgSettings.getDownloadLocation());
574         } catch (IOException e)
575         {
576           Cache.log.debug("Exception downloading identifiers.org data"
577                   + e.getMessage());
578         }
579       }
580     }).start();
581     ;
582   }
583
584   @Override
585   protected void showNews_actionPerformed(ActionEvent e)
586   {
587     showNews(showNews.isSelected());
588   }
589
590   void showNews(boolean visible)
591   {
592     {
593       Cache.log.debug((visible ? "Showing" : "Hiding") + " news.");
594       showNews.setSelected(visible);
595       if (visible && !jvnews.isVisible())
596       {
597         new Thread(new Runnable()
598         {
599           @Override
600           public void run()
601           {
602             long now = System.currentTimeMillis();
603             Desktop.instance.setProgressBar(
604                     MessageManager.getString("status.refreshing_news"),
605                     now);
606             jvnews.refreshNews();
607             Desktop.instance.setProgressBar(null, now);
608             jvnews.showNews();
609           }
610         }).start();
611       }
612     }
613   }
614
615   /**
616    * recover the last known dimensions for a jalview window
617    * 
618    * @param windowName
619    *          - empty string is desktop, all other windows have unique prefix
620    * @return null or last known dimensions scaled to current geometry (if last
621    *         window geom was known)
622    */
623   Rectangle getLastKnownDimensions(String windowName)
624   {
625     // TODO: lock aspect ratio for scaling desktop Bug #0058199
626     Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
627     String x = jalview.bin.Cache.getProperty(windowName + "SCREEN_X");
628     String y = jalview.bin.Cache.getProperty(windowName + "SCREEN_Y");
629     String width = jalview.bin.Cache
630             .getProperty(windowName + "SCREEN_WIDTH");
631     String height = jalview.bin.Cache
632             .getProperty(windowName + "SCREEN_HEIGHT");
633     if ((x != null) && (y != null) && (width != null) && (height != null))
634     {
635       int ix = Integer.parseInt(x), iy = Integer.parseInt(y),
636               iw = Integer.parseInt(width), ih = Integer.parseInt(height);
637       if (jalview.bin.Cache.getProperty("SCREENGEOMETRY_WIDTH") != null)
638       {
639         // attempt #1 - try to cope with change in screen geometry - this
640         // version doesn't preserve original jv aspect ratio.
641         // take ratio of current screen size vs original screen size.
642         double sw = ((1f * screenSize.width) / (1f * Integer.parseInt(
643                 jalview.bin.Cache.getProperty("SCREENGEOMETRY_WIDTH"))));
644         double sh = ((1f * screenSize.height) / (1f * Integer.parseInt(
645                 jalview.bin.Cache.getProperty("SCREENGEOMETRY_HEIGHT"))));
646         // rescale the bounds depending upon the current screen geometry.
647         ix = (int) (ix * sw);
648         iw = (int) (iw * sw);
649         iy = (int) (iy * sh);
650         ih = (int) (ih * sh);
651         while (ix >= screenSize.width)
652         {
653           jalview.bin.Cache.log.debug(
654                   "Window geometry location recall error: shifting horizontal to within screenbounds.");
655           ix -= screenSize.width;
656         }
657         while (iy >= screenSize.height)
658         {
659           jalview.bin.Cache.log.debug(
660                   "Window geometry location recall error: shifting vertical to within screenbounds.");
661           iy -= screenSize.height;
662         }
663         jalview.bin.Cache.log.debug(
664                 "Got last known dimensions for " + windowName + ": x:" + ix
665                         + " y:" + iy + " width:" + iw + " height:" + ih);
666       }
667       // return dimensions for new instance
668       return new Rectangle(ix, iy, iw, ih);
669     }
670     return null;
671   }
672
673   void showPasteMenu(int x, int y)
674   {
675     JPopupMenu popup = new JPopupMenu();
676     JMenuItem item = new JMenuItem(
677             MessageManager.getString("label.paste_new_window"));
678     item.addActionListener(new ActionListener()
679     {
680       @Override
681       public void actionPerformed(ActionEvent evt)
682       {
683         paste();
684       }
685     });
686
687     popup.add(item);
688     popup.show(this, x, y);
689   }
690
691   public void paste()
692   {
693     try
694     {
695       Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
696       Transferable contents = c.getContents(this);
697
698       if (contents != null)
699       {
700         String file = (String) contents
701                 .getTransferData(DataFlavor.stringFlavor);
702
703         FileFormatI format = new IdentifyFile().identify(file,
704                 DataSourceType.PASTE);
705
706         new FileLoader().LoadFile(file, DataSourceType.PASTE, format);
707
708       }
709     } catch (Exception ex)
710     {
711       System.out.println(
712               "Unable to paste alignment from system clipboard:\n" + ex);
713     }
714   }
715
716   /**
717    * Adds and opens the given frame to the desktop
718    * 
719    * @param frame
720    *          Frame to show
721    * @param title
722    *          Visible Title
723    * @param w
724    *          width
725    * @param h
726    *          height
727    */
728   public static synchronized void addInternalFrame(
729           final JInternalFrame frame, String title, int w, int h)
730   {
731     addInternalFrame(frame, title, true, w, h, true, false);
732   }
733
734   /**
735    * Add an internal frame to the Jalview desktop
736    * 
737    * @param frame
738    *          Frame to show
739    * @param title
740    *          Visible Title
741    * @param makeVisible
742    *          When true, display frame immediately, otherwise, caller must call
743    *          setVisible themselves.
744    * @param w
745    *          width
746    * @param h
747    *          height
748    */
749   public static synchronized void addInternalFrame(
750           final JInternalFrame frame, String title, boolean makeVisible,
751           int w, int h)
752   {
753     addInternalFrame(frame, title, makeVisible, w, h, true, false);
754   }
755
756   /**
757    * Add an internal frame to the Jalview desktop and make it visible
758    * 
759    * @param frame
760    *          Frame to show
761    * @param title
762    *          Visible Title
763    * @param w
764    *          width
765    * @param h
766    *          height
767    * @param resizable
768    *          Allow resize
769    */
770   public static synchronized void addInternalFrame(
771           final JInternalFrame frame, String title, int w, int h,
772           boolean resizable)
773   {
774     addInternalFrame(frame, title, true, w, h, resizable, false);
775   }
776
777   /**
778    * Add an internal frame to the Jalview desktop
779    * 
780    * @param frame
781    *          Frame to show
782    * @param title
783    *          Visible Title
784    * @param makeVisible
785    *          When true, display frame immediately, otherwise, caller must call
786    *          setVisible themselves.
787    * @param w
788    *          width
789    * @param h
790    *          height
791    * @param resizable
792    *          Allow resize
793    * @param ignoreMinSize
794    *          Do not set the default minimum size for frame
795    */
796   public static synchronized void addInternalFrame(
797           final JInternalFrame frame, String title, boolean makeVisible,
798           int w, int h, boolean resizable, boolean ignoreMinSize)
799   {
800
801     // TODO: allow callers to determine X and Y position of frame (eg. via
802     // bounds object).
803     // TODO: consider fixing method to update entries in the window submenu with
804     // the current window title
805
806     frame.setTitle(title);
807     if (frame.getWidth() < 1 || frame.getHeight() < 1)
808     {
809       frame.setSize(w, h);
810     }
811     // THIS IS A PUBLIC STATIC METHOD, SO IT MAY BE CALLED EVEN IN
812     // A HEADLESS STATE WHEN NO DESKTOP EXISTS. MUST RETURN
813     // IF JALVIEW IS RUNNING HEADLESS
814     // ///////////////////////////////////////////////
815     if (instance == null || (System.getProperty("java.awt.headless") != null
816             && System.getProperty("java.awt.headless").equals("true")))
817     {
818       return;
819     }
820
821     openFrameCount++;
822
823     if (!ignoreMinSize)
824     {
825       frame.setMinimumSize(
826               new Dimension(DEFAULT_MIN_WIDTH, DEFAULT_MIN_HEIGHT));
827
828       // Set default dimension for Alignment Frame window.
829       // The Alignment Frame window could be added from a number of places,
830       // hence,
831       // I did this here in order not to miss out on any Alignment frame.
832       if (frame instanceof AlignFrame)
833       {
834         frame.setMinimumSize(new Dimension(ALIGN_FRAME_DEFAULT_MIN_WIDTH,
835                 ALIGN_FRAME_DEFAULT_MIN_HEIGHT));
836       }
837     }
838
839     frame.setVisible(makeVisible);
840     frame.setClosable(true);
841     frame.setResizable(resizable);
842     frame.setMaximizable(resizable);
843     frame.setIconifiable(resizable);
844     frame.setOpaque(false);
845
846     if (frame.getX() < 1 && frame.getY() < 1)
847     {
848       frame.setLocation(xOffset * openFrameCount,
849               yOffset * ((openFrameCount - 1) % 10) + yOffset);
850     }
851
852     /*
853      * add an entry for the new frame in the Window menu 
854      * (and remove it when the frame is closed)
855      */
856     final JMenuItem menuItem = new JMenuItem(title);
857     frame.addInternalFrameListener(new InternalFrameAdapter()
858     {
859       @Override
860       public void internalFrameActivated(InternalFrameEvent evt)
861       {
862         JInternalFrame itf = desktop.getSelectedFrame();
863         if (itf != null)
864         {
865           if (itf instanceof AlignFrame)
866           {
867             Jalview.setCurrentAlignFrame((AlignFrame) itf);
868           }
869           itf.requestFocus();
870         }
871       }
872
873       @Override
874       public void internalFrameClosed(InternalFrameEvent evt)
875       {
876         PaintRefresher.RemoveComponent(frame);
877
878         /*
879          * defensive check to prevent frames being
880          * added half off the window
881          */
882         if (openFrameCount > 0)
883         {
884           openFrameCount--;
885         }
886
887         /*
888          * ensure no reference to alignFrame retained by menu item listener
889          */
890         if (menuItem.getActionListeners().length > 0)
891         {
892           menuItem.removeActionListener(menuItem.getActionListeners()[0]);
893         }
894         windowMenu.remove(menuItem);
895       };
896     });
897
898     menuItem.addActionListener(new ActionListener()
899     {
900       @Override
901       public void actionPerformed(ActionEvent e)
902       {
903         try
904         {
905           frame.setSelected(true);
906           frame.setIcon(false);
907         } catch (java.beans.PropertyVetoException ex)
908         {
909
910         }
911       }
912     });
913
914     setKeyBindings(frame);
915
916     desktop.add(frame);
917
918     windowMenu.add(menuItem);
919
920     frame.toFront();
921     try
922     {
923       frame.setSelected(true);
924       frame.requestFocus();
925     } catch (java.beans.PropertyVetoException ve)
926     {
927     } catch (java.lang.ClassCastException cex)
928     {
929       Cache.log.warn(
930               "Squashed a possible GUI implementation error. If you can recreate this, please look at http://issues.jalview.org/browse/JAL-869",
931               cex);
932     }
933   }
934
935   /**
936    * Add key bindings to a JInternalFrame so that Ctrl-W and Cmd-W will close
937    * the window
938    * 
939    * @param frame
940    */
941   private static void setKeyBindings(JInternalFrame frame)
942   {
943     @SuppressWarnings("serial")
944     final Action closeAction = new AbstractAction()
945     {
946       @Override
947       public void actionPerformed(ActionEvent e)
948       {
949         frame.dispose();
950       }
951     };
952
953     /*
954      * set up key bindings for Ctrl-W and Cmd-W, with the same (Close) action
955      */
956     KeyStroke ctrlWKey = KeyStroke.getKeyStroke(KeyEvent.VK_W,
957             InputEvent.CTRL_DOWN_MASK);
958     KeyStroke cmdWKey = KeyStroke.getKeyStroke(KeyEvent.VK_W,
959             jalview.util.ShortcutKeyMaskExWrapper.getMenuShortcutKeyMaskEx());
960
961     InputMap inputMap = frame
962             .getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
963     String ctrlW = ctrlWKey.toString();
964     inputMap.put(ctrlWKey, ctrlW);
965     inputMap.put(cmdWKey, ctrlW);
966
967     ActionMap actionMap = frame.getActionMap();
968     actionMap.put(ctrlW, closeAction);
969   }
970
971   @Override
972   public void lostOwnership(Clipboard clipboard, Transferable contents)
973   {
974     if (!internalCopy)
975     {
976       Desktop.jalviewClipboard = null;
977     }
978
979     internalCopy = false;
980   }
981
982   @Override
983   public void dragEnter(DropTargetDragEvent evt)
984   {
985   }
986
987   @Override
988   public void dragExit(DropTargetEvent evt)
989   {
990   }
991
992   @Override
993   public void dragOver(DropTargetDragEvent evt)
994   {
995   }
996
997   @Override
998   public void dropActionChanged(DropTargetDragEvent evt)
999   {
1000   }
1001
1002   /**
1003    * DOCUMENT ME!
1004    * 
1005    * @param evt
1006    *          DOCUMENT ME!
1007    */
1008   @Override
1009   public void drop(DropTargetDropEvent evt)
1010   {
1011     boolean success = true;
1012     // JAL-1552 - acceptDrop required before getTransferable call for
1013     // Java's Transferable for native dnd
1014     evt.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
1015     Transferable t = evt.getTransferable();
1016     List<String> files = new ArrayList<>();
1017     List<DataSourceType> protocols = new ArrayList<>();
1018
1019     try
1020     {
1021       Desktop.transferFromDropTarget(files, protocols, evt, t);
1022     } catch (Exception e)
1023     {
1024       e.printStackTrace();
1025       success = false;
1026     }
1027
1028     if (files != null)
1029     {
1030       try
1031       {
1032         for (int i = 0; i < files.size(); i++)
1033         {
1034           String file = files.get(i).toString();
1035           DataSourceType protocol = (protocols == null)
1036                   ? DataSourceType.FILE
1037                   : protocols.get(i);
1038           FileFormatI format = null;
1039
1040           if (file.endsWith(".jar"))
1041           {
1042             format = FileFormat.Jalview;
1043
1044           }
1045           else
1046           {
1047             format = new IdentifyFile().identify(file, protocol);
1048           }
1049
1050           new FileLoader().LoadFile(file, protocol, format);
1051
1052         }
1053       } catch (Exception ex)
1054       {
1055         success = false;
1056       }
1057     }
1058     evt.dropComplete(success); // need this to ensure input focus is properly
1059                                // transfered to any new windows created
1060   }
1061
1062   /**
1063    * DOCUMENT ME!
1064    * 
1065    * @param e
1066    *          DOCUMENT ME!
1067    */
1068   @Override
1069   public void inputLocalFileMenuItem_actionPerformed(AlignViewport viewport)
1070   {
1071     String fileFormat = Cache.getProperty("DEFAULT_FILE_FORMAT");
1072     JalviewFileChooser chooser = JalviewFileChooser
1073             .forRead(Cache.getProperty("LAST_DIRECTORY"), fileFormat, BackupFiles.getEnabled());
1074
1075     chooser.setFileView(new JalviewFileView());
1076     chooser.setDialogTitle(
1077             MessageManager.getString("label.open_local_file"));
1078     chooser.setToolTipText(MessageManager.getString("action.open"));
1079
1080     int value = chooser.showOpenDialog(this);
1081
1082     if (value == JalviewFileChooser.APPROVE_OPTION)
1083     {
1084       String choice = chooser.getSelectedFile().getPath();
1085       Cache.setProperty("LAST_DIRECTORY",
1086               chooser.getSelectedFile().getParent());
1087
1088       FileFormatI format = chooser.getSelectedFormat();
1089
1090       /*
1091        * Call IdentifyFile to verify the file contains what its extension implies.
1092        * Skip this step for dynamically added file formats, because
1093        * IdentifyFile does not know how to recognise them.
1094        */
1095       if (FileFormats.getInstance().isIdentifiable(format))
1096       {
1097         try
1098         {
1099           format = new IdentifyFile().identify(choice, DataSourceType.FILE);
1100         } catch (FileFormatException e)
1101         {
1102           // format = null; //??
1103         }
1104       }
1105
1106       if (viewport != null)
1107       {
1108         new FileLoader().LoadFile(viewport, choice, DataSourceType.FILE,
1109                 format);
1110       }
1111       else
1112       {
1113         new FileLoader().LoadFile(choice, DataSourceType.FILE, format);
1114       }
1115     }
1116   }
1117
1118   /**
1119    * DOCUMENT ME!
1120    * 
1121    * @param e
1122    *          DOCUMENT ME!
1123    */
1124   @Override
1125   public void inputURLMenuItem_actionPerformed(AlignViewport viewport)
1126   {
1127     // This construct allows us to have a wider textfield
1128     // for viewing
1129     JLabel label = new JLabel(
1130             MessageManager.getString("label.input_file_url"));
1131     final JComboBox history = new JComboBox();
1132
1133     JPanel panel = new JPanel(new GridLayout(2, 1));
1134     panel.add(label);
1135     panel.add(history);
1136     history.setPreferredSize(new Dimension(400, 20));
1137     history.setEditable(true);
1138     history.addItem("http://www.");
1139
1140     String historyItems = jalview.bin.Cache.getProperty("RECENT_URL");
1141
1142     StringTokenizer st;
1143
1144     if (historyItems != null)
1145     {
1146       st = new StringTokenizer(historyItems, "\t");
1147
1148       while (st.hasMoreTokens())
1149       {
1150         history.addItem(st.nextElement());
1151       }
1152     }
1153
1154     int reply = JvOptionPane.showInternalConfirmDialog(desktop, panel,
1155             MessageManager.getString("label.input_alignment_from_url"),
1156             JvOptionPane.OK_CANCEL_OPTION);
1157
1158     if (reply != JvOptionPane.OK_OPTION)
1159     {
1160       return;
1161     }
1162
1163     String url = history.getSelectedItem().toString();
1164
1165     if (url.toLowerCase().endsWith(".jar"))
1166     {
1167       if (viewport != null)
1168       {
1169         new FileLoader().LoadFile(viewport, url, DataSourceType.URL,
1170                 FileFormat.Jalview);
1171       }
1172       else
1173       {
1174         new FileLoader().LoadFile(url, DataSourceType.URL,
1175                 FileFormat.Jalview);
1176       }
1177     }
1178     else
1179     {
1180       FileFormatI format = null;
1181       try
1182       {
1183         format = new IdentifyFile().identify(url, DataSourceType.URL);
1184       } catch (FileFormatException e)
1185       {
1186         // TODO revise error handling, distinguish between
1187         // URL not found and response not valid
1188       }
1189
1190       if (format == null)
1191       {
1192         JvOptionPane.showInternalMessageDialog(Desktop.desktop,
1193                 MessageManager.formatMessage("label.couldnt_locate",
1194                         new Object[]
1195                         { url }),
1196                 MessageManager.getString("label.url_not_found"),
1197                 JvOptionPane.WARNING_MESSAGE);
1198
1199         return;
1200       }
1201
1202       if (viewport != null)
1203       {
1204         new FileLoader().LoadFile(viewport, url, DataSourceType.URL,
1205                 format);
1206       }
1207       else
1208       {
1209         new FileLoader().LoadFile(url, DataSourceType.URL, format);
1210       }
1211     }
1212   }
1213
1214   /**
1215    * Opens the CutAndPaste window for the user to paste an alignment in to
1216    * 
1217    * @param viewPanel
1218    *          - if not null, the pasted alignment is added to the current
1219    *          alignment; if null, to a new alignment window
1220    */
1221   @Override
1222   public void inputTextboxMenuItem_actionPerformed(
1223           AlignmentViewPanel viewPanel)
1224   {
1225     CutAndPasteTransfer cap = new CutAndPasteTransfer();
1226     cap.setForInput(viewPanel);
1227     Desktop.addInternalFrame(cap,
1228             MessageManager.getString("label.cut_paste_alignmen_file"), true,
1229             600, 500);
1230   }
1231
1232   /*
1233    * Exit the program
1234    */
1235   @Override
1236   public void quit()
1237   {
1238     Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
1239     jalview.bin.Cache.setProperty("SCREENGEOMETRY_WIDTH",
1240             screen.width + "");
1241     jalview.bin.Cache.setProperty("SCREENGEOMETRY_HEIGHT",
1242             screen.height + "");
1243     storeLastKnownDimensions("", new Rectangle(getBounds().x, getBounds().y,
1244             getWidth(), getHeight()));
1245
1246     if (jconsole != null)
1247     {
1248       storeLastKnownDimensions("JAVA_CONSOLE_", jconsole.getBounds());
1249       jconsole.stopConsole();
1250     }
1251     if (jvnews != null)
1252     {
1253       storeLastKnownDimensions("JALVIEW_RSS_WINDOW_", jvnews.getBounds());
1254
1255     }
1256     if (dialogExecutor != null)
1257     {
1258       dialogExecutor.shutdownNow();
1259     }
1260     closeAll_actionPerformed(null);
1261
1262     if (groovyConsole != null)
1263     {
1264       // suppress a possible repeat prompt to save script
1265       groovyConsole.setDirty(false);
1266       groovyConsole.exit();
1267     }
1268     System.exit(0);
1269   }
1270
1271   private void storeLastKnownDimensions(String string, Rectangle jc)
1272   {
1273     jalview.bin.Cache.log.debug("Storing last known dimensions for "
1274             + string + ": x:" + jc.x + " y:" + jc.y + " width:" + jc.width
1275             + " height:" + jc.height);
1276
1277     jalview.bin.Cache.setProperty(string + "SCREEN_X", jc.x + "");
1278     jalview.bin.Cache.setProperty(string + "SCREEN_Y", jc.y + "");
1279     jalview.bin.Cache.setProperty(string + "SCREEN_WIDTH", jc.width + "");
1280     jalview.bin.Cache.setProperty(string + "SCREEN_HEIGHT", jc.height + "");
1281   }
1282
1283   /**
1284    * DOCUMENT ME!
1285    * 
1286    * @param e
1287    *          DOCUMENT ME!
1288    */
1289   @Override
1290   public void aboutMenuItem_actionPerformed(ActionEvent e)
1291   {
1292     // StringBuffer message = getAboutMessage(false);
1293     // JvOptionPane.showInternalMessageDialog(Desktop.desktop,
1294     //
1295     // message.toString(), "About Jalview", JvOptionPane.INFORMATION_MESSAGE);
1296     new Thread(new Runnable()
1297     {
1298       @Override
1299       public void run()
1300       {
1301         new SplashScreen(true);
1302       }
1303     }).start();
1304   }
1305
1306   public StringBuffer getAboutMessage(boolean shortv)
1307   {
1308     StringBuffer message = new StringBuffer();
1309     message.append("<html>");
1310     if (shortv)
1311     {
1312       message.append("<h1><strong>Version: "
1313               + jalview.bin.Cache.getProperty("VERSION")
1314               + "</strong></h1>");
1315       message.append("<strong>Built: <em>"
1316               + jalview.bin.Cache.getDefault("BUILD_DATE", "unknown")
1317               + "</em> from " + jalview.bin.Cache.getBuildDetailsForSplash()
1318               + "</strong>");
1319
1320     }
1321     else
1322     {
1323
1324       message.append("<strong>Version "
1325               + jalview.bin.Cache.getProperty("VERSION")
1326               + "; last updated: "
1327               + jalview.bin.Cache.getDefault("BUILD_DATE", "unknown"));
1328     }
1329
1330     if (jalview.bin.Cache.getDefault("LATEST_VERSION", "Checking")
1331             .equals("Checking"))
1332     {
1333       // JBP removed this message for 2.11: May be reinstated in future version
1334       // message.append("<br>...Checking latest version...</br>");
1335     }
1336     else if (!jalview.bin.Cache.getDefault("LATEST_VERSION", "Checking")
1337             .equals(jalview.bin.Cache.getProperty("VERSION")))
1338     {
1339       boolean red = false;
1340       if (jalview.bin.Cache.getProperty("VERSION").toLowerCase()
1341               .indexOf("automated build") == -1)
1342       {
1343         red = true;
1344         // Displayed when code version and jnlp version do not match and code
1345         // version is not a development build
1346         message.append("<div style=\"color: #FF0000;font-style: bold;\">");
1347       }
1348
1349       message.append("<br>!! Version "
1350               + jalview.bin.Cache.getDefault("LATEST_VERSION",
1351                       "..Checking..")
1352               + " is available for download from "
1353               + jalview.bin.Cache.getDefault("www.jalview.org",
1354                       "http://www.jalview.org")
1355               + " !!");
1356       if (red)
1357       {
1358         message.append("</div>");
1359       }
1360     }
1361     message.append("<br>Authors:  " + jalview.bin.Cache.getDefault(
1362             "AUTHORFNAMES",
1363             "The Jalview Authors (See AUTHORS file for current list)")
1364             + "<br><br>Development managed by The Barton Group, University of Dundee, Scotland, UK.<br>"
1365             + "<br><br>For help, see the FAQ at <a href=\"http://www.jalview.org/faq\">www.jalview.org/faq</a> and/or join the jalview-discuss@jalview.org mailing list"
1366             + "<br><br>If  you use Jalview, please cite:"
1367             + "<br>Waterhouse, A.M., Procter, J.B., Martin, D.M.A, Clamp, M. and Barton, G. J. (2009)"
1368             + "<br>Jalview Version 2 - a multiple sequence alignment editor and analysis workbench"
1369             + "<br>Bioinformatics doi: 10.1093/bioinformatics/btp033"
1370             + "</html>");
1371     return message;
1372   }
1373
1374   /**
1375    * DOCUMENT ME!
1376    * 
1377    * @param e
1378    *          DOCUMENT ME!
1379    */
1380   @Override
1381   public void documentationMenuItem_actionPerformed(ActionEvent e)
1382   {
1383     try
1384     {
1385       Help.showHelpWindow();
1386     } catch (Exception ex)
1387     {
1388     }
1389   }
1390
1391   @Override
1392   public void closeAll_actionPerformed(ActionEvent e)
1393   {
1394     // TODO show a progress bar while closing?
1395     JInternalFrame[] frames = desktop.getAllFrames();
1396     for (int i = 0; i < frames.length; i++)
1397     {
1398       try
1399       {
1400         frames[i].setClosed(true);
1401       } catch (java.beans.PropertyVetoException ex)
1402       {
1403       }
1404     }
1405     Jalview.setCurrentAlignFrame(null);
1406     System.out.println("ALL CLOSED");
1407
1408     /*
1409      * reset state of singleton objects as appropriate (clear down session state
1410      * when all windows are closed)
1411      */
1412     StructureSelectionManager ssm = StructureSelectionManager
1413             .getStructureSelectionManager(this);
1414     if (ssm != null)
1415     {
1416       ssm.resetAll();
1417     }
1418   }
1419
1420   @Override
1421   public void raiseRelated_actionPerformed(ActionEvent e)
1422   {
1423     reorderAssociatedWindows(false, false);
1424   }
1425
1426   @Override
1427   public void minimizeAssociated_actionPerformed(ActionEvent e)
1428   {
1429     reorderAssociatedWindows(true, false);
1430   }
1431
1432   void closeAssociatedWindows()
1433   {
1434     reorderAssociatedWindows(false, true);
1435   }
1436
1437   /*
1438    * (non-Javadoc)
1439    * 
1440    * @seejalview.jbgui.GDesktop#garbageCollect_actionPerformed(java.awt.event.
1441    * ActionEvent)
1442    */
1443   @Override
1444   protected void garbageCollect_actionPerformed(ActionEvent e)
1445   {
1446     // We simply collect the garbage
1447     jalview.bin.Cache.log.debug("Collecting garbage...");
1448     System.gc();
1449     jalview.bin.Cache.log.debug("Finished garbage collection.");
1450   }
1451
1452   /*
1453    * (non-Javadoc)
1454    * 
1455    * @see
1456    * jalview.jbgui.GDesktop#showMemusage_actionPerformed(java.awt.event.ActionEvent
1457    * )
1458    */
1459   @Override
1460   protected void showMemusage_actionPerformed(ActionEvent e)
1461   {
1462     desktop.showMemoryUsage(showMemusage.isSelected());
1463   }
1464
1465   /*
1466    * (non-Javadoc)
1467    * 
1468    * @see
1469    * jalview.jbgui.GDesktop#showConsole_actionPerformed(java.awt.event.ActionEvent
1470    * )
1471    */
1472   @Override
1473   protected void showConsole_actionPerformed(ActionEvent e)
1474   {
1475     showConsole(showConsole.isSelected());
1476   }
1477
1478   Console jconsole = null;
1479
1480   /**
1481    * control whether the java console is visible or not
1482    * 
1483    * @param selected
1484    */
1485   void showConsole(boolean selected)
1486   {
1487     showConsole.setSelected(selected);
1488     // TODO: decide if we should update properties file
1489     Cache.setProperty("SHOW_JAVA_CONSOLE",
1490             Boolean.valueOf(selected).toString());
1491     jconsole.setVisible(selected);
1492   }
1493
1494   void reorderAssociatedWindows(boolean minimize, boolean close)
1495   {
1496     JInternalFrame[] frames = desktop.getAllFrames();
1497     if (frames == null || frames.length < 1)
1498     {
1499       return;
1500     }
1501
1502     AlignmentViewport source = null, target = null;
1503     if (frames[0] instanceof AlignFrame)
1504     {
1505       source = ((AlignFrame) frames[0]).getCurrentView();
1506     }
1507     else if (frames[0] instanceof TreePanel)
1508     {
1509       source = ((TreePanel) frames[0]).getViewPort();
1510     }
1511     else if (frames[0] instanceof PCAPanel)
1512     {
1513       source = ((PCAPanel) frames[0]).av;
1514     }
1515     else if (frames[0].getContentPane() instanceof PairwiseAlignPanel)
1516     {
1517       source = ((PairwiseAlignPanel) frames[0].getContentPane()).av;
1518     }
1519
1520     if (source != null)
1521     {
1522       for (int i = 0; i < frames.length; i++)
1523       {
1524         target = null;
1525         if (frames[i] == null)
1526         {
1527           continue;
1528         }
1529         if (frames[i] instanceof AlignFrame)
1530         {
1531           target = ((AlignFrame) frames[i]).getCurrentView();
1532         }
1533         else if (frames[i] instanceof TreePanel)
1534         {
1535           target = ((TreePanel) frames[i]).getViewPort();
1536         }
1537         else if (frames[i] instanceof PCAPanel)
1538         {
1539           target = ((PCAPanel) frames[i]).av;
1540         }
1541         else if (frames[i].getContentPane() instanceof PairwiseAlignPanel)
1542         {
1543           target = ((PairwiseAlignPanel) frames[i].getContentPane()).av;
1544         }
1545
1546         if (source == target)
1547         {
1548           try
1549           {
1550             if (close)
1551             {
1552               frames[i].setClosed(true);
1553             }
1554             else
1555             {
1556               frames[i].setIcon(minimize);
1557               if (!minimize)
1558               {
1559                 frames[i].toFront();
1560               }
1561             }
1562
1563           } catch (java.beans.PropertyVetoException ex)
1564           {
1565           }
1566         }
1567       }
1568     }
1569   }
1570
1571   /**
1572    * DOCUMENT ME!
1573    * 
1574    * @param e
1575    *          DOCUMENT ME!
1576    */
1577   @Override
1578   protected void preferences_actionPerformed(ActionEvent e)
1579   {
1580     new Preferences();
1581   }
1582
1583   /**
1584    * Shows a file chooser dialog and writes out the current session as a Jalview
1585    * project file
1586    */
1587   @Override
1588   public void saveState_actionPerformed()
1589   {
1590     saveState_actionPerformed(false);
1591   }
1592
1593   public void saveState_actionPerformed(boolean saveAs)
1594   {
1595     java.io.File projectFile = getProjectFile();
1596     // autoSave indicates we already have a file and don't need to ask
1597     boolean autoSave = projectFile != null && !saveAs
1598             && BackupFiles.getEnabled();
1599
1600     // System.out.println("autoSave="+autoSave+", projectFile='"+projectFile+"',
1601     // saveAs="+saveAs+", Backups
1602     // "+(BackupFiles.getEnabled()?"enabled":"disabled"));
1603
1604     boolean approveSave = false;
1605     if (!autoSave)
1606     {
1607       JalviewFileChooser chooser = new JalviewFileChooser("jvp",
1608               "Jalview Project");
1609
1610       chooser.setFileView(new JalviewFileView());
1611       chooser.setDialogTitle(MessageManager.getString("label.save_state"));
1612
1613       int value = chooser.showSaveDialog(this);
1614
1615       if (value == JalviewFileChooser.APPROVE_OPTION)
1616       {
1617         projectFile = chooser.getSelectedFile();
1618         setProjectFile(projectFile);
1619         approveSave = true;
1620       }
1621     }
1622
1623     if (approveSave || autoSave)
1624     {
1625       final Desktop me = this;
1626       final java.io.File chosenFile = projectFile;
1627       new Thread(new Runnable()
1628       {
1629         @Override
1630         public void run()
1631         {
1632           // TODO: refactor to Jalview desktop session controller action.
1633           setProgressBar(MessageManager.formatMessage(
1634                   "label.saving_jalview_project", new Object[]
1635                   { chosenFile.getName() }), chosenFile.hashCode());
1636           jalview.bin.Cache.setProperty("LAST_DIRECTORY",
1637                   chosenFile.getParent());
1638           // TODO catch and handle errors for savestate
1639           // TODO prevent user from messing with the Desktop whilst we're saving
1640           try
1641           {
1642             BackupFiles backupfiles = new BackupFiles(chosenFile);
1643
1644             new Jalview2XML().saveState(backupfiles.getTempFile());
1645
1646             backupfiles.setWriteSuccess(true);
1647             backupfiles.rollBackupsAndRenameTempFile();
1648           } catch (OutOfMemoryError oom)
1649           {
1650             new OOMWarning("Whilst saving current state to "
1651                     + chosenFile.getName(), oom);
1652           } catch (Exception ex)
1653           {
1654             Cache.log.error("Problems whilst trying to save to "
1655                     + chosenFile.getName(), ex);
1656             JvOptionPane.showMessageDialog(me,
1657                     MessageManager.formatMessage(
1658                             "label.error_whilst_saving_current_state_to",
1659                             new Object[]
1660                             { chosenFile.getName() }),
1661                     MessageManager.getString("label.couldnt_save_project"),
1662                     JvOptionPane.WARNING_MESSAGE);
1663           }
1664           setProgressBar(null, chosenFile.hashCode());
1665         }
1666       }).start();
1667     }
1668   }
1669
1670   @Override
1671   public void saveAsState_actionPerformed(ActionEvent e)
1672   {
1673     saveState_actionPerformed(true);
1674   }
1675
1676   private void setProjectFile(File choice)
1677   {
1678     this.projectFile = choice;
1679   }
1680
1681   public File getProjectFile()
1682   {
1683     return this.projectFile;
1684   }
1685
1686   /**
1687    * Shows a file chooser dialog and tries to read in the selected file as a
1688    * Jalview project
1689    */
1690   @Override
1691   public void loadState_actionPerformed()
1692   {
1693     final String[] suffix = new String[] { "jvp", "jar" };
1694     final String[] desc = new String[] { "Jalview Project",
1695         "Jalview Project (old)" };
1696     JalviewFileChooser chooser = new JalviewFileChooser(
1697             Cache.getProperty("LAST_DIRECTORY"), suffix, desc,
1698             "Jalview Project", true, BackupFiles.getEnabled()); // last two booleans: allFiles,
1699                                             // allowBackupFiles
1700     chooser.setFileView(new JalviewFileView());
1701     chooser.setDialogTitle(MessageManager.getString("label.restore_state"));
1702
1703     int value = chooser.showOpenDialog(this);
1704
1705     if (value == JalviewFileChooser.APPROVE_OPTION)
1706     {
1707       final File selectedFile = chooser.getSelectedFile();
1708       setProjectFile(selectedFile);
1709       final String choice = selectedFile.getAbsolutePath();
1710       Cache.setProperty("LAST_DIRECTORY", selectedFile.getParent());
1711       new Thread(new Runnable()
1712       {
1713         @Override
1714         public void run()
1715         {
1716           setProgressBar(MessageManager.formatMessage(
1717                   "label.loading_jalview_project", new Object[]
1718                   { choice }), choice.hashCode());
1719           try
1720           {
1721             new Jalview2XML().loadJalviewAlign(choice);
1722           } catch (OutOfMemoryError oom)
1723           {
1724             new OOMWarning("Whilst loading project from " + choice, oom);
1725           } catch (Exception ex)
1726           {
1727             Cache.log.error(
1728                     "Problems whilst loading project from " + choice, ex);
1729             JvOptionPane.showMessageDialog(Desktop.desktop,
1730                     MessageManager.formatMessage(
1731                             "label.error_whilst_loading_project_from",
1732                             new Object[]
1733                             { choice }),
1734                     MessageManager.getString("label.couldnt_load_project"),
1735                     JvOptionPane.WARNING_MESSAGE);
1736           }
1737           setProgressBar(null, choice.hashCode());
1738         }
1739       }).start();
1740     }
1741   }
1742
1743   @Override
1744   public void inputSequence_actionPerformed(ActionEvent e)
1745   {
1746     new SequenceFetcher(this);
1747   }
1748
1749   JPanel progressPanel;
1750
1751   ArrayList<JPanel> fileLoadingPanels = new ArrayList<>();
1752
1753   public void startLoading(final String fileName)
1754   {
1755     if (fileLoadingCount == 0)
1756     {
1757       fileLoadingPanels.add(addProgressPanel(MessageManager
1758               .formatMessage("label.loading_file", new Object[]
1759               { fileName })));
1760     }
1761     fileLoadingCount++;
1762   }
1763
1764   private JPanel addProgressPanel(String string)
1765   {
1766     if (progressPanel == null)
1767     {
1768       progressPanel = new JPanel(new GridLayout(1, 1));
1769       totalProgressCount = 0;
1770       instance.getContentPane().add(progressPanel, BorderLayout.SOUTH);
1771     }
1772     JPanel thisprogress = new JPanel(new BorderLayout(10, 5));
1773     JProgressBar progressBar = new JProgressBar();
1774     progressBar.setIndeterminate(true);
1775
1776     thisprogress.add(new JLabel(string), BorderLayout.WEST);
1777
1778     thisprogress.add(progressBar, BorderLayout.CENTER);
1779     progressPanel.add(thisprogress);
1780     ((GridLayout) progressPanel.getLayout()).setRows(
1781             ((GridLayout) progressPanel.getLayout()).getRows() + 1);
1782     ++totalProgressCount;
1783     instance.validate();
1784     return thisprogress;
1785   }
1786
1787   int totalProgressCount = 0;
1788
1789   private void removeProgressPanel(JPanel progbar)
1790   {
1791     if (progressPanel != null)
1792     {
1793       synchronized (progressPanel)
1794       {
1795         progressPanel.remove(progbar);
1796         GridLayout gl = (GridLayout) progressPanel.getLayout();
1797         gl.setRows(gl.getRows() - 1);
1798         if (--totalProgressCount < 1)
1799         {
1800           this.getContentPane().remove(progressPanel);
1801           progressPanel = null;
1802         }
1803       }
1804     }
1805     validate();
1806   }
1807
1808   public void stopLoading()
1809   {
1810     fileLoadingCount--;
1811     if (fileLoadingCount < 1)
1812     {
1813       while (fileLoadingPanels.size() > 0)
1814       {
1815         removeProgressPanel(fileLoadingPanels.remove(0));
1816       }
1817       fileLoadingPanels.clear();
1818       fileLoadingCount = 0;
1819     }
1820     validate();
1821   }
1822
1823   public static int getViewCount(String alignmentId)
1824   {
1825     AlignmentViewport[] aps = getViewports(alignmentId);
1826     return (aps == null) ? 0 : aps.length;
1827   }
1828
1829   /**
1830    * 
1831    * @param alignmentId
1832    *          - if null, all sets are returned
1833    * @return all AlignmentPanels concerning the alignmentId sequence set
1834    */
1835   public static AlignmentPanel[] getAlignmentPanels(String alignmentId)
1836   {
1837     if (Desktop.desktop == null)
1838     {
1839       // no frames created and in headless mode
1840       // TODO: verify that frames are recoverable when in headless mode
1841       return null;
1842     }
1843     List<AlignmentPanel> aps = new ArrayList<>();
1844     AlignFrame[] frames = getAlignFrames();
1845     if (frames == null)
1846     {
1847       return null;
1848     }
1849     for (AlignFrame af : frames)
1850     {
1851       for (AlignmentPanel ap : af.alignPanels)
1852       {
1853         if (alignmentId == null
1854                 || alignmentId.equals(ap.av.getSequenceSetId()))
1855         {
1856           aps.add(ap);
1857         }
1858       }
1859     }
1860     if (aps.size() == 0)
1861     {
1862       return null;
1863     }
1864     AlignmentPanel[] vap = aps.toArray(new AlignmentPanel[aps.size()]);
1865     return vap;
1866   }
1867
1868   /**
1869    * get all the viewports on an alignment.
1870    * 
1871    * @param sequenceSetId
1872    *          unique alignment id (may be null - all viewports returned in that
1873    *          case)
1874    * @return all viewports on the alignment bound to sequenceSetId
1875    */
1876   public static AlignmentViewport[] getViewports(String sequenceSetId)
1877   {
1878     List<AlignmentViewport> viewp = new ArrayList<>();
1879     if (desktop != null)
1880     {
1881       AlignFrame[] frames = Desktop.getAlignFrames();
1882
1883       for (AlignFrame afr : frames)
1884       {
1885         if (sequenceSetId == null || afr.getViewport().getSequenceSetId()
1886                 .equals(sequenceSetId))
1887         {
1888           if (afr.alignPanels != null)
1889           {
1890             for (AlignmentPanel ap : afr.alignPanels)
1891             {
1892               if (sequenceSetId == null
1893                       || sequenceSetId.equals(ap.av.getSequenceSetId()))
1894               {
1895                 viewp.add(ap.av);
1896               }
1897             }
1898           }
1899           else
1900           {
1901             viewp.add(afr.getViewport());
1902           }
1903         }
1904       }
1905       if (viewp.size() > 0)
1906       {
1907         return viewp.toArray(new AlignmentViewport[viewp.size()]);
1908       }
1909     }
1910     return null;
1911   }
1912
1913   /**
1914    * Explode the views in the given frame into separate AlignFrame
1915    * 
1916    * @param af
1917    */
1918   public static void explodeViews(AlignFrame af)
1919   {
1920     int size = af.alignPanels.size();
1921     if (size < 2)
1922     {
1923       return;
1924     }
1925
1926     // FIXME: ideally should use UI interface API
1927     FeatureSettings viewFeatureSettings = af.featureSettings;
1928     Rectangle fsBounds = af.getFeatureSettingsGeometry();
1929     for (int i = 0; i < size; i++)
1930     {
1931       AlignmentPanel ap = af.alignPanels.get(i);
1932
1933       AlignFrame newaf = new AlignFrame(ap);
1934
1935       // transfer reference for existing feature settings to new alignFrame
1936       if (ap == af.alignPanel)
1937       {
1938         newaf.featureSettings = viewFeatureSettings;
1939         newaf.setFeatureSettingsGeometry(fsBounds);
1940       }
1941
1942       /*
1943        * Restore the view's last exploded frame geometry if known. Multiple
1944        * views from one exploded frame share and restore the same (frame)
1945        * position and size.
1946        */
1947       Rectangle geometry = ap.av.getExplodedGeometry();
1948       if (geometry != null)
1949       {
1950         newaf.setBounds(geometry);
1951       }
1952
1953       ap.av.setGatherViewsHere(false);
1954
1955       addInternalFrame(newaf, af.getTitle(), AlignFrame.DEFAULT_WIDTH,
1956               AlignFrame.DEFAULT_HEIGHT);
1957     }
1958
1959     af.alignPanels.clear();
1960     af.closeMenuItem_actionPerformed(true);
1961
1962   }
1963
1964   /**
1965    * Gather expanded views (separate AlignFrame's) with the same sequence set
1966    * identifier back in to this frame as additional views, and close the
1967    * expanded views. Note the expanded frames may themselves have multiple
1968    * views. We take the lot.
1969    * 
1970    * @param source
1971    */
1972   public void gatherViews(AlignFrame source)
1973   {
1974     source.viewport.setGatherViewsHere(true);
1975     source.viewport.setExplodedGeometry(source.getBounds());
1976     JInternalFrame[] frames = desktop.getAllFrames();
1977     String viewId = source.viewport.getSequenceSetId();
1978     for (int t = 0; t < frames.length; t++)
1979     {
1980       if (frames[t] instanceof AlignFrame && frames[t] != source)
1981       {
1982         AlignFrame af = (AlignFrame) frames[t];
1983         boolean gatherThis = false;
1984         for (int a = 0; a < af.alignPanels.size(); a++)
1985         {
1986           AlignmentPanel ap = af.alignPanels.get(a);
1987           if (viewId.equals(ap.av.getSequenceSetId()))
1988           {
1989             gatherThis = true;
1990             ap.av.setGatherViewsHere(false);
1991             ap.av.setExplodedGeometry(af.getBounds());
1992             source.addAlignmentPanel(ap, false);
1993           }
1994         }
1995
1996         if (gatherThis)
1997         {
1998           if (af.featureSettings != null)
1999           {
2000             if (source.featureSettings == null)
2001             {
2002               // preserve the feature settings geometry for this frame
2003               source.featureSettings = af.featureSettings;
2004               source.setFeatureSettingsGeometry(
2005                       af.getFeatureSettingsGeometry());
2006             }
2007             else
2008             {
2009               // close it and forget
2010               af.featureSettings.close();
2011             }
2012           }
2013           af.alignPanels.clear();
2014           af.closeMenuItem_actionPerformed(true);
2015         }
2016       }
2017     }
2018
2019   }
2020
2021   public JInternalFrame[] getAllFrames()
2022   {
2023     return desktop.getAllFrames();
2024   }
2025
2026   /**
2027    * Checks the given url to see if it gives a response indicating that the user
2028    * should be informed of a new questionnaire.
2029    * 
2030    * @param url
2031    */
2032   public void checkForQuestionnaire(String url)
2033   {
2034     UserQuestionnaireCheck jvq = new UserQuestionnaireCheck(url);
2035     // javax.swing.SwingUtilities.invokeLater(jvq);
2036     new Thread(jvq).start();
2037   }
2038
2039   public void checkURLLinks()
2040   {
2041     // Thread off the URL link checker
2042     addDialogThread(new Runnable()
2043     {
2044       @Override
2045       public void run()
2046       {
2047         if (Cache.getDefault("CHECKURLLINKS", true))
2048         {
2049           // check what the actual links are - if it's just the default don't
2050           // bother with the warning
2051           List<String> links = Preferences.sequenceUrlLinks
2052                   .getLinksForMenu();
2053
2054           // only need to check links if there is one with a
2055           // SEQUENCE_ID which is not the default EMBL_EBI link
2056           ListIterator<String> li = links.listIterator();
2057           boolean check = false;
2058           List<JLabel> urls = new ArrayList<>();
2059           while (li.hasNext())
2060           {
2061             String link = li.next();
2062             if (link.contains(jalview.util.UrlConstants.SEQUENCE_ID)
2063                     && !UrlConstants.isDefaultString(link))
2064             {
2065               check = true;
2066               int barPos = link.indexOf("|");
2067               String urlMsg = barPos == -1 ? link
2068                       : link.substring(0, barPos) + ": "
2069                               + link.substring(barPos + 1);
2070               urls.add(new JLabel(urlMsg));
2071             }
2072           }
2073           if (!check)
2074           {
2075             return;
2076           }
2077
2078           // ask user to check in case URL links use old style tokens
2079           // ($SEQUENCE_ID$ for sequence id _or_ accession id)
2080           JPanel msgPanel = new JPanel();
2081           msgPanel.setLayout(new BoxLayout(msgPanel, BoxLayout.PAGE_AXIS));
2082           msgPanel.add(Box.createVerticalGlue());
2083           JLabel msg = new JLabel(MessageManager
2084                   .getString("label.SEQUENCE_ID_for_DB_ACCESSION1"));
2085           JLabel msg2 = new JLabel(MessageManager
2086                   .getString("label.SEQUENCE_ID_for_DB_ACCESSION2"));
2087           msgPanel.add(msg);
2088           for (JLabel url : urls)
2089           {
2090             msgPanel.add(url);
2091           }
2092           msgPanel.add(msg2);
2093
2094           final JCheckBox jcb = new JCheckBox(
2095                   MessageManager.getString("label.do_not_display_again"));
2096           jcb.addActionListener(new ActionListener()
2097           {
2098             @Override
2099             public void actionPerformed(ActionEvent e)
2100             {
2101               // update Cache settings for "don't show this again"
2102               boolean showWarningAgain = !jcb.isSelected();
2103               Cache.setProperty("CHECKURLLINKS",
2104                       Boolean.valueOf(showWarningAgain).toString());
2105             }
2106           });
2107           msgPanel.add(jcb);
2108
2109           JvOptionPane.showMessageDialog(Desktop.desktop, msgPanel,
2110                   MessageManager
2111                           .getString("label.SEQUENCE_ID_no_longer_used"),
2112                   JvOptionPane.WARNING_MESSAGE);
2113         }
2114       }
2115     });
2116   }
2117
2118   /**
2119    * Proxy class for JDesktopPane which optionally displays the current memory
2120    * usage and highlights the desktop area with a red bar if free memory runs
2121    * low.
2122    * 
2123    * @author AMW
2124    */
2125   public class MyDesktopPane extends JDesktopPane implements Runnable
2126   {
2127
2128     private static final float ONE_MB = 1048576f;
2129
2130     boolean showMemoryUsage = false;
2131
2132     Runtime runtime;
2133
2134     java.text.NumberFormat df;
2135
2136     float maxMemory, allocatedMemory, freeMemory, totalFreeMemory,
2137             percentUsage;
2138
2139     public MyDesktopPane(boolean showMemoryUsage)
2140     {
2141       showMemoryUsage(showMemoryUsage);
2142     }
2143
2144     public void showMemoryUsage(boolean showMemory)
2145     {
2146       this.showMemoryUsage = showMemory;
2147       if (showMemory)
2148       {
2149         Thread worker = new Thread(this);
2150         worker.start();
2151       }
2152       repaint();
2153     }
2154
2155     public boolean isShowMemoryUsage()
2156     {
2157       return showMemoryUsage;
2158     }
2159
2160     @Override
2161     public void run()
2162     {
2163       df = java.text.NumberFormat.getNumberInstance();
2164       df.setMaximumFractionDigits(2);
2165       runtime = Runtime.getRuntime();
2166
2167       while (showMemoryUsage)
2168       {
2169         try
2170         {
2171           maxMemory = runtime.maxMemory() / ONE_MB;
2172           allocatedMemory = runtime.totalMemory() / ONE_MB;
2173           freeMemory = runtime.freeMemory() / ONE_MB;
2174           totalFreeMemory = freeMemory + (maxMemory - allocatedMemory);
2175
2176           percentUsage = (totalFreeMemory / maxMemory) * 100;
2177
2178           // if (percentUsage < 20)
2179           {
2180             // border1 = BorderFactory.createMatteBorder(12, 12, 12, 12,
2181             // Color.red);
2182             // instance.set.setBorder(border1);
2183           }
2184           repaint();
2185           // sleep after showing usage
2186           Thread.sleep(3000);
2187         } catch (Exception ex)
2188         {
2189           ex.printStackTrace();
2190         }
2191       }
2192     }
2193
2194     @Override
2195     public void paintComponent(Graphics g)
2196     {
2197       if (showMemoryUsage && g != null && df != null)
2198       {
2199         if (percentUsage < 20)
2200         {
2201           g.setColor(Color.red);
2202         }
2203         FontMetrics fm = g.getFontMetrics();
2204         if (fm != null)
2205         {
2206           g.drawString(MessageManager.formatMessage("label.memory_stats",
2207                   new Object[]
2208                   { df.format(totalFreeMemory), df.format(maxMemory),
2209                       df.format(percentUsage) }),
2210                   10, getHeight() - fm.getHeight());
2211         }
2212       }
2213     }
2214   }
2215
2216   /**
2217    * Accessor method to quickly get all the AlignmentFrames loaded.
2218    * 
2219    * @return an array of AlignFrame, or null if none found
2220    */
2221   public static AlignFrame[] getAlignFrames()
2222   {
2223     if (Jalview.isHeadlessMode())
2224     {
2225       // Desktop.desktop is null in headless mode
2226       return new AlignFrame[] { Jalview.currentAlignFrame };
2227     }
2228
2229     JInternalFrame[] frames = Desktop.desktop.getAllFrames();
2230
2231     if (frames == null)
2232     {
2233       return null;
2234     }
2235     List<AlignFrame> avp = new ArrayList<>();
2236     // REVERSE ORDER
2237     for (int i = frames.length - 1; i > -1; i--)
2238     {
2239       if (frames[i] instanceof AlignFrame)
2240       {
2241         avp.add((AlignFrame) frames[i]);
2242       }
2243       else if (frames[i] instanceof SplitFrame)
2244       {
2245         /*
2246          * Also check for a split frame containing an AlignFrame
2247          */
2248         GSplitFrame sf = (GSplitFrame) frames[i];
2249         if (sf.getTopFrame() instanceof AlignFrame)
2250         {
2251           avp.add((AlignFrame) sf.getTopFrame());
2252         }
2253         if (sf.getBottomFrame() instanceof AlignFrame)
2254         {
2255           avp.add((AlignFrame) sf.getBottomFrame());
2256         }
2257       }
2258     }
2259     if (avp.size() == 0)
2260     {
2261       return null;
2262     }
2263     AlignFrame afs[] = avp.toArray(new AlignFrame[avp.size()]);
2264     return afs;
2265   }
2266
2267   /**
2268    * Returns an array of any AppJmol frames in the Desktop (or null if none).
2269    * 
2270    * @return
2271    */
2272   public GStructureViewer[] getJmols()
2273   {
2274     JInternalFrame[] frames = Desktop.desktop.getAllFrames();
2275
2276     if (frames == null)
2277     {
2278       return null;
2279     }
2280     List<GStructureViewer> avp = new ArrayList<>();
2281     // REVERSE ORDER
2282     for (int i = frames.length - 1; i > -1; i--)
2283     {
2284       if (frames[i] instanceof AppJmol)
2285       {
2286         GStructureViewer af = (GStructureViewer) frames[i];
2287         avp.add(af);
2288       }
2289     }
2290     if (avp.size() == 0)
2291     {
2292       return null;
2293     }
2294     GStructureViewer afs[] = avp.toArray(new GStructureViewer[avp.size()]);
2295     return afs;
2296   }
2297
2298   /**
2299    * Add Groovy Support to Jalview
2300    */
2301   @Override
2302   public void groovyShell_actionPerformed()
2303   {
2304     try
2305     {
2306       openGroovyConsole();
2307     } catch (Exception ex)
2308     {
2309       jalview.bin.Cache.log.error("Groovy Shell Creation failed.", ex);
2310       JvOptionPane.showInternalMessageDialog(Desktop.desktop,
2311
2312               MessageManager.getString("label.couldnt_create_groovy_shell"),
2313               MessageManager.getString("label.groovy_support_failed"),
2314               JvOptionPane.ERROR_MESSAGE);
2315     }
2316   }
2317
2318   /**
2319    * Open the Groovy console
2320    */
2321   void openGroovyConsole()
2322   {
2323     if (groovyConsole == null)
2324     {
2325       groovyConsole = new groovy.ui.Console();
2326       groovyConsole.setVariable("Jalview", this);
2327       groovyConsole.run();
2328
2329       /*
2330        * We allow only one console at a time, so that AlignFrame menu option
2331        * 'Calculate | Run Groovy script' is unambiguous.
2332        * Disable 'Groovy Console', and enable 'Run script', when the console is 
2333        * opened, and the reverse when it is closed
2334        */
2335       Window window = (Window) groovyConsole.getFrame();
2336       window.addWindowListener(new WindowAdapter()
2337       {
2338         @Override
2339         public void windowClosed(WindowEvent e)
2340         {
2341           /*
2342            * rebind CMD-Q from Groovy Console to Jalview Quit
2343            */
2344           addQuitHandler();
2345           enableExecuteGroovy(false);
2346         }
2347       });
2348     }
2349
2350     /*
2351      * show Groovy console window (after close and reopen)
2352      */
2353     ((Window) groovyConsole.getFrame()).setVisible(true);
2354
2355     /*
2356      * if we got this far, enable 'Run Groovy' in AlignFrame menus
2357      * and disable opening a second console
2358      */
2359     enableExecuteGroovy(true);
2360   }
2361
2362   /**
2363    * Bind Ctrl/Cmd-Q to Quit - for reset as Groovy Console takes over this
2364    * binding when opened
2365    */
2366   protected void addQuitHandler()
2367   {
2368     getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW)
2369             .put(KeyStroke.getKeyStroke(KeyEvent.VK_Q,
2370                     jalview.util.ShortcutKeyMaskExWrapper.getMenuShortcutKeyMaskEx()),
2371                     "Quit");
2372     getRootPane().getActionMap().put("Quit", new AbstractAction()
2373     {
2374       @Override
2375       public void actionPerformed(ActionEvent e)
2376       {
2377         quit();
2378       }
2379     });
2380   }
2381
2382   /**
2383    * Enable or disable 'Run Groovy script' in AlignFrame calculate menus
2384    * 
2385    * @param enabled
2386    *          true if Groovy console is open
2387    */
2388   public void enableExecuteGroovy(boolean enabled)
2389   {
2390     /*
2391      * disable opening a second Groovy console
2392      * (or re-enable when the console is closed)
2393      */
2394     groovyShell.setEnabled(!enabled);
2395
2396     AlignFrame[] alignFrames = getAlignFrames();
2397     if (alignFrames != null)
2398     {
2399       for (AlignFrame af : alignFrames)
2400       {
2401         af.setGroovyEnabled(enabled);
2402       }
2403     }
2404   }
2405
2406   /**
2407    * Progress bars managed by the IProgressIndicator method.
2408    */
2409   private Hashtable<Long, JPanel> progressBars;
2410
2411   private Hashtable<Long, IProgressIndicatorHandler> progressBarHandlers;
2412
2413   /*
2414    * (non-Javadoc)
2415    * 
2416    * @see jalview.gui.IProgressIndicator#setProgressBar(java.lang.String, long)
2417    */
2418   @Override
2419   public void setProgressBar(String message, long id)
2420   {
2421     if (progressBars == null)
2422     {
2423       progressBars = new Hashtable<>();
2424       progressBarHandlers = new Hashtable<>();
2425     }
2426
2427     if (progressBars.get(Long.valueOf(id)) != null)
2428     {
2429       JPanel panel = progressBars.remove(Long.valueOf(id));
2430       if (progressBarHandlers.contains(Long.valueOf(id)))
2431       {
2432         progressBarHandlers.remove(Long.valueOf(id));
2433       }
2434       removeProgressPanel(panel);
2435     }
2436     else
2437     {
2438       progressBars.put(Long.valueOf(id), addProgressPanel(message));
2439     }
2440   }
2441
2442   /*
2443    * (non-Javadoc)
2444    * 
2445    * @see jalview.gui.IProgressIndicator#registerHandler(long,
2446    * jalview.gui.IProgressIndicatorHandler)
2447    */
2448   @Override
2449   public void registerHandler(final long id,
2450           final IProgressIndicatorHandler handler)
2451   {
2452     if (progressBarHandlers == null
2453             || !progressBars.containsKey(Long.valueOf(id)))
2454     {
2455       throw new Error(MessageManager.getString(
2456               "error.call_setprogressbar_before_registering_handler"));
2457     }
2458     progressBarHandlers.put(Long.valueOf(id), handler);
2459     final JPanel progressPanel = progressBars.get(Long.valueOf(id));
2460     if (handler.canCancel())
2461     {
2462       JButton cancel = new JButton(
2463               MessageManager.getString("action.cancel"));
2464       final IProgressIndicator us = this;
2465       cancel.addActionListener(new ActionListener()
2466       {
2467
2468         @Override
2469         public void actionPerformed(ActionEvent e)
2470         {
2471           handler.cancelActivity(id);
2472           us.setProgressBar(MessageManager
2473                   .formatMessage("label.cancelled_params", new Object[]
2474                   { ((JLabel) progressPanel.getComponent(0)).getText() }),
2475                   id);
2476         }
2477       });
2478       progressPanel.add(cancel, BorderLayout.EAST);
2479     }
2480   }
2481
2482   /**
2483    * 
2484    * @return true if any progress bars are still active
2485    */
2486   @Override
2487   public boolean operationInProgress()
2488   {
2489     if (progressBars != null && progressBars.size() > 0)
2490     {
2491       return true;
2492     }
2493     return false;
2494   }
2495
2496   /**
2497    * This will return the first AlignFrame holding the given viewport instance.
2498    * It will break if there are more than one AlignFrames viewing a particular
2499    * av.
2500    * 
2501    * @param viewport
2502    * @return alignFrame for viewport
2503    */
2504   public static AlignFrame getAlignFrameFor(AlignViewportI viewport)
2505   {
2506     if (desktop != null)
2507     {
2508       AlignmentPanel[] aps = getAlignmentPanels(
2509               viewport.getSequenceSetId());
2510       for (int panel = 0; aps != null && panel < aps.length; panel++)
2511       {
2512         if (aps[panel] != null && aps[panel].av == viewport)
2513         {
2514           return aps[panel].alignFrame;
2515         }
2516       }
2517     }
2518     return null;
2519   }
2520
2521   public VamsasApplication getVamsasApplication()
2522   {
2523     // TODO: JAL-3311 remove remaining code from Jalview relating to VAMSAS
2524     return null;
2525
2526   }
2527
2528   /**
2529    * flag set if jalview GUI is being operated programmatically
2530    */
2531   private boolean inBatchMode = false;
2532
2533   /**
2534    * check if jalview GUI is being operated programmatically
2535    * 
2536    * @return inBatchMode
2537    */
2538   public boolean isInBatchMode()
2539   {
2540     return inBatchMode;
2541   }
2542
2543   /**
2544    * set flag if jalview GUI is being operated programmatically
2545    * 
2546    * @param inBatchMode
2547    */
2548   public void setInBatchMode(boolean inBatchMode)
2549   {
2550     this.inBatchMode = inBatchMode;
2551   }
2552
2553   public void startServiceDiscovery()
2554   {
2555     startServiceDiscovery(false);
2556   }
2557
2558   public void startServiceDiscovery(boolean blocking)
2559   {
2560     boolean alive = true;
2561     Thread t0 = null, t1 = null, t2 = null;
2562     // JAL-940 - JALVIEW 1 services are now being EOLed as of JABA 2.1 release
2563     if (true)
2564     {
2565       // todo: changesupport handlers need to be transferred
2566       if (discoverer == null)
2567       {
2568         discoverer = new jalview.ws.jws1.Discoverer();
2569         // register PCS handler for desktop.
2570         discoverer.addPropertyChangeListener(changeSupport);
2571       }
2572       // JAL-940 - disabled JWS1 service configuration - always start discoverer
2573       // until we phase out completely
2574       (t0 = new Thread(discoverer)).start();
2575     }
2576
2577     if (Cache.getDefault("SHOW_JWS2_SERVICES", true))
2578     {
2579       t2 = jalview.ws.jws2.Jws2Discoverer.getDiscoverer()
2580               .startDiscoverer(changeSupport);
2581     }
2582     Thread t3 = null;
2583     {
2584       // TODO: do rest service discovery
2585     }
2586     if (blocking)
2587     {
2588       while (alive)
2589       {
2590         try
2591         {
2592           Thread.sleep(15);
2593         } catch (Exception e)
2594         {
2595         }
2596         alive = (t1 != null && t1.isAlive()) || (t2 != null && t2.isAlive())
2597                 || (t3 != null && t3.isAlive())
2598                 || (t0 != null && t0.isAlive());
2599       }
2600     }
2601   }
2602
2603   /**
2604    * called to check if the service discovery process completed successfully.
2605    * 
2606    * @param evt
2607    */
2608   protected void JalviewServicesChanged(PropertyChangeEvent evt)
2609   {
2610     if (evt.getNewValue() == null || evt.getNewValue() instanceof Vector)
2611     {
2612       final String ermsg = jalview.ws.jws2.Jws2Discoverer.getDiscoverer()
2613               .getErrorMessages();
2614       if (ermsg != null)
2615       {
2616         if (Cache.getDefault("SHOW_WSDISCOVERY_ERRORS", true))
2617         {
2618           if (serviceChangedDialog == null)
2619           {
2620             // only run if we aren't already displaying one of these.
2621             addDialogThread(serviceChangedDialog = new Runnable()
2622             {
2623               @Override
2624               public void run()
2625               {
2626
2627                 /*
2628                  * JalviewDialog jd =new JalviewDialog() {
2629                  * 
2630                  * @Override protected void cancelPressed() { // TODO
2631                  * Auto-generated method stub
2632                  * 
2633                  * }@Override protected void okPressed() { // TODO
2634                  * Auto-generated method stub
2635                  * 
2636                  * }@Override protected void raiseClosed() { // TODO
2637                  * Auto-generated method stub
2638                  * 
2639                  * } }; jd.initDialogFrame(new
2640                  * JLabel("<html><table width=\"450\"><tr><td>" + ermsg +
2641                  * "<br/>It may be that you have invalid JABA URLs in your web service preferences,"
2642                  * + " or mis-configured HTTP proxy settings.<br/>" +
2643                  * "Check the <em>Connections</em> and <em>Web services</em> tab of the"
2644                  * +
2645                  * " Tools->Preferences dialog box to change them.</td></tr></table></html>"
2646                  * ), true, true, "Web Service Configuration Problem", 450,
2647                  * 400);
2648                  * 
2649                  * jd.waitForInput();
2650                  */
2651                 JvOptionPane.showConfirmDialog(Desktop.desktop,
2652                         new JLabel("<html><table width=\"450\"><tr><td>"
2653                                 + ermsg + "</td></tr></table>"
2654                                 + "<p>It may be that you have invalid JABA URLs<br/>in your web service preferences,"
2655                                 + "<br>or as a command-line argument, or mis-configured HTTP proxy settings.</p>"
2656                                 + "<p>Check the <em>Connections</em> and <em>Web services</em> tab<br/>of the"
2657                                 + " Tools->Preferences dialog box to change them.</p></html>"),
2658                         "Web Service Configuration Problem",
2659                         JvOptionPane.DEFAULT_OPTION,
2660                         JvOptionPane.ERROR_MESSAGE);
2661                 serviceChangedDialog = null;
2662
2663               }
2664             });
2665           }
2666         }
2667         else
2668         {
2669           Cache.log.error(
2670                   "Errors reported by JABA discovery service. Check web services preferences.\n"
2671                           + ermsg);
2672         }
2673       }
2674     }
2675   }
2676
2677   private Runnable serviceChangedDialog = null;
2678
2679   /**
2680    * start a thread to open a URL in the configured browser. Pops up a warning
2681    * dialog to the user if there is an exception when calling out to the browser
2682    * to open the URL.
2683    * 
2684    * @param url
2685    */
2686   public static void showUrl(final String url)
2687   {
2688     showUrl(url, Desktop.instance);
2689   }
2690
2691   /**
2692    * Like showUrl but allows progress handler to be specified
2693    * 
2694    * @param url
2695    * @param progress
2696    *          (null) or object implementing IProgressIndicator
2697    */
2698   public static void showUrl(final String url,
2699           final IProgressIndicator progress)
2700   {
2701     new Thread(new Runnable()
2702     {
2703       @Override
2704       public void run()
2705       {
2706         try
2707         {
2708           if (progress != null)
2709           {
2710             progress.setProgressBar(MessageManager
2711                     .formatMessage("status.opening_params", new Object[]
2712                     { url }), this.hashCode());
2713           }
2714           jalview.util.BrowserLauncher.openURL(url);
2715         } catch (Exception ex)
2716         {
2717           JvOptionPane.showInternalMessageDialog(Desktop.desktop,
2718                   MessageManager
2719                           .getString("label.web_browser_not_found_unix"),
2720                   MessageManager.getString("label.web_browser_not_found"),
2721                   JvOptionPane.WARNING_MESSAGE);
2722
2723           ex.printStackTrace();
2724         }
2725         if (progress != null)
2726         {
2727           progress.setProgressBar(null, this.hashCode());
2728         }
2729       }
2730     }).start();
2731   }
2732
2733   public static WsParamSetManager wsparamManager = null;
2734
2735   public static ParamManager getUserParameterStore()
2736   {
2737     if (wsparamManager == null)
2738     {
2739       wsparamManager = new WsParamSetManager();
2740     }
2741     return wsparamManager;
2742   }
2743
2744   /**
2745    * static hyperlink handler proxy method for use by Jalview's internal windows
2746    * 
2747    * @param e
2748    */
2749   public static void hyperlinkUpdate(HyperlinkEvent e)
2750   {
2751     if (e.getEventType() == EventType.ACTIVATED)
2752     {
2753       String url = null;
2754       try
2755       {
2756         url = e.getURL().toString();
2757         Desktop.showUrl(url);
2758       } catch (Exception x)
2759       {
2760         if (url != null)
2761         {
2762           if (Cache.log != null)
2763           {
2764             Cache.log.error("Couldn't handle string " + url + " as a URL.");
2765           }
2766           else
2767           {
2768             System.err.println(
2769                     "Couldn't handle string " + url + " as a URL.");
2770           }
2771         }
2772         // ignore any exceptions due to dud links.
2773       }
2774
2775     }
2776   }
2777
2778   /**
2779    * single thread that handles display of dialogs to user.
2780    */
2781   ExecutorService dialogExecutor = Executors.newSingleThreadExecutor();
2782
2783   /**
2784    * flag indicating if dialogExecutor should try to acquire a permit
2785    */
2786   private volatile boolean dialogPause = true;
2787
2788   /**
2789    * pause the queue
2790    */
2791   private java.util.concurrent.Semaphore block = new Semaphore(0);
2792
2793   private static groovy.ui.Console groovyConsole;
2794
2795   /**
2796    * add another dialog thread to the queue
2797    * 
2798    * @param prompter
2799    */
2800   public void addDialogThread(final Runnable prompter)
2801   {
2802     dialogExecutor.submit(new Runnable()
2803     {
2804       @Override
2805       public void run()
2806       {
2807         if (dialogPause)
2808         {
2809           try
2810           {
2811             block.acquire();
2812           } catch (InterruptedException x)
2813           {
2814           }
2815           ;
2816         }
2817         if (instance == null)
2818         {
2819           return;
2820         }
2821         try
2822         {
2823           SwingUtilities.invokeAndWait(prompter);
2824         } catch (Exception q)
2825         {
2826           Cache.log.warn("Unexpected Exception in dialog thread.", q);
2827         }
2828       }
2829     });
2830   }
2831
2832   public void startDialogQueue()
2833   {
2834     // set the flag so we don't pause waiting for another permit and semaphore
2835     // the current task to begin
2836     dialogPause = false;
2837     block.release();
2838   }
2839
2840   @Override
2841   protected void snapShotWindow_actionPerformed(ActionEvent e)
2842   {
2843     invalidate();
2844     File of;
2845     ImageMaker im = new jalview.util.ImageMaker(
2846             this, ImageMaker.TYPE.EPS, "View of Desktop", getWidth(),
2847             getHeight(), of = new File("Jalview_snapshot"
2848                     + System.currentTimeMillis() + ".eps"),
2849             "View of desktop", null, 0, false);
2850     try
2851     {
2852       paintAll(im.getGraphics());
2853       im.writeImage();
2854     } catch (Exception q)
2855     {
2856       Cache.log.error("Couldn't write snapshot to " + of.getAbsolutePath(),
2857               q);
2858       return;
2859     }
2860     Cache.log.info("Successfully written snapshot to file "
2861             + of.getAbsolutePath());
2862   }
2863
2864   /**
2865    * Explode the views in the given SplitFrame into separate SplitFrame windows.
2866    * This respects (remembers) any previous 'exploded geometry' i.e. the size
2867    * and location last time the view was expanded (if any). However it does not
2868    * remember the split pane divider location - this is set to match the
2869    * 'exploding' frame.
2870    * 
2871    * @param sf
2872    */
2873   public void explodeViews(SplitFrame sf)
2874   {
2875     AlignFrame oldTopFrame = (AlignFrame) sf.getTopFrame();
2876     AlignFrame oldBottomFrame = (AlignFrame) sf.getBottomFrame();
2877     List<? extends AlignmentViewPanel> topPanels = oldTopFrame
2878             .getAlignPanels();
2879     List<? extends AlignmentViewPanel> bottomPanels = oldBottomFrame
2880             .getAlignPanels();
2881     int viewCount = topPanels.size();
2882     if (viewCount < 2)
2883     {
2884       return;
2885     }
2886
2887     /*
2888      * Processing in reverse order works, forwards order leaves the first panels
2889      * not visible. I don't know why!
2890      */
2891     for (int i = viewCount - 1; i >= 0; i--)
2892     {
2893       /*
2894        * Make new top and bottom frames. These take over the respective
2895        * AlignmentPanel objects, including their AlignmentViewports, so the
2896        * cdna/protein relationships between the viewports is carried over to the
2897        * new split frames.
2898        * 
2899        * explodedGeometry holds the (x, y) position of the previously exploded
2900        * SplitFrame, and the (width, height) of the AlignFrame component
2901        */
2902       AlignmentPanel topPanel = (AlignmentPanel) topPanels.get(i);
2903       AlignFrame newTopFrame = new AlignFrame(topPanel);
2904       newTopFrame.setSize(oldTopFrame.getSize());
2905       newTopFrame.setVisible(true);
2906       Rectangle geometry = ((AlignViewport) topPanel.getAlignViewport())
2907               .getExplodedGeometry();
2908       if (geometry != null)
2909       {
2910         newTopFrame.setSize(geometry.getSize());
2911       }
2912
2913       AlignmentPanel bottomPanel = (AlignmentPanel) bottomPanels.get(i);
2914       AlignFrame newBottomFrame = new AlignFrame(bottomPanel);
2915       newBottomFrame.setSize(oldBottomFrame.getSize());
2916       newBottomFrame.setVisible(true);
2917       geometry = ((AlignViewport) bottomPanel.getAlignViewport())
2918               .getExplodedGeometry();
2919       if (geometry != null)
2920       {
2921         newBottomFrame.setSize(geometry.getSize());
2922       }
2923
2924       topPanel.av.setGatherViewsHere(false);
2925       bottomPanel.av.setGatherViewsHere(false);
2926       JInternalFrame splitFrame = new SplitFrame(newTopFrame,
2927               newBottomFrame);
2928       if (geometry != null)
2929       {
2930         splitFrame.setLocation(geometry.getLocation());
2931       }
2932       Desktop.addInternalFrame(splitFrame, sf.getTitle(), -1, -1);
2933     }
2934
2935     /*
2936      * Clear references to the panels (now relocated in the new SplitFrames)
2937      * before closing the old SplitFrame.
2938      */
2939     topPanels.clear();
2940     bottomPanels.clear();
2941     sf.close();
2942   }
2943
2944   /**
2945    * Gather expanded split frames, sharing the same pairs of sequence set ids,
2946    * back into the given SplitFrame as additional views. Note that the gathered
2947    * frames may themselves have multiple views.
2948    * 
2949    * @param source
2950    */
2951   public void gatherViews(GSplitFrame source)
2952   {
2953     /*
2954      * special handling of explodedGeometry for a view within a SplitFrame: - it
2955      * holds the (x, y) position of the enclosing SplitFrame, and the (width,
2956      * height) of the AlignFrame component
2957      */
2958     AlignFrame myTopFrame = (AlignFrame) source.getTopFrame();
2959     AlignFrame myBottomFrame = (AlignFrame) source.getBottomFrame();
2960     myTopFrame.viewport.setExplodedGeometry(new Rectangle(source.getX(),
2961             source.getY(), myTopFrame.getWidth(), myTopFrame.getHeight()));
2962     myBottomFrame.viewport
2963             .setExplodedGeometry(new Rectangle(source.getX(), source.getY(),
2964                     myBottomFrame.getWidth(), myBottomFrame.getHeight()));
2965     myTopFrame.viewport.setGatherViewsHere(true);
2966     myBottomFrame.viewport.setGatherViewsHere(true);
2967     String topViewId = myTopFrame.viewport.getSequenceSetId();
2968     String bottomViewId = myBottomFrame.viewport.getSequenceSetId();
2969
2970     JInternalFrame[] frames = desktop.getAllFrames();
2971     for (JInternalFrame frame : frames)
2972     {
2973       if (frame instanceof SplitFrame && frame != source)
2974       {
2975         SplitFrame sf = (SplitFrame) frame;
2976         AlignFrame topFrame = (AlignFrame) sf.getTopFrame();
2977         AlignFrame bottomFrame = (AlignFrame) sf.getBottomFrame();
2978         boolean gatherThis = false;
2979         for (int a = 0; a < topFrame.alignPanels.size(); a++)
2980         {
2981           AlignmentPanel topPanel = topFrame.alignPanels.get(a);
2982           AlignmentPanel bottomPanel = bottomFrame.alignPanels.get(a);
2983           if (topViewId.equals(topPanel.av.getSequenceSetId())
2984                   && bottomViewId.equals(bottomPanel.av.getSequenceSetId()))
2985           {
2986             gatherThis = true;
2987             topPanel.av.setGatherViewsHere(false);
2988             bottomPanel.av.setGatherViewsHere(false);
2989             topPanel.av.setExplodedGeometry(
2990                     new Rectangle(sf.getLocation(), topFrame.getSize()));
2991             bottomPanel.av.setExplodedGeometry(
2992                     new Rectangle(sf.getLocation(), bottomFrame.getSize()));
2993             myTopFrame.addAlignmentPanel(topPanel, false);
2994             myBottomFrame.addAlignmentPanel(bottomPanel, false);
2995           }
2996         }
2997
2998         if (gatherThis)
2999         {
3000           topFrame.getAlignPanels().clear();
3001           bottomFrame.getAlignPanels().clear();
3002           sf.close();
3003         }
3004       }
3005     }
3006
3007     /*
3008      * The dust settles...give focus to the tab we did this from.
3009      */
3010     myTopFrame.setDisplayedView(myTopFrame.alignPanel);
3011   }
3012
3013   public static groovy.ui.Console getGroovyConsole()
3014   {
3015     return groovyConsole;
3016   }
3017
3018   /**
3019    * handles the payload of a drag and drop event.
3020    * 
3021    * TODO refactor to desktop utilities class
3022    * 
3023    * @param files
3024    *          - Data source strings extracted from the drop event
3025    * @param protocols
3026    *          - protocol for each data source extracted from the drop event
3027    * @param evt
3028    *          - the drop event
3029    * @param t
3030    *          - the payload from the drop event
3031    * @throws Exception
3032    */
3033   public static void transferFromDropTarget(List<String> files,
3034           List<DataSourceType> protocols, DropTargetDropEvent evt,
3035           Transferable t) throws Exception
3036   {
3037
3038     DataFlavor uriListFlavor = new DataFlavor(
3039             "text/uri-list;class=java.lang.String"), urlFlavour = null;
3040     try
3041     {
3042       urlFlavour = new DataFlavor(
3043               "application/x-java-url; class=java.net.URL");
3044     } catch (ClassNotFoundException cfe)
3045     {
3046       Cache.log.debug("Couldn't instantiate the URL dataflavor.", cfe);
3047     }
3048
3049     if (urlFlavour != null && t.isDataFlavorSupported(urlFlavour))
3050     {
3051
3052       try
3053       {
3054         java.net.URL url = (URL) t.getTransferData(urlFlavour);
3055         // nb: java 8 osx bug https://bugs.openjdk.java.net/browse/JDK-8156099
3056         // means url may be null.
3057         if (url != null)
3058         {
3059           protocols.add(DataSourceType.URL);
3060           files.add(url.toString());
3061           Cache.log.debug("Drop handled as URL dataflavor "
3062                   + files.get(files.size() - 1));
3063           return;
3064         }
3065         else
3066         {
3067           if (Platform.isAMac())
3068           {
3069             System.err.println(
3070                     "Please ignore plist error - occurs due to problem with java 8 on OSX");
3071           }
3072           ;
3073         }
3074       } catch (Throwable ex)
3075       {
3076         Cache.log.debug("URL drop handler failed.", ex);
3077       }
3078     }
3079     if (t.isDataFlavorSupported(DataFlavor.javaFileListFlavor))
3080     {
3081       // Works on Windows and MacOSX
3082       Cache.log.debug("Drop handled as javaFileListFlavor");
3083       for (Object file : (List) t
3084               .getTransferData(DataFlavor.javaFileListFlavor))
3085       {
3086         files.add(((File) file).toString());
3087         protocols.add(DataSourceType.FILE);
3088       }
3089     }
3090     else
3091     {
3092       // Unix like behaviour
3093       boolean added = false;
3094       String data = null;
3095       if (t.isDataFlavorSupported(uriListFlavor))
3096       {
3097         Cache.log.debug("Drop handled as uriListFlavor");
3098         // This is used by Unix drag system
3099         data = (String) t.getTransferData(uriListFlavor);
3100       }
3101       if (data == null)
3102       {
3103         // fallback to text: workaround - on OSX where there's a JVM bug
3104         Cache.log.debug("standard URIListFlavor failed. Trying text");
3105         // try text fallback
3106         DataFlavor textDf = new DataFlavor(
3107                 "text/plain;class=java.lang.String");
3108         if (t.isDataFlavorSupported(textDf))
3109         {
3110           data = (String) t.getTransferData(textDf);
3111         }
3112
3113         Cache.log.debug("Plain text drop content returned "
3114                 + (data == null ? "Null - failed" : data));
3115
3116       }
3117       if (data != null)
3118       {
3119         while (protocols.size() < files.size())
3120         {
3121           Cache.log.debug("Adding missing FILE protocol for "
3122                   + files.get(protocols.size()));
3123           protocols.add(DataSourceType.FILE);
3124         }
3125         for (java.util.StringTokenizer st = new java.util.StringTokenizer(
3126                 data, "\r\n"); st.hasMoreTokens();)
3127         {
3128           added = true;
3129           String s = st.nextToken();
3130           if (s.startsWith("#"))
3131           {
3132             // the line is a comment (as per the RFC 2483)
3133             continue;
3134           }
3135           java.net.URI uri = new java.net.URI(s);
3136           if (uri.getScheme().toLowerCase().startsWith("http"))
3137           {
3138             protocols.add(DataSourceType.URL);
3139             files.add(uri.toString());
3140           }
3141           else
3142           {
3143             // otherwise preserve old behaviour: catch all for file objects
3144             java.io.File file = new java.io.File(uri);
3145             protocols.add(DataSourceType.FILE);
3146             files.add(file.toString());
3147           }
3148         }
3149       }
3150
3151       if (Cache.log.isDebugEnabled())
3152       {
3153         if (data == null || !added)
3154         {
3155
3156           if (t.getTransferDataFlavors() != null
3157                   && t.getTransferDataFlavors().length > 0)
3158           {
3159             Cache.log.debug(
3160                     "Couldn't resolve drop data. Here are the supported flavors:");
3161             for (DataFlavor fl : t.getTransferDataFlavors())
3162             {
3163               Cache.log.debug(
3164                       "Supported transfer dataflavor: " + fl.toString());
3165               Object df = t.getTransferData(fl);
3166               if (df != null)
3167               {
3168                 Cache.log.debug("Retrieves: " + df);
3169               }
3170               else
3171               {
3172                 Cache.log.debug("Retrieved nothing");
3173               }
3174             }
3175           }
3176           else
3177           {
3178             Cache.log.debug("Couldn't resolve dataflavor for drop: "
3179                     + t.toString());
3180           }
3181         }
3182       }
3183     }
3184     if (Platform.isWindows())
3185
3186     {
3187       Cache.log.debug("Scanning dropped content for Windows Link Files");
3188
3189       // resolve any .lnk files in the file drop
3190       for (int f = 0; f < files.size(); f++)
3191       {
3192         String source = files.get(f).toLowerCase();
3193         if (protocols.get(f).equals(DataSourceType.FILE)
3194                 && (source.endsWith(".lnk") || source.endsWith(".url")
3195                         || source.endsWith(".site")))
3196         {
3197           try
3198           {
3199             File lf = new File(files.get(f));
3200             // process link file to get a URL
3201             Cache.log.debug("Found potential link file: " + lf);
3202             WindowsShortcut wscfile = new WindowsShortcut(lf);
3203             String fullname = wscfile.getRealFilename();
3204             protocols.set(f, FormatAdapter.checkProtocol(fullname));
3205             files.set(f, fullname);
3206             Cache.log.debug("Parsed real filename " + fullname
3207                     + " to extract protocol: " + protocols.get(f));
3208           } catch (Exception ex)
3209           {
3210             Cache.log.error(
3211                     "Couldn't parse " + files.get(f) + " as a link file.",
3212                     ex);
3213           }
3214         }
3215       }
3216     }
3217   }
3218
3219   /**
3220    * Sets the Preferences property for experimental features to True or False
3221    * depending on the state of the controlling menu item
3222    */
3223   @Override
3224   protected void showExperimental_actionPerformed(boolean selected)
3225   {
3226     Cache.setProperty(EXPERIMENTAL_FEATURES, Boolean.toString(selected));
3227   }
3228
3229   /**
3230    * Answers a (possibly empty) list of any structure viewer frames (currently
3231    * for either Jmol or Chimera) which are currently open. This may optionally
3232    * be restricted to viewers of a specified class, or viewers linked to a
3233    * specified alignment panel.
3234    * 
3235    * @param apanel
3236    *          if not null, only return viewers linked to this panel
3237    * @param structureViewerClass
3238    *          if not null, only return viewers of this class
3239    * @return
3240    */
3241   public List<StructureViewerBase> getStructureViewers(
3242           AlignmentPanel apanel,
3243           Class<? extends StructureViewerBase> structureViewerClass)
3244   {
3245     List<StructureViewerBase> result = new ArrayList<>();
3246     JInternalFrame[] frames = Desktop.instance.getAllFrames();
3247
3248     for (JInternalFrame frame : frames)
3249     {
3250       if (frame instanceof StructureViewerBase)
3251       {
3252         if (structureViewerClass == null
3253                 || structureViewerClass.isInstance(frame))
3254         {
3255           if (apanel == null
3256                   || ((StructureViewerBase) frame).isLinkedWith(apanel))
3257           {
3258             result.add((StructureViewerBase) frame);
3259           }
3260         }
3261       }
3262     }
3263     return result;
3264   }
3265 }