/***************************************************************** JADE - Java Agent DEvelopment Framework is a framework to develop multi-agent systems in compliance with the FIPA specifications. Copyright (C) 2000 CSELT S.p.A. GNU Lesser General Public License This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, version 2.1 of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *****************************************************************/ package jade.gui; //#J2ME_EXCLUDE_FILE // Import required Java classes import java.awt.Color; import java.awt.Graphics; import java.awt.Container; import java.awt.GridBagLayout; import java.awt.GridBagConstraints; import java.awt.Window; import java.awt.EventQueue; import java.awt.Dimension; import java.awt.Point; import java.awt.event.*; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JDialog; import javax.swing.JPanel; import javax.swing.AbstractAction; import javax.swing.ImageIcon; /** This class provide the About dialog for Jade. @author Tiziana Trucco - CSELT S.p.A @version $Date: 2005-04-15 17:45:02 +0200 (ven, 15 apr 2005) $ $Revision: 5669 $ */ public class AboutJadeAction extends AbstractAction { /** @serial */ private JFrame gui; /** @serial */ private JLabel label; /** @serial */ Color dark_blue = new java.awt.Color(0,0,160); /** @serial */ String logojade = "images/jadelogo.jpg"; String check = "images/tick_blue.gif"; /** @serial */ String logocselt = "images/logotelecomlab.jpg"; public AboutJadeAction(JFrame gui) { super ("About JADE"); this.gui = gui; setEnabled(true); } public void actionPerformed(ActionEvent e) { final AboutFrame f = new AboutFrame(gui,"About JADE"); f.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { f.disposeAsync(); } }); f.addMouseListener(new MouseClick()); Container theCont = f.getContentPane(); GridBagLayout gridbag = new GridBagLayout(); GridBagConstraints c = new GridBagConstraints(); theCont.setLayout(gridbag); theCont.setBackground(Color.white); c.fill = GridBagConstraints.HORIZONTAL; label = new JLabel(" "); c.weightx = 0.5; //c.gridwidth = 3; c.gridx =0; c.gridy=0; gridbag.setConstraints(label,c); theCont.add(label); ImageIcon jadeicon = new ImageIcon(getClass().getResource(logojade)); label = new JLabel(jadeicon); c.gridx =0; c.gridy=1; gridbag.setConstraints(label,c); theCont.add(label); label = new JLabel(jade.core.Runtime.getVersionInfo()); label.setForeground(dark_blue); JPanel tmp1 = new JPanel(); tmp1.add(label,java.awt.BorderLayout.CENTER); tmp1.setBackground(Color.white); c.gridwidth =3; c.gridx = 0; c.gridy = 2; gridbag.setConstraints(tmp1,c); theCont.add(tmp1); label = new JLabel(" "); c.gridwidth = 1; c.gridx = 0; c.gridy = 3; gridbag.setConstraints(label,c); theCont.add(label); JPanel tmp = new JPanel(); tmp.setLayout(new javax.swing.BoxLayout(tmp,javax.swing.BoxLayout.X_AXIS)); String fipalogo = "images/fipalogo.jpg"; ImageIcon fipaicon = new ImageIcon(getClass().getResource(fipalogo)); label = new JLabel(fipaicon); tmp.add(label); JPanel panel = new JPanel(); panel.setLayout(new javax.swing.BoxLayout(panel,javax.swing.BoxLayout.Y_AXIS)); ImageIcon checkIcon = new ImageIcon(getClass().getResource(check)); label = new JLabel("1st FIPA Interoperability test - Seoul, Jan 1999",checkIcon,JLabel.LEFT); label.setForeground(Color.blue); panel.add(label); label = new JLabel("2nd FIPA Interoperability test - London, Apr 2001",checkIcon,JLabel.LEFT); label.setForeground(Color.blue); panel.add(label); tmp.add(panel); c.gridx =0; c.gridy = 4; gridbag.setConstraints(tmp,c); theCont.add(tmp); label = new JLabel(" "); c.gridx = 0; c.gridy = 6; gridbag.setConstraints(label,c); theCont.add(label); label = new JLabel("Copyright (C) 2000 CSELT S.p.A.; 2003 TILAB"); label.setForeground(dark_blue); c.gridx = 0; c.gridy = 7; gridbag.setConstraints(label,c); theCont.add(label); label = new JLabel("Distributed under GNU LGPL"); label.setForeground(dark_blue); c.gridx = 0; c.gridy = 8; gridbag.setConstraints(label,c); theCont.add(label); label = new JLabel("http://jade.tilab.com/"); label.setForeground(dark_blue); c.gridx = 0; c.gridy = 9; gridbag.setConstraints(label,c); theCont.add(label); ImageIcon cselticon = new ImageIcon(getClass().getResource(logocselt)); label = new JLabel(cselticon); c.ipady = 50; c.gridx = 0; c.gridy = 11; gridbag.setConstraints(label,c); theCont.add(label); f.setModal(true); //f.setSize(f.getPreferredSize()); f.setSize(new Dimension(350,350)); f.setLocation(gui.getX()+(gui.getWidth()- f.getWidth())/2, gui.getY()+ (gui.getHeight() - f.getHeight())/ 2); f.setVisible(true); } private class AboutFrame extends JDialog { public AboutFrame(JFrame owner, String name){ super(owner, name); } public void disposeAsync() { class disposeIt implements Runnable { private Window toDispose; public disposeIt(Window w) { toDispose = w; } public void run() { toDispose.dispose(); } } //#DOTNET_EXCLUDE_BEGIN EventQueue.invokeLater(new disposeIt(this)); //#DOTNET_EXCLUDE_END } } private class MouseClick implements MouseListener { public void mouseClicked(MouseEvent event) { ((AboutFrame)(event.getSource())).disposeAsync(); } public void mouseReleased(MouseEvent event){} public void mouseEntered(MouseEvent event){} public void mouseExited(MouseEvent event){} public void mousePressed(MouseEvent event){} } }