1 /* DefaultSplashScreensCommons2012.java
2 Copyright (C) 2012 Red Hat, Inc.
3 
4 This file is part of IcedTea.
5 
6 IcedTea is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10 
11 IcedTea is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15 
16 You should have received a copy of the GNU General Public License
17 along with IcedTea; see the file COPYING.  If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
20 
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library.  Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
25 
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module.  An independent module is a module which is not derived from
33 or based on this library.  If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so.  If you do not wish to do so, delete this
36 exception statement from your version. */
37 package net.sourceforge.jnlp.splashscreen.impls;
38 
39 import java.awt.Graphics;
40 import java.awt.event.ComponentAdapter;
41 import java.awt.event.ComponentEvent;
42 import java.awt.event.MouseAdapter;
43 import java.awt.event.MouseEvent;
44 
45 import net.sourceforge.jnlp.about.AboutDialog;
46 import net.sourceforge.jnlp.splashscreen.impls.defaultsplashscreen2012.BasePainter;
47 import net.sourceforge.jnlp.splashscreen.parts.BasicComponentSplashScreen;
48 import net.sourceforge.jnlp.util.docprovider.TextsProvider;
49 
50 public final class DefaultSplashScreens2012Commons {
51 
52     private final BasicComponentSplashScreen parent;
53     private final BasePainter painter;
54 
55 
DefaultSplashScreens2012Commons(BasePainter painterr, BasicComponentSplashScreen parentt)56     public DefaultSplashScreens2012Commons(BasePainter painterr, BasicComponentSplashScreen parentt) {
57         this.painter = painterr;
58         this.parent = parentt;
59         parent.addMouseListener(new MouseAdapter() {
60 
61             @Override
62             public void mouseClicked(MouseEvent e) {
63                 painter.increaseAnimationPosition();
64                 parent.repaint();
65             }
66         });
67         parent.addMouseListener(new MouseAdapter() {
68 
69             @Override
70             public void mouseClicked(MouseEvent e) {
71                 if (e.getY() < painter.getAboutOfset().y && e.getX() > (painter.getAboutOfset().x)) {
72                     AboutDialog.display(TextsProvider.ITW_PLUGIN);
73                 }
74             }
75         });
76         // Add a new listener for resizes
77         parent.addComponentListener(new ComponentAdapter() {
78             // Re-adjust variables based on size
79 
80             @Override
81             public void componentResized(ComponentEvent e) {
82                 parent.setSplashWidth(parent.getWidth());
83                 parent.setSplashHeight(parent.getHeight());
84                 parent.adjustForSize();
85                 parent.repaint();
86             }
87         });
88     }
89 
paintTo(Graphics g)90     public void paintTo(Graphics g) {
91         painter.paint(g);
92 
93 
94     }
95 
adjustForSize()96     public void adjustForSize() {
97         painter.adjustForSize(parent.getSplashWidth(), parent.getSplashHeight());
98     }
99 
stopAnimation()100     public void stopAnimation() {
101         parent.setAnimationRunning(false);
102     }
103 
104     /**
105      * Methods to start the animation in the splash panel.
106      *
107      * This method exits after starting a new thread to do the animation. It
108      * is synchronized to prevent multiple startAnimation threads from being created.
109      */
startAnimation()110     public synchronized  void startAnimation() {
111         if (parent.isAnimationRunning()) {
112             return;
113         }
114         parent.setAnimationRunning(true);
115         painter.startAnimationThreads();
116 
117     }
118 
setPercentage(int done)119     public void setPercentage(int done) {
120         painter.clearCachedWaterTextImage();
121         painter.setWaterLevel(done);
122     }
123 
getPercentage()124     public int getPercentage() {
125         return painter.getWaterLevel();
126     }
127 
128 
129 }
130