JAL-845 linked protein/dna 'slave' further PoC functionality
[jalview.git] / src / jalview / gui / Desktop.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3  * Copyright (C) 2014 The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.gui;
22
23 import jalview.bin.Cache;
24 import jalview.io.FileLoader;
25 import jalview.io.FormatAdapter;
26 import jalview.io.IdentifyFile;
27 import jalview.io.JalviewFileChooser;
28 import jalview.io.JalviewFileView;
29 import jalview.structure.StructureSelectionManager;
30 import jalview.util.ImageMaker;
31 import jalview.util.MessageManager;
32 import jalview.ws.params.ParamManager;
33
34 import java.awt.BorderLayout;
35 import java.awt.Color;
36 import java.awt.Dimension;
37 import java.awt.FontMetrics;
38 import java.awt.Graphics;
39 import java.awt.GridLayout;
40 import java.awt.Point;
41 import java.awt.Rectangle;
42 import java.awt.Toolkit;
43 import java.awt.datatransfer.Clipboard;
44 import java.awt.datatransfer.ClipboardOwner;
45 import java.awt.datatransfer.DataFlavor;
46 import java.awt.datatransfer.Transferable;
47 import java.awt.dnd.DnDConstants;
48 import java.awt.dnd.DropTargetDragEvent;
49 import java.awt.dnd.DropTargetDropEvent;
50 import java.awt.dnd.DropTargetEvent;
51 import java.awt.dnd.DropTargetListener;
52 import java.awt.event.ActionEvent;
53 import java.awt.event.ActionListener;
54 import java.awt.event.FocusEvent;
55 import java.awt.event.FocusListener;
56 import java.awt.event.MouseAdapter;
57 import java.awt.event.MouseEvent;
58 import java.awt.event.MouseListener;
59 import java.awt.event.WindowAdapter;
60 import java.awt.event.WindowEvent;
61 import java.beans.PropertyChangeEvent;
62 import java.beans.PropertyChangeListener;
63 import java.beans.PropertyVetoException;
64 import java.io.BufferedInputStream;
65 import java.io.File;
66 import java.io.FileOutputStream;
67 import java.lang.reflect.Constructor;
68 import java.net.URL;
69 import java.util.ArrayList;
70 import java.util.Hashtable;
71 import java.util.List;
72 import java.util.StringTokenizer;
73 import java.util.Vector;
74 import java.util.concurrent.ExecutorService;
75 import java.util.concurrent.Executors;
76 import java.util.concurrent.Semaphore;
77
78 import javax.swing.DefaultDesktopManager;
79 import javax.swing.DesktopManager;
80 import javax.swing.JButton;
81 import javax.swing.JComboBox;
82 import javax.swing.JComponent;
83 import javax.swing.JDesktopPane;
84 import javax.swing.JFrame;
85 import javax.swing.JInternalFrame;
86 import javax.swing.JLabel;
87 import javax.swing.JMenuItem;
88 import javax.swing.JOptionPane;
89 import javax.swing.JPanel;
90 import javax.swing.JPopupMenu;
91 import javax.swing.JProgressBar;
92 import javax.swing.SwingUtilities;
93 import javax.swing.event.HyperlinkEvent;
94 import javax.swing.event.HyperlinkEvent.EventType;
95 import javax.swing.event.MenuEvent;
96 import javax.swing.event.MenuListener;
97
98 /**
99  * Jalview Desktop
100  * 
101  * 
102  * @author $author$
103  * @version $Revision: 1.155 $
104  */
105 public class Desktop extends jalview.jbgui.GDesktop implements
106         DropTargetListener, ClipboardOwner, IProgressIndicator,
107         jalview.api.StructureSelectionManagerProvider
108 {
109
110   private JalviewChangeSupport changeSupport = new JalviewChangeSupport();
111
112   /**
113    * news reader - null if it was never started.
114    */
115   private BlogReader jvnews = null;
116
117   /**
118    * @param listener
119    * @see jalview.gui.JalviewChangeSupport#addJalviewPropertyChangeListener(java.beans.PropertyChangeListener)
120    */
121   public void addJalviewPropertyChangeListener(
122           PropertyChangeListener listener)
123   {
124     changeSupport.addJalviewPropertyChangeListener(listener);
125   }
126
127   /**
128    * @param propertyName
129    * @param listener
130    * @see jalview.gui.JalviewChangeSupport#addJalviewPropertyChangeListener(java.lang.String,
131    *      java.beans.PropertyChangeListener)
132    */
133   public void addJalviewPropertyChangeListener(String propertyName,
134           PropertyChangeListener listener)
135   {
136     changeSupport.addJalviewPropertyChangeListener(propertyName, listener);
137   }
138
139   /**
140    * @param propertyName
141    * @param listener
142    * @see jalview.gui.JalviewChangeSupport#removeJalviewPropertyChangeListener(java.lang.String,
143    *      java.beans.PropertyChangeListener)
144    */
145   public void removeJalviewPropertyChangeListener(String propertyName,
146           PropertyChangeListener listener)
147   {
148     changeSupport.removeJalviewPropertyChangeListener(propertyName,
149             listener);
150   }
151
152   /** Singleton Desktop instance */
153   public static Desktop instance;
154
155   public static MyDesktopPane desktop;
156
157   static int openFrameCount = 0;
158
159   static final int xOffset = 30;
160
161   static final int yOffset = 30;
162
163   private static final int THREE = 3;
164
165   public static jalview.ws.jws1.Discoverer discoverer;
166
167   public static Object[] jalviewClipboard;
168
169   public static boolean internalCopy = false;
170
171   static int fileLoadingCount = 0;
172
173   class MyDesktopManager implements DesktopManager
174   {
175
176     private DesktopManager delegate;
177
178     public MyDesktopManager(DesktopManager delegate)
179     {
180       this.delegate = delegate;
181     }
182
183     public void activateFrame(JInternalFrame f)
184     {
185       try
186       {
187         delegate.activateFrame(f);
188       } catch (NullPointerException npe)
189       {
190         Point p = getMousePosition();
191         instance.showPasteMenu(p.x, p.y);
192       }
193     }
194
195     public void beginDraggingFrame(JComponent f)
196     {
197       delegate.beginDraggingFrame(f);
198     }
199
200     public void beginResizingFrame(JComponent f, int direction)
201     {
202       delegate.beginResizingFrame(f, direction);
203     }
204
205     public void closeFrame(JInternalFrame f)
206     {
207       delegate.closeFrame(f);
208     }
209
210     public void deactivateFrame(JInternalFrame f)
211     {
212       delegate.deactivateFrame(f);
213     }
214
215     public void deiconifyFrame(JInternalFrame f)
216     {
217       delegate.deiconifyFrame(f);
218     }
219
220     public void dragFrame(JComponent f, int newX, int newY)
221     {
222       if (newY < 0)
223       {
224         newY = 0;
225       }
226       delegate.dragFrame(f, newX, newY);
227     }
228
229     public void endDraggingFrame(JComponent f)
230     {
231       delegate.endDraggingFrame(f);
232     }
233
234     public void endResizingFrame(JComponent f)
235     {
236       delegate.endResizingFrame(f);
237     }
238
239     public void iconifyFrame(JInternalFrame f)
240     {
241       delegate.iconifyFrame(f);
242     }
243
244     public void maximizeFrame(JInternalFrame f)
245     {
246       delegate.maximizeFrame(f);
247     }
248
249     public void minimizeFrame(JInternalFrame f)
250     {
251       delegate.minimizeFrame(f);
252     }
253
254     public void openFrame(JInternalFrame f)
255     {
256       delegate.openFrame(f);
257     }
258
259     public void resizeFrame(JComponent f, int newX, int newY, int newWidth,
260             int newHeight)
261     {
262       Rectangle b = desktop.getBounds();
263       if (newY < 0)
264       {
265         newY = 0;
266       }
267       delegate.resizeFrame(f, newX, newY, newWidth, newHeight);
268     }
269
270     public void setBoundsForFrame(JComponent f, int newX, int newY,
271             int newWidth, int newHeight)
272     {
273       delegate.setBoundsForFrame(f, newX, newY, newWidth, newHeight);
274     }
275
276     // All other methods, simply delegate
277
278   }
279
280   /**
281    * Creates a new Desktop object.
282    */
283   public Desktop()
284   {
285     /**
286      * A note to implementors. It is ESSENTIAL that any activities that might
287      * block are spawned off as threads rather than waited for during this
288      * constructor.
289      */
290     instance = this;
291     doVamsasClientCheck();
292     doGroovyCheck();
293     doConfigureStructurePrefs();
294     setTitle("Jalview " + jalview.bin.Cache.getProperty("VERSION"));
295     setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
296     boolean selmemusage = jalview.bin.Cache.getDefault("SHOW_MEMUSAGE",
297             false);
298     boolean showjconsole = jalview.bin.Cache.getDefault(
299             "SHOW_JAVA_CONSOLE", false);
300     desktop = new MyDesktopPane(selmemusage);
301     showMemusage.setSelected(selmemusage);
302     desktop.setBackground(Color.white);
303     getContentPane().setLayout(new BorderLayout());
304     // alternate config - have scrollbars - see notes in JAL-153
305     // JScrollPane sp = new JScrollPane();
306     // sp.getViewport().setView(desktop);
307     // getContentPane().add(sp, BorderLayout.CENTER);
308     getContentPane().add(desktop, BorderLayout.CENTER);
309     desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
310
311     // This line prevents Windows Look&Feel resizing all new windows to maximum
312     // if previous window was maximised
313     desktop.setDesktopManager(new MyDesktopManager(
314             new DefaultDesktopManager()));
315
316     Rectangle dims = getLastKnownDimensions("");
317     if (dims != null)
318     {
319       setBounds(dims);
320     }
321     else
322     {
323       Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
324       setBounds((screenSize.width - 900) / 2,
325               (screenSize.height - 650) / 2, 900, 650);
326     }
327     jconsole = new Console(this, showjconsole);
328     // add essential build information
329     jconsole.setHeader("Jalview Version: "
330             + jalview.bin.Cache.getProperty("VERSION") + "\n"
331             + "Jalview Installation: "
332             + jalview.bin.Cache.getDefault("INSTALLATION", "unknown")
333             + "\n"
334             + "Build Date: "
335             + jalview.bin.Cache.getDefault("BUILD_DATE", "unknown") + "\n"
336             + "Java version: " + System.getProperty("java.version") + "\n"
337             + System.getProperty("os.arch") + " "
338             + System.getProperty("os.name") + " "
339             + System.getProperty("os.version"));
340
341     showConsole(showjconsole);
342
343     showNews.setVisible(false);
344
345     this.addWindowListener(new WindowAdapter()
346     {
347       public void windowClosing(WindowEvent evt)
348       {
349         quit();
350       }
351     });
352
353     MouseAdapter ma;
354     this.addMouseListener(ma = new MouseAdapter()
355     {
356       public void mousePressed(MouseEvent evt)
357       {
358         if (SwingUtilities.isRightMouseButton(evt))
359         {
360           showPasteMenu(evt.getX(), evt.getY());
361         }
362       }
363     });
364     desktop.addMouseListener(ma);
365
366     this.addFocusListener(new FocusListener()
367     {
368
369       @Override
370       public void focusLost(FocusEvent e)
371       {
372         // TODO Auto-generated method stub
373
374       }
375
376       @Override
377       public void focusGained(FocusEvent e)
378       {
379         Cache.log.debug("Relaying windows after focus gain");
380         // make sure that we sort windows properly after we gain focus
381         instance.relayerWindows();
382       }
383     });
384     this.setDropTarget(new java.awt.dnd.DropTarget(desktop, this));
385     // Spawn a thread that shows the splashscreen
386     SwingUtilities.invokeLater(new Runnable()
387     {
388       public void run()
389       {
390         new SplashScreen();
391       }
392     });
393
394     // displayed.
395     // Thread off a new instance of the file chooser - this reduces the time it
396     // takes to open it later on.
397     new Thread(new Runnable()
398     {
399       public void run()
400       {
401         Cache.log.debug("Filechooser init thread started.");
402         JalviewFileChooser chooser = new JalviewFileChooser(
403                 jalview.bin.Cache.getProperty("LAST_DIRECTORY"),
404                 jalview.io.AppletFormatAdapter.READABLE_EXTENSIONS,
405                 jalview.io.AppletFormatAdapter.READABLE_FNAMES,
406                 jalview.bin.Cache.getProperty("DEFAULT_FILE_FORMAT"));
407         Cache.log.debug("Filechooser init thread finished.");
408       }
409     }).start();
410     // Add the service change listener
411     changeSupport.addJalviewPropertyChangeListener("services",
412             new PropertyChangeListener()
413             {
414
415               @Override
416               public void propertyChange(PropertyChangeEvent evt)
417               {
418                 Cache.log.debug("Firing service changed event for "
419                         + evt.getNewValue());
420                 JalviewServicesChanged(evt);
421               }
422
423             });
424   }
425
426   public void doConfigureStructurePrefs()
427   {
428     // configure services
429     StructureSelectionManager ssm = StructureSelectionManager
430             .getStructureSelectionManager(this);
431     if (jalview.bin.Cache.getDefault(Preferences.ADD_SS_ANN, true))
432     {
433       ssm.setAddTempFacAnnot(jalview.bin.Cache.getDefault(
434               Preferences.ADD_TEMPFACT_ANN, true));
435     ssm.setProcessSecondaryStructure(jalview.bin.Cache.getDefault(Preferences.STRUCT_FROM_PDB, true));
436     ssm.setSecStructServices(jalview.bin.Cache.getDefault(Preferences.USE_RNAVIEW,
437             true));
438     }
439     else
440     {
441       ssm.setAddTempFacAnnot(false);
442       ssm.setProcessSecondaryStructure(false);
443       ssm.setSecStructServices(false);
444     }
445   }
446
447   public void checkForNews()
448   {
449     final Desktop me = this;
450     // Thread off the news reader, in case there are connection problems.
451     addDialogThread(new Runnable()
452     {
453       @Override
454       public void run()
455       {
456         Cache.log.debug("Starting news thread.");
457
458         jvnews = new BlogReader(me);
459         showNews.setVisible(true);
460         Cache.log.debug("Completed news thread.");
461       }
462     });
463   }
464
465   protected void showNews_actionPerformed(ActionEvent e)
466   {
467     showNews(showNews.isSelected());
468   }
469
470   void showNews(boolean visible)
471   {
472     {
473       Cache.log.debug((visible ? "Showing" : "Hiding") + " news.");
474       showNews.setSelected(visible);
475       if (visible && !jvnews.isVisible())
476       {
477         new Thread(new Runnable()
478         {
479           @Override
480           public void run()
481           {
482             long instance = System.currentTimeMillis();
483             Desktop.instance.setProgressBar(MessageManager.getString("status.refreshing_news"), instance);
484             jvnews.refreshNews();
485             Desktop.instance.setProgressBar(null, instance);
486             jvnews.showNews();
487           }
488         }).start();
489       }
490     }
491   }
492
493   /**
494    * recover the last known dimensions for a jalview window
495    * 
496    * @param windowName
497    *          - empty string is desktop, all other windows have unique prefix
498    * @return null or last known dimensions scaled to current geometry (if last
499    *         window geom was known)
500    */
501   Rectangle getLastKnownDimensions(String windowName)
502   {
503     // TODO: lock aspect ratio for scaling desktop Bug #0058199
504     Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
505     String x = jalview.bin.Cache.getProperty(windowName + "SCREEN_X");
506     String y = jalview.bin.Cache.getProperty(windowName + "SCREEN_Y");
507     String width = jalview.bin.Cache.getProperty(windowName
508             + "SCREEN_WIDTH");
509     String height = jalview.bin.Cache.getProperty(windowName
510             + "SCREEN_HEIGHT");
511     if ((x != null) && (y != null) && (width != null) && (height != null))
512     {
513       int ix = Integer.parseInt(x), iy = Integer.parseInt(y), iw = Integer
514               .parseInt(width), ih = Integer.parseInt(height);
515       if (jalview.bin.Cache.getProperty("SCREENGEOMETRY_WIDTH") != null)
516       {
517         // attempt #1 - try to cope with change in screen geometry - this
518         // version doesn't preserve original jv aspect ratio.
519         // take ratio of current screen size vs original screen size.
520         double sw = ((1f * screenSize.width) / (1f * Integer
521                 .parseInt(jalview.bin.Cache
522                         .getProperty("SCREENGEOMETRY_WIDTH"))));
523         double sh = ((1f * screenSize.height) / (1f * Integer
524                 .parseInt(jalview.bin.Cache
525                         .getProperty("SCREENGEOMETRY_HEIGHT"))));
526         // rescale the bounds depending upon the current screen geometry.
527         ix = (int) (ix * sw);
528         iw = (int) (iw * sw);
529         iy = (int) (iy * sh);
530         ih = (int) (ih * sh);
531         while (ix >= screenSize.width)
532         {
533           jalview.bin.Cache.log
534                   .debug("Window geometry location recall error: shifting horizontal to within screenbounds.");
535           ix -= screenSize.width;
536         }
537         while (iy >= screenSize.height)
538         {
539           jalview.bin.Cache.log
540                   .debug("Window geometry location recall error: shifting vertical to within screenbounds.");
541           iy -= screenSize.height;
542         }
543         jalview.bin.Cache.log.debug("Got last known dimensions for "
544                 + windowName + ": x:" + ix + " y:" + iy + " width:" + iw
545                 + " height:" + ih);
546       }
547       // return dimensions for new instance
548       return new Rectangle(ix, iy, iw, ih);
549     }
550     return null;
551   }
552
553   private void doVamsasClientCheck()
554   {
555     if (jalview.bin.Cache.vamsasJarsPresent())
556     {
557       setupVamsasDisconnectedGui();
558       VamsasMenu.setVisible(true);
559       final Desktop us = this;
560       VamsasMenu.addMenuListener(new MenuListener()
561       {
562         // this listener remembers when the menu was first selected, and
563         // doesn't rebuild the session list until it has been cleared and
564         // reselected again.
565         boolean refresh = true;
566
567         public void menuCanceled(MenuEvent e)
568         {
569           refresh = true;
570         }
571
572         public void menuDeselected(MenuEvent e)
573         {
574           refresh = true;
575         }
576
577         public void menuSelected(MenuEvent e)
578         {
579           if (refresh)
580           {
581             us.buildVamsasStMenu();
582             refresh = false;
583           }
584         }
585       });
586       vamsasStart.setVisible(true);
587     }
588   }
589
590   void showPasteMenu(int x, int y)
591   {
592     JPopupMenu popup = new JPopupMenu();
593     JMenuItem item = new JMenuItem(
594             MessageManager.getString("label.paste_new_window"));
595     item.addActionListener(new ActionListener()
596     {
597       public void actionPerformed(ActionEvent evt)
598       {
599         paste();
600       }
601     });
602
603     popup.add(item);
604     popup.show(this, x, y);
605   }
606
607   public void paste()
608   {
609     try
610     {
611       Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
612       Transferable contents = c.getContents(this);
613
614       if (contents != null)
615       {
616         String file = (String) contents
617                 .getTransferData(DataFlavor.stringFlavor);
618
619         String format = new IdentifyFile().Identify(file,
620                 FormatAdapter.PASTE);
621
622         new FileLoader().LoadFile(file, FormatAdapter.PASTE, format);
623
624       }
625     } catch (Exception ex)
626     {
627       System.out
628               .println("Unable to paste alignment from system clipboard:\n"
629                       + ex);
630     }
631   }
632
633   /**
634    * Adds and opens the given frame to the desktop
635    * 
636    * @param frame
637    *          Frame to show
638    * @param title
639    *          Visible Title
640    * @param w
641    *          width
642    * @param h
643    *          height
644    */
645   public static synchronized void addInternalFrame(
646           final JInternalFrame frame, String title, int w, int h)
647   {
648     addInternalFrame(frame, title, true, w, h, true);
649   }
650
651
652   /**
653    * Add an internal frame to the Jalview desktop
654    * 
655    * @param frame
656    *          Frame to show
657    * @param title
658    *          Visible Title
659    * @param makeVisible
660    *          When true, display frame immediately, otherwise, caller must call
661    *          setVisible themselves.
662    * @param w
663    *          width
664    * @param h
665    *          height
666    */
667   public static synchronized void addInternalFrame(
668           final JInternalFrame frame, String title, boolean makeVisible,
669           int w, int h)
670   {
671     addInternalFrame(frame, title, makeVisible, w, h, true);
672   }
673
674   /**
675    * Add an internal frame to the Jalview desktop and make it visible
676    * 
677    * @param frame
678    *          Frame to show
679    * @param title
680    *          Visible Title
681    * @param w
682    *          width
683    * @param h
684    *          height
685    * @param resizable
686    *          Allow resize
687    */
688   public static synchronized void addInternalFrame(
689           final JInternalFrame frame, String title, int w, int h,
690           boolean resizable)
691   {
692     addInternalFrame(frame, title, true, w, h, resizable);
693   }
694
695   /**
696    * Add an internal frame to the Jalview desktop
697    * 
698    * @param frame
699    *          Frame to show
700    * @param title
701    *          Visible Title
702    * @param makeVisible
703    *          When true, display frame immediately, otherwise, caller must call
704    *          setVisible themselves.
705    * @param w
706    *          width
707    * @param h
708    *          height
709    * @param resizable
710    *          Allow resize
711    */
712   public static synchronized void addInternalFrame(
713           final JInternalFrame frame, String title, boolean makeVisible,
714           int w, int h, boolean resizable)
715   {
716
717     // TODO: allow callers to determine X and Y position of frame (eg. via
718     // bounds object).
719     // TODO: consider fixing method to update entries in the window submenu with
720     // the current window title
721
722     frame.setTitle(title);
723     if (frame.getWidth() < 1 || frame.getHeight() < 1)
724     {
725       frame.setSize(w, h);
726     }
727     // THIS IS A PUBLIC STATIC METHOD, SO IT MAY BE CALLED EVEN IN
728     // A HEADLESS STATE WHEN NO DESKTOP EXISTS. MUST RETURN
729     // IF JALVIEW IS RUNNING HEADLESS
730     // ///////////////////////////////////////////////
731     if (instance == null
732             || (System.getProperty("java.awt.headless") != null && System
733                     .getProperty("java.awt.headless").equals("true")))
734     {
735       return;
736     }
737
738     openFrameCount++;
739
740     frame.setVisible(makeVisible);
741     frame.setClosable(true);
742     frame.setResizable(resizable);
743     frame.setMaximizable(resizable);
744     frame.setIconifiable(resizable);
745     frame.setFrameIcon(null);
746
747     if (frame.getX() < 1 && frame.getY() < 1)
748     {
749       frame.setLocation(xOffset * openFrameCount, yOffset
750               * ((openFrameCount - 1) % 10) + yOffset);
751     }
752
753     final JMenuItem menuItem = new JMenuItem(title);
754     frame.addInternalFrameListener(new javax.swing.event.InternalFrameAdapter()
755     {
756       public void internalFrameActivated(
757               javax.swing.event.InternalFrameEvent evt)
758       {
759         JInternalFrame itf = desktop.getSelectedFrame();
760         if (itf != null)
761         {
762           itf.requestFocus();
763         }
764
765       }
766
767       public void internalFrameClosed(
768               javax.swing.event.InternalFrameEvent evt)
769       {
770         PaintRefresher.RemoveComponent(frame);
771         openFrameCount--;
772         windowMenu.remove(menuItem);
773         JInternalFrame itf = desktop.getSelectedFrame();
774         if (itf != null)
775         {
776           itf.requestFocus();
777         }
778         System.gc();
779       };
780     });
781
782     menuItem.addActionListener(new ActionListener()
783     {
784       public void actionPerformed(ActionEvent e)
785       {
786         try
787         {
788           frame.setSelected(true);
789           frame.setIcon(false);
790         } catch (java.beans.PropertyVetoException ex)
791         {
792
793         }
794       }
795     });
796     menuItem.addMouseListener(new MouseListener()
797     {
798
799       @Override
800       public void mouseReleased(MouseEvent e)
801       {
802       }
803
804       @Override
805       public void mousePressed(MouseEvent e)
806       {
807       }
808
809       @Override
810       public void mouseExited(MouseEvent e)
811       {
812         try
813         {
814           frame.setSelected(false);
815         } catch (PropertyVetoException e1)
816         {
817         }
818       }
819
820       @Override
821       public void mouseEntered(MouseEvent e)
822       {
823         try
824         {
825           frame.setSelected(true);
826         } catch (PropertyVetoException e1)
827         {
828         }
829       }
830
831       @Override
832       public void mouseClicked(MouseEvent e)
833       {
834
835       }
836     });
837
838     windowMenu.add(menuItem);
839
840     desktop.add(frame);
841     frame.toFront();
842     try
843     {
844       frame.setSelected(true);
845       frame.requestFocus();
846     } catch (java.beans.PropertyVetoException ve)
847     {
848     } catch (java.lang.ClassCastException cex)
849     {
850       Cache.log
851               .warn("Squashed a possible GUI implementation error. If you can recreate this, please look at http://issues.jalview.org/browse/JAL-869",
852                       cex);
853     }
854   }
855
856   public void lostOwnership(Clipboard clipboard, Transferable contents)
857   {
858     if (!internalCopy)
859     {
860       Desktop.jalviewClipboard = null;
861     }
862
863     internalCopy = false;
864   }
865
866   public void dragEnter(DropTargetDragEvent evt)
867   {
868   }
869
870   public void dragExit(DropTargetEvent evt)
871   {
872   }
873
874   public void dragOver(DropTargetDragEvent evt)
875   {
876   }
877
878   public void dropActionChanged(DropTargetDragEvent evt)
879   {
880   }
881
882   /**
883    * DOCUMENT ME!
884    * 
885    * @param evt
886    *          DOCUMENT ME!
887    */
888   public void drop(DropTargetDropEvent evt)
889   {
890     boolean success = true;
891     Transferable t = evt.getTransferable();
892     java.util.List files = null;
893     java.util.List protocols = null;
894
895     try
896     {
897       DataFlavor uriListFlavor = new DataFlavor(
898               "text/uri-list;class=java.lang.String");
899       if (t.isDataFlavorSupported(DataFlavor.javaFileListFlavor))
900       {
901         // Works on Windows and MacOSX
902         evt.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
903         files = (java.util.List) t
904                 .getTransferData(DataFlavor.javaFileListFlavor);
905       }
906       else if (t.isDataFlavorSupported(uriListFlavor))
907       {
908         // This is used by Unix drag system
909         evt.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
910         String data = (String) t.getTransferData(uriListFlavor);
911         files = new java.util.ArrayList(1);
912         protocols = new java.util.ArrayList(1);
913         for (java.util.StringTokenizer st = new java.util.StringTokenizer(
914                 data, "\r\n"); st.hasMoreTokens();)
915         {
916           String s = st.nextToken();
917           if (s.startsWith("#"))
918           {
919             // the line is a comment (as per the RFC 2483)
920             continue;
921           }
922           java.net.URI uri = new java.net.URI(s);
923           if (uri.getScheme().toLowerCase().startsWith("http"))
924           {
925             protocols.add(FormatAdapter.URL);
926             files.add(uri.toString());
927           }
928           else
929           {
930             // otherwise preserve old behaviour: catch all for file objects
931             java.io.File file = new java.io.File(uri);
932             protocols.add(FormatAdapter.FILE);
933             files.add(file.toString());
934           }
935         }
936       }
937     } catch (Exception e)
938     {
939       success = false;
940     }
941
942     if (files != null)
943     {
944       try
945       {
946         for (int i = 0; i < files.size(); i++)
947         {
948           String file = files.get(i).toString();
949           String protocol = (protocols == null) ? FormatAdapter.FILE
950                   : (String) protocols.get(i);
951           String format = null;
952
953           if (file.endsWith(".jar"))
954           {
955             format = "Jalview";
956
957           }
958           else
959           {
960             format = new IdentifyFile().Identify(file, protocol);
961           }
962
963           new FileLoader().LoadFile(file, protocol, format);
964
965         }
966       } catch (Exception ex)
967       {
968         success = false;
969       }
970     }
971     evt.dropComplete(success); // need this to ensure input focus is properly
972                                // transfered to any new windows created
973   }
974
975   /**
976    * DOCUMENT ME!
977    * 
978    * @param e
979    *          DOCUMENT ME!
980    */
981   public void inputLocalFileMenuItem_actionPerformed(AlignViewport viewport)
982   {
983     JalviewFileChooser chooser = new JalviewFileChooser(
984             jalview.bin.Cache.getProperty("LAST_DIRECTORY"),
985             jalview.io.AppletFormatAdapter.READABLE_EXTENSIONS,
986             jalview.io.AppletFormatAdapter.READABLE_FNAMES,
987             jalview.bin.Cache.getProperty("DEFAULT_FILE_FORMAT"));
988
989     chooser.setFileView(new JalviewFileView());
990     chooser.setDialogTitle(MessageManager
991             .getString("label.open_local_file"));
992     chooser.setToolTipText(MessageManager.getString("action.open"));
993
994     int value = chooser.showOpenDialog(this);
995
996     if (value == JalviewFileChooser.APPROVE_OPTION)
997     {
998       String choice = chooser.getSelectedFile().getPath();
999       jalview.bin.Cache.setProperty("LAST_DIRECTORY", chooser
1000               .getSelectedFile().getParent());
1001
1002       String format = null;
1003       if (chooser.getSelectedFormat() != null
1004               && chooser.getSelectedFormat().equals("Jalview"))
1005       {
1006         format = "Jalview";
1007       }
1008       else
1009       {
1010         format = new IdentifyFile().Identify(choice, FormatAdapter.FILE);
1011       }
1012
1013       if (viewport != null)
1014       {
1015         new FileLoader().LoadFile(viewport, choice, FormatAdapter.FILE,
1016                 format);
1017       }
1018       else
1019       {
1020         new FileLoader().LoadFile(choice, FormatAdapter.FILE, format);
1021       }
1022     }
1023   }
1024
1025   /**
1026    * DOCUMENT ME!
1027    * 
1028    * @param e
1029    *          DOCUMENT ME!
1030    */
1031   public void inputURLMenuItem_actionPerformed(AlignViewport viewport)
1032   {
1033     // This construct allows us to have a wider textfield
1034     // for viewing
1035     JLabel label = new JLabel(
1036             MessageManager.getString("label.input_file_url"));
1037     final JComboBox history = new JComboBox();
1038
1039     JPanel panel = new JPanel(new GridLayout(2, 1));
1040     panel.add(label);
1041     panel.add(history);
1042     history.setPreferredSize(new Dimension(400, 20));
1043     history.setEditable(true);
1044     history.addItem("http://www.");
1045
1046     String historyItems = jalview.bin.Cache.getProperty("RECENT_URL");
1047
1048     StringTokenizer st;
1049
1050     if (historyItems != null)
1051     {
1052       st = new StringTokenizer(historyItems, "\t");
1053
1054       while (st.hasMoreTokens())
1055       {
1056         history.addItem(st.nextElement());
1057       }
1058     }
1059
1060     int reply = JOptionPane.showInternalConfirmDialog(desktop, panel,
1061             MessageManager.getString("label.input_alignment_from_url"),
1062             JOptionPane.OK_CANCEL_OPTION);
1063
1064     if (reply != JOptionPane.OK_OPTION)
1065     {
1066       return;
1067     }
1068
1069     String url = history.getSelectedItem().toString();
1070
1071     if (url.toLowerCase().endsWith(".jar"))
1072     {
1073       if (viewport != null)
1074       {
1075         new FileLoader().LoadFile(viewport, url, FormatAdapter.URL,
1076                 "Jalview");
1077       }
1078       else
1079       {
1080         new FileLoader().LoadFile(url, FormatAdapter.URL, "Jalview");
1081       }
1082     }
1083     else
1084     {
1085       String format = new IdentifyFile().Identify(url, FormatAdapter.URL);
1086
1087       if (format.equals("URL NOT FOUND"))
1088       {
1089         JOptionPane.showInternalMessageDialog(Desktop.desktop,
1090                 MessageManager.formatMessage("label.couldnt_locate", new String[]{url}), MessageManager.getString("label.url_not_found"),
1091                 JOptionPane.WARNING_MESSAGE);
1092
1093         return;
1094       }
1095
1096       if (viewport != null)
1097       {
1098         new FileLoader().LoadFile(viewport, url, FormatAdapter.URL, format);
1099       }
1100       else
1101       {
1102         new FileLoader().LoadFile(url, FormatAdapter.URL, format);
1103       }
1104     }
1105   }
1106
1107   /**
1108    * DOCUMENT ME!
1109    * 
1110    * @param e
1111    *          DOCUMENT ME!
1112    */
1113   public void inputTextboxMenuItem_actionPerformed(AlignViewport viewport)
1114   {
1115     CutAndPasteTransfer cap = new CutAndPasteTransfer();
1116     cap.setForInput(viewport);
1117     Desktop.addInternalFrame(cap,
1118             MessageManager.getString("label.cut_paste_alignmen_file"),
1119             true, 600, 500);
1120   }
1121
1122   /*
1123    * Exit the program
1124    */
1125   public void quit()
1126   {
1127     Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
1128     jalview.bin.Cache
1129             .setProperty("SCREENGEOMETRY_WIDTH", screen.width + "");
1130     jalview.bin.Cache.setProperty("SCREENGEOMETRY_HEIGHT", screen.height
1131             + "");
1132     storeLastKnownDimensions("", new Rectangle(getBounds().x,
1133             getBounds().y, getWidth(), getHeight()));
1134
1135     if (jconsole != null)
1136     {
1137       storeLastKnownDimensions("JAVA_CONSOLE_", jconsole.getBounds());
1138       jconsole.stopConsole();
1139     }
1140     if (jvnews != null)
1141     {
1142       storeLastKnownDimensions("JALVIEW_RSS_WINDOW_", jvnews.getBounds());
1143
1144     }
1145     if (dialogExecutor != null)
1146     {
1147       dialogExecutor.shutdownNow();
1148     }
1149
1150     System.exit(0);
1151   }
1152
1153   private void storeLastKnownDimensions(String string, Rectangle jc)
1154   {
1155     jalview.bin.Cache.log.debug("Storing last known dimensions for "
1156             + string + ": x:" + jc.x + " y:" + jc.y + " width:" + jc.width
1157             + " height:" + jc.height);
1158
1159     jalview.bin.Cache.setProperty(string + "SCREEN_X", jc.x + "");
1160     jalview.bin.Cache.setProperty(string + "SCREEN_Y", jc.y + "");
1161     jalview.bin.Cache.setProperty(string + "SCREEN_WIDTH", jc.width + "");
1162     jalview.bin.Cache.setProperty(string + "SCREEN_HEIGHT", jc.height + "");
1163   }
1164
1165   /**
1166    * DOCUMENT ME!
1167    * 
1168    * @param e
1169    *          DOCUMENT ME!
1170    */
1171   public void aboutMenuItem_actionPerformed(ActionEvent e)
1172   {
1173     // StringBuffer message = getAboutMessage(false);
1174     // JOptionPane.showInternalMessageDialog(Desktop.desktop,
1175     //
1176     // message.toString(), "About Jalview", JOptionPane.INFORMATION_MESSAGE);
1177     new Thread(new Runnable()
1178     {
1179       public void run()
1180       {
1181         new SplashScreen(true);
1182       }
1183     }).start();
1184   }
1185
1186   public StringBuffer getAboutMessage(boolean shortv)
1187   {
1188     StringBuffer message = new StringBuffer();
1189     message.append("<html>");
1190     if (shortv)
1191     {
1192       message.append("<h1><strong>Version: "
1193               + jalview.bin.Cache.getProperty("VERSION")
1194               + "</strong></h1>");
1195       message.append("<strong>Last Updated: <em>"
1196               + jalview.bin.Cache.getDefault("BUILD_DATE", "unknown")
1197               + "</em></strong>");
1198
1199     }
1200     else
1201     {
1202
1203       message.append("<strong>Version "
1204               + jalview.bin.Cache.getProperty("VERSION")
1205               + "; last updated: "
1206               + jalview.bin.Cache.getDefault("BUILD_DATE", "unknown"));
1207     }
1208
1209     if (jalview.bin.Cache.getDefault("LATEST_VERSION", "Checking").equals(
1210             "Checking"))
1211     {
1212       message.append("<br>...Checking latest version...</br>");
1213     }
1214     else if (!jalview.bin.Cache.getDefault("LATEST_VERSION", "Checking")
1215             .equals(jalview.bin.Cache.getProperty("VERSION")))
1216     {
1217       boolean red = false;
1218       if (jalview.bin.Cache.getProperty("VERSION").toLowerCase()
1219               .indexOf("automated build") == -1)
1220       {
1221         red = true;
1222         // Displayed when code version and jnlp version do not match and code
1223         // version is not a development build
1224         message.append("<div style=\"color: #FF0000;font-style: bold;\">");
1225       }
1226
1227       message.append("<br>!! Version "
1228               + jalview.bin.Cache.getDefault("LATEST_VERSION",
1229                       "..Checking..")
1230               + " is available for download from "
1231               + jalview.bin.Cache.getDefault("www.jalview.org",
1232                       "http://www.jalview.org") + " !!");
1233       if (red)
1234       {
1235         message.append("</div>");
1236       }
1237     }
1238     message.append("<br>Authors:  "
1239             + jalview.bin.Cache
1240                     .getDefault(
1241                             "AUTHORFNAMES",
1242                             "The Jalview Authors (See AUTHORS file for current list)")
1243             + "<br><br>Development managed by The Barton Group, University of Dundee, Scotland, UK.<br>"
1244             + "<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"
1245             + "<br><br>If  you use Jalview, please cite:"
1246             + "<br>Waterhouse, A.M., Procter, J.B., Martin, D.M.A, Clamp, M. and Barton, G. J. (2009)"
1247             + "<br>Jalview Version 2 - a multiple sequence alignment editor and analysis workbench"
1248             + "<br>Bioinformatics doi: 10.1093/bioinformatics/btp033"
1249             + "</html>");
1250     return message;
1251   }
1252
1253   /**
1254    * DOCUMENT ME!
1255    * 
1256    * @param e
1257    *          DOCUMENT ME!
1258    */
1259   public void documentationMenuItem_actionPerformed(ActionEvent e)
1260   {
1261     try
1262     {
1263       Help.showHelpWindow();
1264     } catch (Exception ex)
1265     {
1266     }
1267   }
1268
1269   public void closeAll_actionPerformed(ActionEvent e)
1270   {
1271     JInternalFrame[] frames = desktop.getAllFrames();
1272     for (int i = 0; i < frames.length; i++)
1273     {
1274       try
1275       {
1276         frames[i].setClosed(true);
1277       } catch (java.beans.PropertyVetoException ex)
1278       {
1279       }
1280     }
1281     System.out.println("ALL CLOSED");
1282     if (v_client != null)
1283     {
1284       // TODO clear binding to vamsas document objects on close_all
1285
1286     }
1287   }
1288
1289   public void raiseRelated_actionPerformed(ActionEvent e)
1290   {
1291     reorderAssociatedWindows(false, false);
1292   }
1293
1294   public void minimizeAssociated_actionPerformed(ActionEvent e)
1295   {
1296     reorderAssociatedWindows(true, false);
1297   }
1298
1299   void closeAssociatedWindows()
1300   {
1301     reorderAssociatedWindows(false, true);
1302   }
1303
1304   /*
1305    * (non-Javadoc)
1306    * 
1307    * @seejalview.jbgui.GDesktop#garbageCollect_actionPerformed(java.awt.event.
1308    * ActionEvent)
1309    */
1310   protected void garbageCollect_actionPerformed(ActionEvent e)
1311   {
1312     // We simply collect the garbage
1313     jalview.bin.Cache.log.debug("Collecting garbage...");
1314     System.gc();
1315     jalview.bin.Cache.log.debug("Finished garbage collection.");
1316   }
1317
1318   /*
1319    * (non-Javadoc)
1320    * 
1321    * @see
1322    * jalview.jbgui.GDesktop#showMemusage_actionPerformed(java.awt.event.ActionEvent
1323    * )
1324    */
1325   protected void showMemusage_actionPerformed(ActionEvent e)
1326   {
1327     desktop.showMemoryUsage(showMemusage.isSelected());
1328   }
1329
1330   /*
1331    * (non-Javadoc)
1332    * 
1333    * @see
1334    * jalview.jbgui.GDesktop#showConsole_actionPerformed(java.awt.event.ActionEvent
1335    * )
1336    */
1337   protected void showConsole_actionPerformed(ActionEvent e)
1338   {
1339     showConsole(showConsole.isSelected());
1340   }
1341
1342   Console jconsole = null;
1343
1344   /**
1345    * control whether the java console is visible or not
1346    * 
1347    * @param selected
1348    */
1349   void showConsole(boolean selected)
1350   {
1351     showConsole.setSelected(selected);
1352     // TODO: decide if we should update properties file
1353     Cache.setProperty("SHOW_JAVA_CONSOLE", Boolean.valueOf(selected)
1354             .toString());
1355     jconsole.setVisible(selected);
1356   }
1357
1358   void reorderAssociatedWindows(boolean minimize, boolean close)
1359   {
1360     JInternalFrame[] frames = desktop.getAllFrames();
1361     if (frames == null || frames.length < 1)
1362     {
1363       return;
1364     }
1365
1366     AlignViewport source = null, target = null;
1367     if (frames[0] instanceof AlignFrame)
1368     {
1369       source = ((AlignFrame) frames[0]).getCurrentView();
1370     }
1371     else if (frames[0] instanceof TreePanel)
1372     {
1373       source = ((TreePanel) frames[0]).getViewPort();
1374     }
1375     else if (frames[0] instanceof PCAPanel)
1376     {
1377       source = ((PCAPanel) frames[0]).av;
1378     }
1379     else if (frames[0].getContentPane() instanceof PairwiseAlignPanel)
1380     {
1381       source = ((PairwiseAlignPanel) frames[0].getContentPane()).av;
1382     }
1383
1384     if (source != null)
1385     {
1386       for (int i = 0; i < frames.length; i++)
1387       {
1388         target = null;
1389         if (frames[i] == null)
1390         {
1391           continue;
1392         }
1393         if (frames[i] instanceof AlignFrame)
1394         {
1395           target = ((AlignFrame) frames[i]).getCurrentView();
1396         }
1397         else if (frames[i] instanceof TreePanel)
1398         {
1399           target = ((TreePanel) frames[i]).getViewPort();
1400         }
1401         else if (frames[i] instanceof PCAPanel)
1402         {
1403           target = ((PCAPanel) frames[i]).av;
1404         }
1405         else if (frames[i].getContentPane() instanceof PairwiseAlignPanel)
1406         {
1407           target = ((PairwiseAlignPanel) frames[i].getContentPane()).av;
1408         }
1409
1410         if (source == target)
1411         {
1412           try
1413           {
1414             if (close)
1415             {
1416               frames[i].setClosed(true);
1417             }
1418             else
1419             {
1420               frames[i].setIcon(minimize);
1421               if (!minimize)
1422               {
1423                 frames[i].toFront();
1424               }
1425             }
1426
1427           } catch (java.beans.PropertyVetoException ex)
1428           {
1429           }
1430         }
1431       }
1432     }
1433   }
1434
1435   /**
1436    * DOCUMENT ME!
1437    * 
1438    * @param e
1439    *          DOCUMENT ME!
1440    */
1441   protected void preferences_actionPerformed(ActionEvent e)
1442   {
1443     new Preferences();
1444   }
1445
1446   /**
1447    * DOCUMENT ME!
1448    * 
1449    * @param e
1450    *          DOCUMENT ME!
1451    */
1452   public void saveState_actionPerformed(ActionEvent e)
1453   {
1454     JalviewFileChooser chooser = new JalviewFileChooser(
1455             jalview.bin.Cache.getProperty("LAST_DIRECTORY"), new String[]
1456             { "jvp" }, new String[]
1457             { "Jalview Project" }, "Jalview Project");
1458
1459     chooser.setFileView(new JalviewFileView());
1460     chooser.setDialogTitle(MessageManager.getString("label.save_state"));
1461
1462     int value = chooser.showSaveDialog(this);
1463
1464     if (value == JalviewFileChooser.APPROVE_OPTION)
1465     {
1466       final Desktop me = this;
1467       final java.io.File choice = chooser.getSelectedFile();
1468       new Thread(new Runnable()
1469       {
1470         public void run()
1471         {
1472
1473           setProgressBar(MessageManager.formatMessage("label.saving_jalview_project", new String[]{choice.getName()}),
1474                   choice.hashCode());
1475           jalview.bin.Cache.setProperty("LAST_DIRECTORY",
1476                   choice.getParent());
1477           // TODO catch and handle errors for savestate
1478           // TODO prevent user from messing with the Desktop whilst we're saving
1479           try
1480           {
1481             new Jalview2XML().SaveState(choice);
1482           } catch (OutOfMemoryError oom)
1483           {
1484             new OOMWarning("Whilst saving current state to "
1485                     + choice.getName(), oom);
1486           } catch (Exception ex)
1487           {
1488             Cache.log.error(
1489                     "Problems whilst trying to save to " + choice.getName(),
1490                     ex);
1491             JOptionPane.showMessageDialog(
1492                     me,
1493                     MessageManager.formatMessage("label.error_whilst_saving_current_state_to", new String[]{ choice.getName()}),
1494                     MessageManager.getString("label.couldnt_save_project"),
1495                     JOptionPane.WARNING_MESSAGE);
1496           }
1497           setProgressBar(null, choice.hashCode());
1498         }
1499       }).start();
1500     }
1501   }
1502
1503   /**
1504    * DOCUMENT ME!
1505    * 
1506    * @param e
1507    *          DOCUMENT ME!
1508    */
1509   public void loadState_actionPerformed(ActionEvent e)
1510   {
1511     JalviewFileChooser chooser = new JalviewFileChooser(
1512             jalview.bin.Cache.getProperty("LAST_DIRECTORY"), new String[]
1513             { "jvp", "jar" }, new String[]
1514             { "Jalview Project", "Jalview Project (old)" },
1515             "Jalview Project");
1516     chooser.setFileView(new JalviewFileView());
1517     chooser.setDialogTitle(MessageManager.getString("label.restore_state"));
1518
1519     int value = chooser.showOpenDialog(this);
1520
1521     if (value == JalviewFileChooser.APPROVE_OPTION)
1522     {
1523       final String choice = chooser.getSelectedFile().getAbsolutePath();
1524       jalview.bin.Cache.setProperty("LAST_DIRECTORY", chooser
1525               .getSelectedFile().getParent());
1526       new Thread(new Runnable()
1527       {
1528         public void run()
1529         {
1530           setProgressBar(MessageManager.formatMessage("label.loading_jalview_project", new String[]{choice}),
1531                   choice.hashCode());
1532           try
1533           {
1534             new Jalview2XML().LoadJalviewAlign(choice);
1535           } catch (OutOfMemoryError oom)
1536           {
1537             new OOMWarning("Whilst loading project from " + choice, oom);
1538           } catch (Exception ex)
1539           {
1540             Cache.log.error("Problems whilst loading project from "
1541                     + choice, ex);
1542             JOptionPane.showMessageDialog(Desktop.desktop,
1543                         MessageManager.formatMessage("label.error_whilst_loading_project_from", new String[]{choice}),
1544                     MessageManager.getString("label.couldnt_load_project"), JOptionPane.WARNING_MESSAGE);
1545           }
1546           setProgressBar(null, choice.hashCode());
1547         }
1548       }).start();
1549     }
1550   }
1551
1552   public void inputSequence_actionPerformed(ActionEvent e)
1553   {
1554     new SequenceFetcher(this);
1555   }
1556
1557   JPanel progressPanel;
1558
1559   ArrayList<JPanel> fileLoadingPanels = new ArrayList<JPanel>();
1560
1561   public void startLoading(final String fileName)
1562   {
1563     if (fileLoadingCount == 0)
1564     {
1565       fileLoadingPanels.add(addProgressPanel(MessageManager.formatMessage("label.loading_file", new String[]{fileName})));
1566     }
1567     fileLoadingCount++;
1568   }
1569
1570   private JPanel addProgressPanel(String string)
1571   {
1572     if (progressPanel == null)
1573     {
1574       progressPanel = new JPanel(new GridLayout(1, 1));
1575       totalProgressCount = 0;
1576       instance.getContentPane().add(progressPanel, BorderLayout.SOUTH);
1577     }
1578     JPanel thisprogress = new JPanel(new BorderLayout(10, 5));
1579     JProgressBar progressBar = new JProgressBar();
1580     progressBar.setIndeterminate(true);
1581
1582     thisprogress.add(new JLabel(string), BorderLayout.WEST);
1583
1584     thisprogress.add(progressBar, BorderLayout.CENTER);
1585     progressPanel.add(thisprogress);
1586     ((GridLayout) progressPanel.getLayout())
1587             .setRows(((GridLayout) progressPanel.getLayout()).getRows() + 1);
1588     ++totalProgressCount;
1589     instance.validate();
1590     return thisprogress;
1591   }
1592
1593   int totalProgressCount = 0;
1594
1595   private void removeProgressPanel(JPanel progbar)
1596   {
1597     if (progressPanel != null)
1598     {
1599       synchronized (progressPanel)
1600       {
1601         progressPanel.remove(progbar);
1602         GridLayout gl = (GridLayout) progressPanel.getLayout();
1603         gl.setRows(gl.getRows() - 1);
1604         if (--totalProgressCount < 1)
1605         {
1606           this.getContentPane().remove(progressPanel);
1607           progressPanel = null;
1608         }
1609       }
1610     }
1611     validate();
1612   }
1613
1614   public void stopLoading()
1615   {
1616     fileLoadingCount--;
1617     if (fileLoadingCount < 1)
1618     {
1619       while (fileLoadingPanels.size() > 0)
1620       {
1621         removeProgressPanel(fileLoadingPanels.remove(0));
1622       }
1623       fileLoadingPanels.clear();
1624       fileLoadingCount = 0;
1625     }
1626     validate();
1627   }
1628
1629   public static int getViewCount(String alignmentId)
1630   {
1631     AlignViewport[] aps = getViewports(alignmentId);
1632     return (aps == null) ? 0 : aps.length;
1633   }
1634
1635   /**
1636    * 
1637    * @param alignmentId
1638    * @return all AlignmentPanels concerning the alignmentId sequence set
1639    */
1640   public static AlignmentPanel[] getAlignmentPanels(String alignmentId)
1641   {
1642     if (Desktop.desktop == null)
1643     {
1644       // no frames created and in headless mode
1645       // TODO: verify that frames are recoverable when in headless mode
1646       return null;
1647     }
1648     List<AlignmentPanel> aps = new ArrayList<AlignmentPanel>();
1649     AlignFrame[] frames = getAlignFrames();
1650     if (frames == null)
1651     {
1652       return null;
1653     }
1654     for (AlignFrame af : frames)
1655     {
1656       for (AlignmentPanel ap : af.alignPanels)
1657       {
1658         if (alignmentId.equals(ap.av.getSequenceSetId()))
1659         {
1660           aps.add(ap);
1661         }
1662       }
1663       // for (int a = 0; a < af.alignPanels.size(); a++)
1664       // {
1665       // if (alignmentId.equals(af.alignPanels
1666       // .get(a).av.getSequenceSetId()))
1667       // {
1668       // aps.add(af.alignPanels.get(a));
1669       // }
1670       // }
1671     }
1672     if (aps.size() == 0)
1673     {
1674       return null;
1675     }
1676     AlignmentPanel[] vap = aps.toArray(new AlignmentPanel[aps.size()]);
1677     return vap;
1678   }
1679
1680   /**
1681    * get all the viewports on an alignment.
1682    * 
1683    * @param sequenceSetId
1684    *          unique alignment id
1685    * @return all viewports on the alignment bound to sequenceSetId
1686    */
1687   public static AlignViewport[] getViewports(String sequenceSetId)
1688   {
1689     Vector viewp = new Vector();
1690     if (desktop != null)
1691     {
1692       javax.swing.JInternalFrame[] frames = instance.getAllFrames();
1693
1694       for (int t = 0; t < frames.length; t++)
1695       {
1696         if (frames[t] instanceof AlignFrame)
1697         {
1698           AlignFrame afr = ((AlignFrame) frames[t]);
1699           if (afr.getViewport().getSequenceSetId().equals(sequenceSetId))
1700           {
1701             if (afr.alignPanels != null)
1702             {
1703               for (int a = 0; a < afr.alignPanels.size(); a++)
1704               {
1705                 if (sequenceSetId.equals(afr.alignPanels.get(a).av
1706                         .getSequenceSetId()))
1707                 {
1708                   viewp.addElement(afr.alignPanels.get(a).av);
1709                 }
1710               }
1711             }
1712             else
1713             {
1714               viewp.addElement(((AlignFrame) frames[t]).getViewport());
1715             }
1716           }
1717         }
1718       }
1719       if (viewp.size() > 0)
1720       {
1721         AlignViewport[] vp = new AlignViewport[viewp.size()];
1722         viewp.copyInto(vp);
1723         return vp;
1724       }
1725     }
1726     return null;
1727   }
1728
1729   public void explodeViews(AlignFrame af)
1730   {
1731     int size = af.alignPanels.size();
1732     if (size < 2)
1733     {
1734       return;
1735     }
1736
1737     for (int i = 0; i < size; i++)
1738     {
1739       AlignmentPanel ap = af.alignPanels.get(i);
1740       AlignFrame newaf = new AlignFrame(ap);
1741       if (ap.av.explodedPosition != null
1742               && !ap.av.explodedPosition.equals(af.getBounds()))
1743       {
1744         newaf.setBounds(ap.av.explodedPosition);
1745       }
1746
1747       ap.av.gatherViewsHere = false;
1748
1749       addInternalFrame(newaf, af.getTitle(), AlignFrame.DEFAULT_WIDTH,
1750               AlignFrame.DEFAULT_HEIGHT);
1751     }
1752
1753     af.alignPanels.clear();
1754     af.closeMenuItem_actionPerformed(true);
1755
1756   }
1757
1758   public void gatherViews(AlignFrame source)
1759   {
1760     source.viewport.gatherViewsHere = true;
1761     source.viewport.explodedPosition = source.getBounds();
1762     JInternalFrame[] frames = desktop.getAllFrames();
1763     String viewId = source.viewport.getSequenceSetId();
1764
1765     for (int t = 0; t < frames.length; t++)
1766     {
1767       if (frames[t] instanceof AlignFrame && frames[t] != source)
1768       {
1769         AlignFrame af = (AlignFrame) frames[t];
1770         boolean gatherThis = false;
1771         for (int a = 0; a < af.alignPanels.size(); a++)
1772         {
1773           AlignmentPanel ap = af.alignPanels.get(a);
1774           if (viewId.equals(ap.av.getSequenceSetId()))
1775           {
1776             gatherThis = true;
1777             ap.av.gatherViewsHere = false;
1778             ap.av.explodedPosition = af.getBounds();
1779             source.addAlignmentPanel(ap, false);
1780           }
1781         }
1782
1783         if (gatherThis)
1784         {
1785           af.alignPanels.clear();
1786           af.closeMenuItem_actionPerformed(true);
1787         }
1788       }
1789     }
1790
1791   }
1792
1793   jalview.gui.VamsasApplication v_client = null;
1794
1795   public void vamsasImport_actionPerformed(ActionEvent e)
1796   {
1797     if (v_client == null)
1798     {
1799       // Load and try to start a session.
1800       JalviewFileChooser chooser = new JalviewFileChooser(
1801               jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
1802
1803       chooser.setFileView(new JalviewFileView());
1804       chooser.setDialogTitle(MessageManager.getString("label.open_saved_vamsas_session"));
1805       chooser.setToolTipText(MessageManager
1806               .getString("label.select_vamsas_session_opened_as_new_vamsas_session"));
1807
1808       int value = chooser.showOpenDialog(this);
1809
1810       if (value == JalviewFileChooser.APPROVE_OPTION)
1811       {
1812         String fle = chooser.getSelectedFile().toString();
1813         if (!vamsasImport(chooser.getSelectedFile()))
1814         {
1815           JOptionPane
1816                   .showInternalMessageDialog(
1817                           Desktop.desktop,
1818                           MessageManager.formatMessage(
1819                                   "label.couldnt_import_as_vamsas_session",
1820                                   new String[]
1821                                   { fle }),
1822                           MessageManager
1823                                   .getString("label.vamsas_document_import_failed"),
1824                           JOptionPane.ERROR_MESSAGE);
1825         }
1826       }
1827     }
1828     else
1829     {
1830       jalview.bin.Cache.log
1831               .error("Implementation error - load session from a running session is not supported.");
1832     }
1833   }
1834
1835   /**
1836    * import file into a new vamsas session (uses jalview.gui.VamsasApplication)
1837    * 
1838    * @param file
1839    * @return true if import was a success and a session was started.
1840    */
1841   public boolean vamsasImport(URL url)
1842   {
1843     // TODO: create progress bar
1844     if (v_client != null)
1845     {
1846
1847       jalview.bin.Cache.log
1848               .error("Implementation error - load session from a running session is not supported.");
1849       return false;
1850     }
1851
1852     try
1853     {
1854       // copy the URL content to a temporary local file
1855       // TODO: be a bit cleverer here with nio (?!)
1856       File file = File.createTempFile("vdocfromurl", ".vdj");
1857       FileOutputStream fos = new FileOutputStream(file);
1858       BufferedInputStream bis = new BufferedInputStream(url.openStream());
1859       byte[] buffer = new byte[2048];
1860       int ln;
1861       while ((ln = bis.read(buffer)) > -1)
1862       {
1863         fos.write(buffer, 0, ln);
1864       }
1865       bis.close();
1866       fos.close();
1867       v_client = new jalview.gui.VamsasApplication(this, file,
1868               url.toExternalForm());
1869     } catch (Exception ex)
1870     {
1871       jalview.bin.Cache.log.error(
1872               "Failed to create new vamsas session from contents of URL "
1873                       + url, ex);
1874       return false;
1875     }
1876     setupVamsasConnectedGui();
1877     v_client.initial_update(); // TODO: thread ?
1878     return v_client.inSession();
1879   }
1880
1881   /**
1882    * import file into a new vamsas session (uses jalview.gui.VamsasApplication)
1883    * 
1884    * @param file
1885    * @return true if import was a success and a session was started.
1886    */
1887   public boolean vamsasImport(File file)
1888   {
1889     if (v_client != null)
1890     {
1891
1892       jalview.bin.Cache.log
1893               .error("Implementation error - load session from a running session is not supported.");
1894       return false;
1895     }
1896
1897     setProgressBar(MessageManager.formatMessage("status.importing_vamsas_session_from", new String[]{file.getName()}),
1898             file.hashCode());
1899     try
1900     {
1901       v_client = new jalview.gui.VamsasApplication(this, file, null);
1902     } catch (Exception ex)
1903     {
1904         setProgressBar(MessageManager.formatMessage("status.importing_vamsas_session_from", new String[]{file.getName()}),
1905                 file.hashCode());
1906       jalview.bin.Cache.log.error(
1907               "New vamsas session from existing session file failed:", ex);
1908       return false;
1909     }
1910     setupVamsasConnectedGui();
1911     v_client.initial_update(); // TODO: thread ?
1912     setProgressBar(MessageManager.formatMessage("status.importing_vamsas_session_from", new String[]{file.getName()}),
1913             file.hashCode());
1914     return v_client.inSession();
1915   }
1916
1917   public boolean joinVamsasSession(String mysesid)
1918   {
1919     if (v_client != null)
1920     {
1921       throw new Error(MessageManager.getString("error.try_join_vamsas_session_another"));
1922     }
1923     if (mysesid == null)
1924     {
1925       throw new Error(MessageManager.getString("error.invalid_vamsas_session_id"));
1926     }
1927     v_client = new VamsasApplication(this, mysesid);
1928     setupVamsasConnectedGui();
1929     v_client.initial_update();
1930     return (v_client.inSession());
1931   }
1932
1933   public void vamsasStart_actionPerformed(ActionEvent e)
1934   {
1935     if (v_client == null)
1936     {
1937       // Start a session.
1938       // we just start a default session for moment.
1939       /*
1940        * JalviewFileChooser chooser = new JalviewFileChooser(jalview.bin.Cache.
1941        * getProperty("LAST_DIRECTORY"));
1942        * 
1943        * chooser.setFileView(new JalviewFileView());
1944        * chooser.setDialogTitle("Load Vamsas file");
1945        * chooser.setToolTipText("Import");
1946        * 
1947        * int value = chooser.showOpenDialog(this);
1948        * 
1949        * if (value == JalviewFileChooser.APPROVE_OPTION) { v_client = new
1950        * jalview.gui.VamsasApplication(this, chooser.getSelectedFile());
1951        */
1952       v_client = new VamsasApplication(this);
1953       setupVamsasConnectedGui();
1954       v_client.initial_update(); // TODO: thread ?
1955     }
1956     else
1957     {
1958       // store current data in session.
1959       v_client.push_update(); // TODO: thread
1960     }
1961   }
1962
1963   protected void setupVamsasConnectedGui()
1964   {
1965     vamsasStart.setText(MessageManager.getString("label.session_update"));
1966     vamsasSave.setVisible(true);
1967     vamsasStop.setVisible(true);
1968     vamsasImport.setVisible(false); // Document import to existing session is
1969     // not possible for vamsas-client-1.0.
1970   }
1971
1972   protected void setupVamsasDisconnectedGui()
1973   {
1974     vamsasSave.setVisible(false);
1975     vamsasStop.setVisible(false);
1976     vamsasImport.setVisible(true);
1977     vamsasStart.setText(MessageManager
1978             .getString("label.new_vamsas_session"));
1979   }
1980
1981   public void vamsasStop_actionPerformed(ActionEvent e)
1982   {
1983     if (v_client != null)
1984     {
1985       v_client.end_session();
1986       v_client = null;
1987       setupVamsasDisconnectedGui();
1988     }
1989   }
1990
1991   protected void buildVamsasStMenu()
1992   {
1993     if (v_client == null)
1994     {
1995       String[] sess = null;
1996       try
1997       {
1998         sess = VamsasApplication.getSessionList();
1999       } catch (Exception e)
2000       {
2001         jalview.bin.Cache.log.warn(
2002                 "Problem getting current sessions list.", e);
2003         sess = null;
2004       }
2005       if (sess != null)
2006       {
2007         jalview.bin.Cache.log.debug("Got current sessions list: "
2008                 + sess.length + " entries.");
2009         VamsasStMenu.removeAll();
2010         for (int i = 0; i < sess.length; i++)
2011         {
2012           JMenuItem sessit = new JMenuItem();
2013           sessit.setText(sess[i]);
2014           sessit.setToolTipText(MessageManager.formatMessage(
2015                   "label.connect_to_session", new String[]
2016                   { sess[i] }));
2017           final Desktop dsktp = this;
2018           final String mysesid = sess[i];
2019           sessit.addActionListener(new ActionListener()
2020           {
2021
2022             public void actionPerformed(ActionEvent e)
2023             {
2024               if (dsktp.v_client == null)
2025               {
2026                 Thread rthr = new Thread(new Runnable()
2027                 {
2028
2029                   public void run()
2030                   {
2031                     dsktp.v_client = new VamsasApplication(dsktp, mysesid);
2032                     dsktp.setupVamsasConnectedGui();
2033                     dsktp.v_client.initial_update();
2034                   }
2035
2036                 });
2037                 rthr.start();
2038               }
2039             };
2040           });
2041           VamsasStMenu.add(sessit);
2042         }
2043         // don't show an empty menu.
2044         VamsasStMenu.setVisible(sess.length > 0);
2045
2046       }
2047       else
2048       {
2049         jalview.bin.Cache.log.debug("No current vamsas sessions.");
2050         VamsasStMenu.removeAll();
2051         VamsasStMenu.setVisible(false);
2052       }
2053     }
2054     else
2055     {
2056       // Not interested in the content. Just hide ourselves.
2057       VamsasStMenu.setVisible(false);
2058     }
2059   }
2060
2061   public void vamsasSave_actionPerformed(ActionEvent e)
2062   {
2063     if (v_client != null)
2064     {
2065       JalviewFileChooser chooser = new JalviewFileChooser(
2066               jalview.bin.Cache.getProperty("LAST_DIRECTORY"), new String[]
2067               { "vdj" }, // TODO: VAMSAS DOCUMENT EXTENSION is VDJ
2068               new String[]
2069               { "Vamsas Document" }, "Vamsas Document");
2070
2071       chooser.setFileView(new JalviewFileView());
2072       chooser.setDialogTitle(MessageManager.getString("label.save_vamsas_document_archive"));
2073
2074       int value = chooser.showSaveDialog(this);
2075
2076       if (value == JalviewFileChooser.APPROVE_OPTION)
2077       {
2078         java.io.File choice = chooser.getSelectedFile();
2079         JPanel progpanel = addProgressPanel(MessageManager.formatMessage("label.saving_vamsas_doc", new String[]{choice.getName()}));
2080         jalview.bin.Cache.setProperty("LAST_DIRECTORY", choice.getParent());
2081         String warnmsg = null;
2082         String warnttl = null;
2083         try
2084         {
2085           v_client.vclient.storeDocument(choice);
2086         } catch (Error ex)
2087         {
2088           warnttl = "Serious Problem saving Vamsas Document";
2089           warnmsg = ex.toString();
2090           jalview.bin.Cache.log.error("Error Whilst saving document to "
2091                   + choice, ex);
2092
2093         } catch (Exception ex)
2094         {
2095           warnttl = "Problem saving Vamsas Document.";
2096           warnmsg = ex.toString();
2097           jalview.bin.Cache.log.warn("Exception Whilst saving document to "
2098                   + choice, ex);
2099
2100         }
2101         removeProgressPanel(progpanel);
2102         if (warnmsg != null)
2103         {
2104           JOptionPane.showInternalMessageDialog(Desktop.desktop,
2105
2106           warnmsg, warnttl, JOptionPane.ERROR_MESSAGE);
2107         }
2108       }
2109     }
2110   }
2111
2112   JPanel vamUpdate = null;
2113
2114   /**
2115    * hide vamsas user gui bits when a vamsas document event is being handled.
2116    * 
2117    * @param b
2118    *          true to hide gui, false to reveal gui
2119    */
2120   public void setVamsasUpdate(boolean b)
2121   {
2122     jalview.bin.Cache.log.debug("Setting gui for Vamsas update "
2123             + (b ? "in progress" : "finished"));
2124
2125     if (vamUpdate != null)
2126     {
2127       this.removeProgressPanel(vamUpdate);
2128     }
2129     if (b)
2130     {
2131       vamUpdate = this.addProgressPanel(MessageManager.getString("label.updating_vamsas_session"));
2132     }
2133     vamsasStart.setVisible(!b);
2134     vamsasStop.setVisible(!b);
2135     vamsasSave.setVisible(!b);
2136   }
2137
2138   public JInternalFrame[] getAllFrames()
2139   {
2140     return desktop.getAllFrames();
2141   }
2142
2143   /**
2144    * Checks the given url to see if it gives a response indicating that the user
2145    * should be informed of a new questionnaire.
2146    * 
2147    * @param url
2148    */
2149   public void checkForQuestionnaire(String url)
2150   {
2151     UserQuestionnaireCheck jvq = new UserQuestionnaireCheck(url);
2152     // javax.swing.SwingUtilities.invokeLater(jvq);
2153     new Thread(jvq).start();
2154   }
2155
2156   /**
2157    * Proxy class for JDesktopPane which optionally displays the current memory
2158    * usage and highlights the desktop area with a red bar if free memory runs
2159    * low.
2160    * 
2161    * @author AMW
2162    */
2163   public class MyDesktopPane extends JDesktopPane implements Runnable
2164   {
2165
2166     boolean showMemoryUsage = false;
2167
2168     Runtime runtime;
2169
2170     java.text.NumberFormat df;
2171
2172     float maxMemory, allocatedMemory, freeMemory, totalFreeMemory,
2173             percentUsage;
2174
2175     public MyDesktopPane(boolean showMemoryUsage)
2176     {
2177       showMemoryUsage(showMemoryUsage);
2178     }
2179
2180     public void showMemoryUsage(boolean showMemoryUsage)
2181     {
2182       this.showMemoryUsage = showMemoryUsage;
2183       if (showMemoryUsage)
2184       {
2185         Thread worker = new Thread(this);
2186         worker.start();
2187       }
2188     }
2189
2190     public boolean isShowMemoryUsage()
2191     {
2192       return showMemoryUsage;
2193     }
2194
2195     public void run()
2196     {
2197       df = java.text.NumberFormat.getNumberInstance();
2198       df.setMaximumFractionDigits(2);
2199       runtime = Runtime.getRuntime();
2200
2201       while (showMemoryUsage)
2202       {
2203         try
2204         {
2205           maxMemory = runtime.maxMemory() / 1048576f;
2206           allocatedMemory = runtime.totalMemory() / 1048576f;
2207           freeMemory = runtime.freeMemory() / 1048576f;
2208           totalFreeMemory = freeMemory + (maxMemory - allocatedMemory);
2209
2210           percentUsage = (totalFreeMemory / maxMemory) * 100;
2211
2212           // if (percentUsage < 20)
2213           {
2214             // border1 = BorderFactory.createMatteBorder(12, 12, 12, 12,
2215             // Color.red);
2216             // instance.set.setBorder(border1);
2217           }
2218           repaint();
2219           // sleep after showing usage
2220           Thread.sleep(3000);
2221         } catch (Exception ex)
2222         {
2223           ex.printStackTrace();
2224         }
2225       }
2226     }
2227
2228     public void paintComponent(Graphics g)
2229     {
2230       if (showMemoryUsage && g != null && df != null)
2231       {
2232         if (percentUsage < 20)
2233         {
2234           g.setColor(Color.red);
2235         }
2236         FontMetrics fm = g.getFontMetrics();
2237         if (fm != null)
2238         {
2239           g.drawString(MessageManager.formatMessage(
2240                   "label.memory_stats",
2241                   new String[]
2242                   { df.format(totalFreeMemory), df.format(maxMemory),
2243                       df.format(percentUsage) }), 10,
2244                   getHeight() - fm.getHeight());
2245         }
2246       }
2247     }
2248   }
2249
2250   /**
2251    * fixes stacking order after a modal dialog to ensure windows that should be
2252    * on top actually are
2253    */
2254   public void relayerWindows()
2255   {
2256
2257   }
2258
2259   protected JMenuItem groovyShell;
2260
2261   public void doGroovyCheck()
2262   {
2263     if (jalview.bin.Cache.groovyJarsPresent())
2264     {
2265       groovyShell = new JMenuItem();
2266       groovyShell.setText(MessageManager.getString("label.groovy_console"));
2267       groovyShell.addActionListener(new ActionListener()
2268       {
2269         public void actionPerformed(ActionEvent e)
2270         {
2271           groovyShell_actionPerformed(e);
2272         }
2273       });
2274       toolsMenu.add(groovyShell);
2275       groovyShell.setVisible(true);
2276     }
2277   }
2278
2279   /**
2280    * Accessor method to quickly get all the AlignmentFrames loaded.
2281    */
2282   public static AlignFrame[] getAlignFrames()
2283   {
2284     JInternalFrame[] frames = Desktop.desktop.getAllFrames();
2285
2286     if (frames == null)
2287     {
2288       return null;
2289     }
2290     List<AlignFrame> avp = new ArrayList<AlignFrame>();
2291     // REVERSE ORDER
2292     for (int i = frames.length - 1; i > -1; i--)
2293     {
2294       if (frames[i] instanceof AlignFrame)
2295       {
2296         avp.add((AlignFrame) frames[i]);
2297       }
2298       else if (frames[i] instanceof SplitFrame)
2299       {
2300         /*
2301          * Also check for a split frame containing an AlignFrame
2302          */
2303         SplitFrame sf = (SplitFrame) frames[i];
2304         if (sf.getTopComponent() instanceof AlignFrame)
2305         {
2306           avp.add((AlignFrame) sf.getTopComponent());
2307         }
2308         if (sf.getBottomComponent() instanceof AlignFrame)
2309         {
2310           avp.add((AlignFrame) sf.getBottomComponent());
2311         }
2312       }
2313     }
2314     if (avp.size() == 0)
2315     {
2316       return null;
2317     }
2318     AlignFrame afs[] = avp.toArray(new AlignFrame[avp.size()]);
2319     return afs;
2320   }
2321
2322   /**
2323    * Returns an array of any AppJmol frames in the Desktop (or null if none).
2324    * 
2325    * @return
2326    */
2327   public AppJmol[] getJmols()
2328   {
2329     JInternalFrame[] frames = Desktop.desktop.getAllFrames();
2330
2331     if (frames == null)
2332     {
2333       return null;
2334     }
2335     List<AppJmol> avp = new ArrayList<AppJmol>();
2336     // REVERSE ORDER
2337     for (int i = frames.length - 1; i > -1; i--)
2338     {
2339       if (frames[i] instanceof AppJmol)
2340       {
2341         AppJmol af = (AppJmol) frames[i];
2342         avp.add(af);
2343       }
2344     }
2345     if (avp.size() == 0)
2346     {
2347       return null;
2348     }
2349     AppJmol afs[] = avp.toArray(new AppJmol[avp.size()]);
2350     return afs;
2351   }
2352
2353   /**
2354    * Add Groovy Support to Jalview
2355    */
2356   public void groovyShell_actionPerformed(ActionEvent e)
2357   {
2358     // use reflection to avoid creating compilation dependency.
2359     if (!jalview.bin.Cache.groovyJarsPresent())
2360     {
2361       throw new Error(MessageManager.getString("error.implementation_error_cannot_create_groovyshell"));
2362     }
2363     try
2364     {
2365       Class gcClass = Desktop.class.getClassLoader().loadClass(
2366               "groovy.ui.Console");
2367       Constructor gccons = gcClass.getConstructor(null);
2368       java.lang.reflect.Method setvar = gcClass.getMethod("setVariable",
2369               new Class[]
2370               { String.class, Object.class });
2371       java.lang.reflect.Method run = gcClass.getMethod("run", null);
2372       Object gc = gccons.newInstance(null);
2373       setvar.invoke(gc, new Object[]
2374       { "Jalview", this });
2375       run.invoke(gc, null);
2376     } catch (Exception ex)
2377     {
2378       jalview.bin.Cache.log.error("Groovy Shell Creation failed.", ex);
2379       JOptionPane
2380               .showInternalMessageDialog(
2381                       Desktop.desktop,
2382
2383                       MessageManager.getString("label.couldnt_create_groovy_shell"),
2384                       MessageManager.getString("label.groovy_support_failed"),
2385                       JOptionPane.ERROR_MESSAGE);
2386     }
2387   }
2388
2389   /**
2390    * Progress bars managed by the IProgressIndicator method.
2391    */
2392   private Hashtable<Long, JPanel> progressBars;
2393
2394   private Hashtable<Long, IProgressIndicatorHandler> progressBarHandlers;
2395
2396   /*
2397    * (non-Javadoc)
2398    * 
2399    * @see jalview.gui.IProgressIndicator#setProgressBar(java.lang.String, long)
2400    */
2401   public void setProgressBar(String message, long id)
2402   {
2403     if (progressBars == null)
2404     {
2405       progressBars = new Hashtable<Long, JPanel>();
2406       progressBarHandlers = new Hashtable<Long, IProgressIndicatorHandler>();
2407     }
2408
2409     if (progressBars.get(new Long(id)) != null)
2410     {
2411       JPanel progressPanel = progressBars.remove(new Long(id));
2412       if (progressBarHandlers.contains(new Long(id)))
2413       {
2414         progressBarHandlers.remove(new Long(id));
2415       }
2416       removeProgressPanel(progressPanel);
2417     }
2418     else
2419     {
2420       progressBars.put(new Long(id), addProgressPanel(message));
2421     }
2422   }
2423
2424   /*
2425    * (non-Javadoc)
2426    * 
2427    * @see jalview.gui.IProgressIndicator#registerHandler(long,
2428    * jalview.gui.IProgressIndicatorHandler)
2429    */
2430   public void registerHandler(final long id,
2431           final IProgressIndicatorHandler handler)
2432   {
2433     if (progressBarHandlers == null || !progressBars.contains(new Long(id)))
2434     {
2435       throw new Error(MessageManager.getString("error.call_setprogressbar_before_registering_handler"));
2436     }
2437     progressBarHandlers.put(new Long(id), handler);
2438     final JPanel progressPanel = progressBars.get(new Long(id));
2439     if (handler.canCancel())
2440     {
2441       JButton cancel = new JButton(
2442               MessageManager.getString("action.cancel"));
2443       final IProgressIndicator us = this;
2444       cancel.addActionListener(new ActionListener()
2445       {
2446
2447         public void actionPerformed(ActionEvent e)
2448         {
2449           handler.cancelActivity(id);
2450           us.setProgressBar(MessageManager.formatMessage("label.cancelled_params", new String[]{((JLabel) progressPanel.getComponent(0)).getText()}), id);
2451         }
2452       });
2453       progressPanel.add(cancel, BorderLayout.EAST);
2454     }
2455   }
2456
2457   /**
2458    * 
2459    * @return true if any progress bars are still active
2460    */
2461   @Override
2462   public boolean operationInProgress()
2463   {
2464     if (progressBars != null && progressBars.size() > 0)
2465     {
2466       return true;
2467     }
2468     return false;
2469   }
2470
2471   /**
2472    * This will return the first AlignFrame viewing AlignViewport av. It will
2473    * break if there are more than one AlignFrames viewing a particular av.
2474    * 
2475    * @param av
2476    * @return alignFrame for av
2477    */
2478   public static AlignFrame getAlignFrameFor(AlignViewport av)
2479   {
2480     if (desktop != null)
2481     {
2482       AlignmentPanel[] aps = getAlignmentPanels(av.getSequenceSetId());
2483       for (int panel = 0; aps != null && panel < aps.length; panel++)
2484       {
2485         if (aps[panel] != null && aps[panel].av == av)
2486         {
2487           return aps[panel].alignFrame;
2488         }
2489       }
2490     }
2491     return null;
2492   }
2493
2494   public VamsasApplication getVamsasApplication()
2495   {
2496     return v_client;
2497
2498   }
2499
2500   /**
2501    * flag set if jalview GUI is being operated programmatically
2502    */
2503   private boolean inBatchMode = false;
2504
2505   /**
2506    * check if jalview GUI is being operated programmatically
2507    * 
2508    * @return inBatchMode
2509    */
2510   public boolean isInBatchMode()
2511   {
2512     return inBatchMode;
2513   }
2514
2515   /**
2516    * set flag if jalview GUI is being operated programmatically
2517    * 
2518    * @param inBatchMode
2519    */
2520   public void setInBatchMode(boolean inBatchMode)
2521   {
2522     this.inBatchMode = inBatchMode;
2523   }
2524
2525   public void startServiceDiscovery()
2526   {
2527     startServiceDiscovery(false);
2528   }
2529
2530   public void startServiceDiscovery(boolean blocking)
2531   {
2532     boolean alive = true;
2533     Thread t0 = null, t1 = null, t2 = null;
2534     // JAL-940 - JALVIEW 1 services are now being EOLed as of JABA 2.1 release
2535     if (true)
2536     {
2537       // todo: changesupport handlers need to be transferred
2538       if (discoverer == null)
2539       {
2540         discoverer = new jalview.ws.jws1.Discoverer();
2541         // register PCS handler for desktop.
2542         discoverer.addPropertyChangeListener(changeSupport);
2543       }
2544       // JAL-940 - disabled JWS1 service configuration - always start discoverer
2545       // until we phase out completely
2546       (t0 = new Thread(discoverer)).start();
2547     }
2548
2549     // ENFIN services are EOLed as of Jalview 2.8.1 release
2550     if (false)
2551     {
2552       try
2553       {
2554         if (Cache.getDefault("SHOW_ENFIN_SERVICES", true))
2555         {
2556           // EnfinEnvision web service menu entries are rebuild every time the
2557           // menu is shown, so no changeSupport events are needed.
2558           jalview.ws.EnfinEnvision2OneWay.getInstance();
2559           (t1 = new Thread(jalview.ws.EnfinEnvision2OneWay.getInstance()))
2560                   .start();
2561         }
2562       } catch (Exception e)
2563       {
2564         Cache.log
2565                 .info("Exception when trying to launch Envision2 workflow discovery.",
2566                         e);
2567         Cache.log.info(e.getStackTrace());
2568       }
2569     }
2570
2571     if (Cache.getDefault("SHOW_JWS2_SERVICES", true))
2572     {
2573       if (jalview.ws.jws2.Jws2Discoverer.getDiscoverer().isRunning())
2574       {
2575         jalview.ws.jws2.Jws2Discoverer.getDiscoverer().setAborted(true);
2576       }
2577       t2 = jalview.ws.jws2.Jws2Discoverer.getDiscoverer().startDiscoverer(
2578               changeSupport);
2579
2580     }
2581     Thread t3 = null;
2582     {
2583       // TODO: do rest service discovery
2584     }
2585     if (blocking)
2586     {
2587       while (alive)
2588       {
2589         try
2590         {
2591           Thread.sleep(15);
2592         } catch (Exception e)
2593         {
2594         }
2595         alive = (t1 != null && t1.isAlive())
2596                 || (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               public void run()
2624               {
2625
2626                 /*
2627                  * JalviewDialog jd =new JalviewDialog() {
2628                  * 
2629                  * @Override protected void cancelPressed() { // TODO
2630                  * Auto-generated method stub
2631                  * 
2632                  * }@Override protected void okPressed() { // TODO
2633                  * Auto-generated method stub
2634                  * 
2635                  * }@Override protected void raiseClosed() { // TODO
2636                  * Auto-generated method stub
2637                  * 
2638                  * } }; jd.initDialogFrame(new
2639                  * JLabel("<html><table width=\"450\"><tr><td>" + ermsg +
2640                  * "<br/>It may be that you have invalid JABA URLs in your web service preferences,"
2641                  * + " or mis-configured HTTP proxy settings.<br/>" +
2642                  * "Check the <em>Connections</em> and <em>Web services</em> tab of the"
2643                  * +
2644                  * " Tools->Preferences dialog box to change them.</td></tr></table></html>"
2645                  * ), true, true, "Web Service Configuration Problem", 450,
2646                  * 400);
2647                  * 
2648                  * jd.waitForInput();
2649                  */
2650                 JOptionPane
2651                         .showConfirmDialog(
2652                                 Desktop.desktop,
2653                                 new JLabel(
2654                                         "<html><table width=\"450\"><tr><td>"
2655                                                 + ermsg
2656                                                 + "</td></tr></table>"
2657                                                 + "<p>It may be that you have invalid JABA URLs<br/>in your web service preferences,"
2658                                                 + "<br>or as a command-line argument, or mis-configured HTTP proxy settings.</p>"
2659                                                 + "<p>Check the <em>Connections</em> and <em>Web services</em> tab<br/>of the"
2660                                                 + " Tools->Preferences dialog box to change them.</p></html>"),
2661                                 "Web Service Configuration Problem",
2662                                 JOptionPane.DEFAULT_OPTION,
2663                                 JOptionPane.ERROR_MESSAGE);
2664                 serviceChangedDialog = null;
2665
2666               }
2667             });
2668           }
2669         }
2670         else
2671         {
2672           Cache.log
2673                   .error("Errors reported by JABA discovery service. Check web services preferences.\n"
2674                           + ermsg);
2675         }
2676       }
2677     }
2678   }
2679
2680   private Runnable serviceChangedDialog = null;
2681
2682   /**
2683    * start a thread to open a URL in the configured browser. Pops up a warning
2684    * dialog to the user if there is an exception when calling out to the browser
2685    * to open the URL.
2686    * 
2687    * @param url
2688    */
2689   public static void showUrl(final String url)
2690   {
2691     showUrl(url, Desktop.instance);
2692   }
2693
2694   /**
2695    * Like showUrl but allows progress handler to be specified
2696    * 
2697    * @param url
2698    * @param progress
2699    *          (null) or object implementing IProgressIndicator
2700    */
2701   public static void showUrl(final String url,
2702           final IProgressIndicator progress)
2703   {
2704     new Thread(new Runnable()
2705     {
2706       public void run()
2707       {
2708         try
2709         {
2710           if (progress != null)
2711           {
2712             progress.setProgressBar(MessageManager.formatMessage("status.opening_params", new String[]{url}), this.hashCode());
2713           }
2714           jalview.util.BrowserLauncher.openURL(url);
2715         } catch (Exception ex)
2716         {
2717           JOptionPane
2718                   .showInternalMessageDialog(
2719                           Desktop.desktop,
2720                           MessageManager.getString("label.web_browser_not_found_unix"),
2721                           MessageManager.getString("label.web_browser_not_found"),
2722                           JOptionPane.WARNING_MESSAGE);
2723
2724           ex.printStackTrace();
2725         }
2726         if (progress != null)
2727         {
2728           progress.setProgressBar(null, this.hashCode());
2729         }
2730       }
2731     }).start();
2732   }
2733
2734   public static WsParamSetManager wsparamManager = null;
2735
2736   public static ParamManager getUserParameterStore()
2737   {
2738     if (wsparamManager == null)
2739     {
2740       wsparamManager = new WsParamSetManager();
2741     }
2742     return wsparamManager;
2743   }
2744
2745   /**
2746    * static hyperlink handler proxy method for use by Jalview's internal windows
2747    * 
2748    * @param e
2749    */
2750   public static void hyperlinkUpdate(HyperlinkEvent e)
2751   {
2752     if (e.getEventType() == EventType.ACTIVATED)
2753     {
2754       String url = null;
2755       try
2756       {
2757         url = e.getURL().toString();
2758         Desktop.showUrl(url);
2759       } catch (Exception x)
2760       {
2761         if (url != null)
2762         {
2763           if (Cache.log != null)
2764           {
2765             Cache.log.error("Couldn't handle string " + url + " as a URL.");
2766           }
2767           else
2768           {
2769             System.err.println("Couldn't handle string " + url
2770                     + " as a URL.");
2771           }
2772         }
2773         // ignore any exceptions due to dud links.
2774       }
2775
2776     }
2777   }
2778
2779   /**
2780    * single thread that handles display of dialogs to user.
2781    */
2782   ExecutorService dialogExecutor = Executors.newSingleThreadExecutor();
2783
2784   /**
2785    * flag indicating if dialogExecutor should try to acquire a permit
2786    */
2787   private volatile boolean dialogPause = true;
2788
2789   /**
2790    * pause the queue
2791    */
2792   private java.util.concurrent.Semaphore block = new Semaphore(0);
2793
2794   /**
2795    * add another dialog thread to the queue
2796    * 
2797    * @param prompter
2798    */
2799   public void addDialogThread(final Runnable prompter)
2800   {
2801     dialogExecutor.submit(new Runnable()
2802     {
2803       public void run()
2804       {
2805         if (dialogPause)
2806         {
2807           try
2808           {
2809             block.acquire();
2810           } catch (InterruptedException x)
2811           {
2812           }
2813           ;
2814         }
2815         if (instance == null)
2816         {
2817           return;
2818         }
2819         try
2820         {
2821           SwingUtilities.invokeAndWait(prompter);
2822         } catch (Exception q)
2823         {
2824           Cache.log.warn("Unexpected Exception in dialog thread.", q);
2825         }
2826       }
2827     });
2828   }
2829
2830   public void startDialogQueue()
2831   {
2832     // set the flag so we don't pause waiting for another permit and semaphore
2833     // the current task to begin
2834     dialogPause = false;
2835     block.release();
2836   }
2837   @Override
2838   protected void snapShotWindow_actionPerformed(ActionEvent e)
2839   {
2840     invalidate();
2841     File of;
2842     ImageMaker im = new jalview.util.ImageMaker(this, ImageMaker.TYPE.EPS,
2843             "View of Desktop", getWidth(), getHeight(), of = new File(
2844                     "Jalview_snapshot" + System.currentTimeMillis()
2845                             + ".eps"), "View of desktop");
2846     try {
2847       paintAll(im.getGraphics());
2848       im.writeImage();
2849     } catch (Exception q)
2850     {
2851       Cache.log.error("Couldn't write snapshot to "+of.getAbsolutePath(),q);
2852       return;
2853     }
2854     Cache.log.info("Successfully written snapshot to file "+of.getAbsolutePath());
2855   }
2856 }