/** * AboutBox.java * * Copyright 2000 Eliad Technologies, Inc. All Rights Reserved. * * This software is the proprietary information of Eliad Technologies, Inc. */ package MultiDimTable; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.border.*; public class AboutBox extends JDialog implements ActionListener { JPanel panel1 = new JPanel(); JPanel panel2 = new JPanel(); JPanel insetsPanel1 = new JPanel(); JPanel insetsPanel2 = new JPanel(); JPanel insetsPanel3 = new JPanel(); JButton buttonOK = new JButton("OK"); JLabel imageControl1 = new JLabel(); ImageIcon imageIcon; JLabel label1 = new JLabel("Advanced Tutorial for JSmartGrid 1.0"); JLabel label2 = new JLabel("Copyright (c) 2000 Eliad Technologies, Inc."); JLabel label3 = new JLabel("All Rights Reserved."); BorderLayout borderLayout1 = new BorderLayout(); BorderLayout borderLayout2 = new BorderLayout(); FlowLayout flowLayout1 = new FlowLayout(); FlowLayout flowLayout2 = new FlowLayout(); GridLayout gridLayout1 = new GridLayout(); JLabel jLabel1 = new JLabel(); public AboutBox(Frame parent) { super(parent); enableEvents(AWTEvent.WINDOW_EVENT_MASK); try { componentInit(); } catch(Exception e) { e.printStackTrace(); } pack(); } private void componentInit() throws Exception { this.setTitle("About"); imageIcon = new ImageIcon(getClass().getResource("../images/logo.gif")); setResizable(false); panel1.setLayout(borderLayout1); panel2.setLayout(borderLayout2); insetsPanel1.setLayout(flowLayout1); insetsPanel2.setLayout(flowLayout1); insetsPanel2.setBorder(new EmptyBorder(10, 10, 10, 10)); gridLayout1.setRows(3); gridLayout1.setColumns(1); insetsPanel3.setLayout(gridLayout1); insetsPanel3.setBorder(new EmptyBorder(10, 60, 10, 10)); buttonOK.addActionListener(this); jLabel1.setIcon(imageIcon); insetsPanel2.add(imageControl1, null); insetsPanel2.add(jLabel1, null); panel2.add(insetsPanel2, BorderLayout.WEST); this.getContentPane().add(panel1, null); insetsPanel3.add(label1, null); insetsPanel3.add(label2, null); insetsPanel3.add(label3, null); panel2.add(insetsPanel3, BorderLayout.CENTER); insetsPanel1.add(buttonOK, null); panel1.add(insetsPanel1, BorderLayout.SOUTH); panel1.add(panel2, BorderLayout.NORTH); } protected void processWindowEvent(WindowEvent e) { if (e.getID() == WindowEvent.WINDOW_CLOSING) { cancel(); } super.processWindowEvent(e); } void cancel() { dispose(); } public void actionPerformed(ActionEvent e) { if (e.getSource() == buttonOK) { cancel(); } } }