{\r
Image image =null;\r
try{\r
- java.net.URL url = getClass().getResource("/images/BartonGroupBanner.gif");\r
+ java.net.URL url = getClass().getResource("/images/logo.gif");\r
if(url!=null)\r
{\r
image = java.awt.Toolkit.getDefaultToolkit().createImage(url);\r
frame.setClosable(true);\r
frame.setMaximizable(true);\r
frame.setIconifiable(true);\r
+ frame.setFrameIcon(null);\r
frame.setLocation(xOffset*openFrameCount, yOffset*openFrameCount);\r
frame.toFront();\r
final JMenuItem menuItem = new JMenuItem(title);\r
public void aboutMenuItem_actionPerformed(ActionEvent e)\r
{\r
JOptionPane.showInternalMessageDialog(Desktop.desktop,\r
- "JalView 2005"\r
+ "JalView 2005 version " + jalview.bin.Cache.VERSION+"; last updated: "+jalview.bin.Cache.BUILD_DATE\r
+"\nAuthors: Michele Clamp, James Cuff, Steve Searle, Andrew Waterhouse, Jim Procter & Geoff Barton."\r
+"\nCurrent development managed by Andrew Waterhouse; Barton Group, University of Dundee."\r
+"\nIf you use JalView, please cite: \"Clamp, M., Cuff, J., Searle, S. M. and Barton, G. J. (2004), The Jalview Java Alignment Editor\"",\r
g.setColor(Color.white);\r
g.fillRect(0,0,getWidth(),getHeight());\r
g.setColor(Color.black);\r
- g.setFont( new Font("Verdana", Font.BOLD, fontSize+4));\r
+ g.setFont( new Font("Verdana", Font.BOLD, fontSize+6));\r
if(image!=null)\r
- g.drawImage(image, 5,yoffset+10,this);\r
- g.drawString("JalView 2005", 50,yoffset);\r
+ g.drawImage(image, 5,yoffset+12,this);\r
+ g.drawString("JalView 2005 ", 50,yoffset);\r
+ g.setFont( new Font("Verdana", Font.BOLD, fontSize+2));\r
+ g.drawString("Version "+jalview.bin.Cache.VERSION+"; Last updated: "+jalview.bin.Cache.BUILD_DATE, 180,yoffset);\r
g.setFont( new Font("Verdana", Font.BOLD, fontSize));\r
g.drawString("Authors: Michele Clamp, James Cuff, Steve Searle, Andrew Waterhouse, Jim Procter & Geoff Barton.",50,yoffset+20);\r
g.drawString("Current development managed by Andrew Waterhouse; Barton Group, University of Dundee.",50,yoffset+20+fontSize);\r