JAL-4217 close internal frame on the swing thread to avoid deadlock
[jalview.git] / src / jalview / gui / SplashScreen.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.gui;
22
23 import java.awt.BorderLayout;
24 import java.awt.Color;
25 import java.awt.Component;
26 import java.awt.Dimension;
27 import java.awt.Font;
28 import java.awt.Graphics;
29 import java.awt.Image;
30 import java.awt.MediaTracker;
31 import java.awt.event.MouseAdapter;
32 import java.awt.event.MouseEvent;
33
34 import javax.swing.JInternalFrame;
35 import javax.swing.JLabel;
36 import javax.swing.JLayeredPane;
37 import javax.swing.JPanel;
38 import javax.swing.JTextPane;
39 import javax.swing.SwingUtilities;
40 import javax.swing.event.HyperlinkEvent;
41 import javax.swing.event.HyperlinkListener;
42
43 import jalview.util.ChannelProperties;
44 import jalview.util.Platform;
45
46 /**
47  * DOCUMENT ME!
48  * 
49  * @author $author$
50  * @version $Revision$
51  */
52 public class SplashScreen extends JPanel
53         implements Runnable, HyperlinkListener
54 {
55   private static final int SHOW_FOR_SECS = 5;
56
57   private static final int FONT_SIZE = 11;
58
59   private boolean visible = true;
60
61   private JPanel iconimg = new JPanel(new BorderLayout());
62
63   // could change fg, bg, font later to use ChannelProperties (these are not
64   // actually being used!)
65   private static Color bg = Color.WHITE;
66
67   private static Color fg = Color.BLACK;
68
69   private static Font font = new Font("SansSerif", Font.PLAIN, FONT_SIZE);
70
71   /*
72    * as JTextPane in Java, JLabel in javascript
73    */
74   private Component splashText;
75
76   private JInternalFrame iframe;
77
78   private Image image;
79
80   private boolean transientDialog = false;
81
82   private long oldTextLength = -1;
83
84   public static int logoSize = 32;
85
86   /*
87    * allow click in the initial splash screen to dismiss it
88    * immediately (not if opened from About menu)
89    */
90   private MouseAdapter closer = new MouseAdapter()
91   {
92     @Override
93     public void mousePressed(MouseEvent evt)
94     {
95       if (transientDialog)
96       {
97         try
98         {
99           visible = false;
100           closeSplash();
101         } catch (Exception ex)
102         {
103         }
104       }
105     }
106   };
107
108   /**
109    * Constructor that displays the splash screen
110    * 
111    * @param isTransient
112    *          if true the panel removes itself on click or after a few seconds;
113    *          if false it stays up until closed by the user
114    */
115   public SplashScreen(boolean isTransient)
116   {
117     this.transientDialog = isTransient;
118     if (this.transientDialog)
119     {
120       Desktop.instance.acquireDialogQueue();
121     }
122
123     if (Platform.isJS()) // BH 2019
124     {
125       splashText = new JLabel("");
126       run();
127     }
128     else
129     {
130       /**
131        * Java only
132        *
133        * @j2sIgnore
134        */
135       {
136         splashText = new JTextPane();
137         splashText.setBackground(bg);
138         splashText.setForeground(fg);
139         splashText.setFont(font);
140         Thread t = new Thread(this);
141         t.start();
142       }
143     }
144   }
145
146   /**
147    * ping the jalview version page then create and display the jalview
148    * splashscreen window.
149    */
150   void initSplashScreenWindow()
151   {
152     addMouseListener(closer);
153
154     try
155     {
156       if (!Platform.isJS())
157       {
158         image = ChannelProperties.getImage("banner");
159         Image logo = ChannelProperties.getImage("logo.48");
160         MediaTracker mt = new MediaTracker(this);
161         if (image != null)
162         {
163           mt.addImage(image, 0);
164         }
165         if (logo != null)
166         {
167           mt.addImage(logo, 1);
168         }
169         do
170         {
171           try
172           {
173             mt.waitForAll();
174           } catch (InterruptedException x)
175           {
176           }
177           if (mt.isErrorAny())
178           {
179             jalview.bin.Console.errPrintln("Error when loading images!");
180           }
181         } while (!mt.checkAll());
182         Desktop.instance.setIconImages(ChannelProperties.getIconList());
183       }
184     } catch (Exception ex)
185     {
186     }
187
188     this.setBackground(bg);
189     this.setForeground(fg);
190     this.setFont(font);
191
192     iframe = new JInternalFrame();
193     iframe.setFrameIcon(null);
194     iframe.setClosable(true);
195     this.setLayout(new BorderLayout());
196     iframe.setContentPane(this);
197     iframe.setLayer(JLayeredPane.PALETTE_LAYER);
198     iframe.setBackground(bg);
199     iframe.setForeground(fg);
200     iframe.setFont(font);
201
202     if (Platform.isJS())
203     {
204       // ignore in JavaScript
205     }
206     else
207     /**
208      * Java only
209      * 
210      * @j2sIgnore
211      */
212     {
213       ((JTextPane) splashText).setEditable(false);
214       splashText.setBackground(bg);
215       splashText.setForeground(fg);
216       splashText.setFont(font);
217
218       SplashImage splashimg = new SplashImage(image);
219       iconimg.add(splashimg, BorderLayout.LINE_START);
220       iconimg.setBackground(bg);
221       add(iconimg, BorderLayout.NORTH);
222     }
223     add(splashText, BorderLayout.CENTER);
224     splashText.addMouseListener(closer);
225     Desktop.desktop.add(iframe);
226     refreshText();
227   }
228
229   /**
230    * update text in author text panel reflecting current version information
231    */
232   protected boolean refreshText()
233   {
234     String newtext = Desktop.instance.getAboutMessage();
235     // jalview.bin.Console.errPrintln("Text found: \n"+newtext+"\nEnd of
236     // newtext.");
237     if (oldTextLength != newtext.length())
238     {
239       iframe.setVisible(false);
240       oldTextLength = newtext.length();
241       if (Platform.isJS()) // BH 2019
242       {
243         /*
244          * SwingJS doesn't have HTMLEditorKit, required for a JTextPane
245          * to display formatted html, so we use a simple alternative
246          */
247         String text = "<html><br><img src=\""
248                 + ChannelProperties.getImageURL("banner") + "\"/>" + newtext
249                 + "<br></html>";
250         JLabel ta = new JLabel(text);
251         ta.setOpaque(true);
252         ta.setBackground(Color.white);
253         splashText = ta;
254       }
255       else
256       /**
257        * Java only
258        *
259        * @j2sIgnore
260        */
261       {
262         JTextPane jtp = new JTextPane();
263         jtp.setEditable(false);
264         jtp.setBackground(bg);
265         jtp.setForeground(fg);
266         jtp.setFont(font);
267         jtp.setContentType("text/html");
268         jtp.setText("<html>" + newtext + "</html>");
269         jtp.addHyperlinkListener(this);
270         splashText = jtp;
271       }
272       splashText.addMouseListener(closer);
273
274       splashText.setVisible(true);
275       splashText.setSize(new Dimension(750,
276               425 + logoSize + (Platform.isJS() ? 40 : 0)));
277       splashText.setBackground(bg);
278       splashText.setForeground(fg);
279       splashText.setFont(font);
280       add(splashText, BorderLayout.CENTER);
281       revalidate();
282       int width = Math.max(splashText.getWidth(), iconimg.getWidth());
283       int height = splashText.getHeight() + iconimg.getHeight();
284       iframe.setBounds(
285               Math.max(0, (Desktop.instance.getWidth() - width) / 2),
286               Math.max(0, (Desktop.instance.getHeight() - height) / 2),
287               width, height);
288       iframe.validate();
289       iframe.setVisible(true);
290       return true;
291     }
292     return false;
293   }
294
295   /**
296    * Create splash screen, display it and clear it off again.
297    */
298   @Override
299   public void run()
300   {
301     initSplashScreenWindow();
302
303     long startTime = System.currentTimeMillis() / 1000;
304
305     while (visible)
306     {
307       iframe.repaint();
308       try
309       {
310         Thread.sleep(500);
311       } catch (Exception ex)
312       {
313       }
314
315       if (transientDialog && ((System.currentTimeMillis() / 1000)
316               - startTime) > SHOW_FOR_SECS)
317       {
318         visible = false;
319       }
320
321       if (visible && refreshText())
322       {
323         iframe.repaint();
324       }
325       if (!transientDialog)
326       {
327         return;
328       }
329     }
330
331     closeSplash();
332   }
333
334   /**
335    * DOCUMENT ME!
336    */
337   public void closeSplash()
338   {
339     if (this.transientDialog)
340     {
341       Desktop.instance.releaseDialogQueue();
342     }
343     try
344     {
345       final JInternalFrame frme = iframe;
346       SwingUtilities.invokeLater(new Runnable()
347       {
348         @Override
349         public void run()
350         {
351           try
352           {
353             frme.setClosed(true);
354           } catch (Exception ex)
355           {
356           }
357         }
358       });
359     } catch (Exception ex)
360     {
361     }
362   }
363
364   public class SplashImage extends JPanel
365   {
366     Image image;
367
368     public SplashImage(Image todisplay)
369     {
370       image = todisplay;
371       if (image != null)
372       {
373         setPreferredSize(new Dimension(image.getWidth(this) + 8,
374                 image.getHeight(this)));
375       }
376     }
377
378     @Override
379     public Dimension getPreferredSize()
380     {
381       return new Dimension(image.getWidth(this) + 8, image.getHeight(this));
382     }
383
384     @Override
385     public void paintComponent(Graphics g)
386     {
387       g.setColor(bg);
388       g.fillRect(0, 0, getWidth(), getHeight());
389       g.setColor(fg);
390       g.setFont(new Font(font.getFontName(), Font.BOLD, FONT_SIZE + 6));
391
392       if (image != null)
393       {
394         g.drawImage(image, (getWidth() - image.getWidth(this)) / 2,
395                 (getHeight() - image.getHeight(this)) / 2, this);
396       }
397     }
398   }
399
400   @Override
401   public void hyperlinkUpdate(HyperlinkEvent e)
402   {
403     Desktop.hyperlinkUpdate(e);
404
405   }
406 }