2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
19 package jalview.bin;
\r
21 import jalview.appletgui.AlignFrame;
\r
23 import jalview.datamodel.*;
\r
25 import jalview.io.*;
\r
27 import java.applet.*;
\r
30 import java.awt.event.*;
\r
34 * Jalview Applet. Runs in Java 1.18 runtime
\r
37 * @version $Revision$
\r
39 public class JalviewLite extends Applet
\r
41 static int lastFrameX = 200;
\r
42 static int lastFrameY = 200;
\r
43 boolean fileFound = true;
\r
44 String file = "No file";
\r
45 Button launcher = new Button("Start Jalview");
\r
46 public static boolean AWT1 = false;
\r
48 AlignFrame currentAlignFrame;
\r
52 * init method for Jalview Applet
\r
56 String version = System.getProperty("java.version");
\r
57 if (version.indexOf("1.1") == 0)
\r
63 String param = getParameter("RGB");
\r
69 r = Integer.parseInt(param.substring(0, 2), 16);
\r
70 g = Integer.parseInt(param.substring(2, 4), 16);
\r
71 b = Integer.parseInt(param.substring(4, 6), 16);
\r
73 catch (Exception ex)
\r
81 this.setBackground(new Color(r, g, b));
\r
84 param = getParameter("features");
\r
87 if(param.indexOf("://")==-1)
\r
88 param = getCodeBase() + param;
\r
90 final String featuresFile = param;
\r
92 file = getParameter("file");
\r
93 final JalviewLite applet = this;
\r
97 if(file.indexOf("://")==-1)
\r
98 file = getCodeBase() + file;
\r
100 launcher.addActionListener(new java.awt.event.ActionListener()
\r
102 public void actionPerformed(ActionEvent e)
\r
104 String format = jalview.io.IdentifyFile.Identify(file,
\r
106 LoadingThread loader = new LoadingThread(file,
\r
122 public static void main(String [] args)
\r
126 System.out.println("\nUsage: java -jar jalviewApplet.jar fileName\n");
\r
130 String format = jalview.io.IdentifyFile.Identify(args[0],"File");
\r
131 SequenceI[] sequences = new AppletFormatAdapter().readFile(args[0], "File", format);
\r
133 if ( (sequences != null) && (sequences.length > 0))
\r
135 AlignFrame af = new AlignFrame(new Alignment(sequences), null, args[0]);
\r
136 af.statusBar.setText("Successfully loaded file " + args[0]);
\r
142 * Initialises and displays a new java.awt.Frame
\r
144 * @param frame java.awt.Frame to be displayed
\r
145 * @param title title of new frame
\r
146 * @param width width if new frame
\r
147 * @param height height of new frame
\r
149 public static void addFrame(final Frame frame, String title, int width,
\r
152 frame.setLocation(lastFrameX, lastFrameY);
\r
155 frame.setSize(width, height);
\r
156 frame.setTitle(title);
\r
157 frame.addWindowListener(new WindowAdapter()
\r
159 public void windowClosing(WindowEvent e)
\r
164 frame.setVisible(true);
\r
167 public String getAlignment(String format)
\r
169 return getAlignment(format, "true");
\r
172 public String getAlignment(String format, String suffix)
\r
176 boolean seqlimits = suffix.equalsIgnoreCase("true");
\r
178 String reply = new AppletFormatAdapter().formatSequences(format,
\r
179 currentAlignFrame.viewport.getAlignment().getSequences(),
\r
183 catch (Exception ex)
\r
184 {ex.printStackTrace();
\r
185 return "Error retrieving alignment in " + format + " format. ";
\r
191 * This paints the background surrounding the "Launch Jalview button"
\r
193 * <br>If file given in parameter not found, displays error message
\r
195 * @param g graphics context
\r
197 public void paint(Graphics g)
\r
201 g.setColor(new Color(200, 200, 200));
\r
202 g.setColor(Color.cyan);
\r
203 g.fillRect(0, 0, getSize().width, getSize().height);
\r
204 g.setColor(Color.red);
\r
205 g.drawString("Jalview can't open file", 5, 15);
\r
206 g.drawString("\"" + file + "\"", 5, 30);
\r
210 class LoadingThread extends Thread
\r
215 String featuresFile;
\r
216 JalviewLite applet;
\r
218 public LoadingThread(String file,
\r
222 JalviewLite applet)
\r
225 this.protocol = protocol;
\r
226 this.format = format;
\r
227 featuresFile = features;
\r
228 this.applet = applet;
\r
233 SequenceI[] sequences = null;
\r
234 sequences = new AppletFormatAdapter().readFile(file, protocol, format);
\r
236 if ((sequences != null) && (sequences.length > 0))
\r
238 currentAlignFrame = new AlignFrame(new Alignment(sequences),
\r
240 currentAlignFrame.statusBar.setText("Successfully loaded file " + file);
\r
242 if(featuresFile!=null)
\r
243 currentAlignFrame.parseFeaturesFile(featuresFile);
\r