KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > genimen > djeneric > tools > common > AboutDialog


1 /*
2  * Copyright (c) 2001-2005 by Genimen BV (www.genimen.com) All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without modification, is permitted
5  * provided that the following conditions are met:
6  * - Redistributions of source code must retain the above copyright notice, this list of conditions
7  * and the following disclaimer.
8  * - Redistributions in binary form must reproduce the above copyright notice, this list of
9  * conditions and the following disclaimer in the documentation and/or other materials
10  * provided with the distribution.
11  * - All advertising materials mentioning features or use of this software must display the
12  * following acknowledgment: "This product includes Djeneric."
13  * - Products derived from this software may not be called "Djeneric" nor may
14  * "Djeneric" appear in their names without prior written permission of Genimen BV.
15  * - Redistributions of any form whatsoever must retain the following acknowledgment: "This
16  * product includes Djeneric."
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL GENIMEN BV, DJENERIC.ORG,
22  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */

30 package com.genimen.djeneric.tools.common;
31
32 import java.awt.BorderLayout JavaDoc;
33 import java.awt.Color JavaDoc;
34 import java.awt.Dimension JavaDoc;
35 import java.awt.Frame JavaDoc;
36 import java.awt.Toolkit JavaDoc;
37 import java.awt.event.ActionEvent JavaDoc;
38
39 import javax.swing.BorderFactory JavaDoc;
40 import javax.swing.JButton JavaDoc;
41 import javax.swing.JDialog JavaDoc;
42 import javax.swing.JPanel JavaDoc;
43 import javax.swing.border.BevelBorder JavaDoc;
44 import javax.swing.border.Border JavaDoc;
45
46 import com.genimen.djeneric.language.Messages;
47 import com.genimen.djeneric.util.DjLogger;
48
49 public class AboutDialog extends JDialog JavaDoc
50 {
51   private static final long serialVersionUID = 1L;
52   JPanel JavaDoc panel1 = new JPanel JavaDoc();
53   BorderLayout JavaDoc borderLayout1 = new BorderLayout JavaDoc();
54   AboutPanel aboutPanel = new AboutPanel();
55   JPanel JavaDoc jPanel2 = new JPanel JavaDoc();
56   JPanel JavaDoc jPanel3 = new JPanel JavaDoc();
57   JButton JavaDoc jButton1 = new JButton JavaDoc();
58   BorderLayout JavaDoc borderLayout2 = new BorderLayout JavaDoc();
59   Border JavaDoc border1;
60
61   public AboutDialog(Frame JavaDoc frame)
62   {
63     super(frame, Messages.getString("AboutDialog.AboutDjeneric"), true);
64     try
65     {
66       jbInit();
67       pack();
68
69       Dimension JavaDoc screenSize = Toolkit.getDefaultToolkit().getScreenSize();
70       Dimension JavaDoc frameSize = getSize();
71       if (frameSize.height > screenSize.height) frameSize.height = screenSize.height;
72
73       if (frameSize.width > screenSize.width) frameSize.width = screenSize.width;
74
75       setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
76
77       setVisible(true);
78     }
79     catch (Exception JavaDoc ex)
80     {
81       DjLogger.log(ex);
82     }
83   }
84
85   void jbInit() throws Exception JavaDoc
86   {
87     border1 = BorderFactory.createBevelBorder(BevelBorder.RAISED, Color.white, Color.white, new Color JavaDoc(103, 101, 98),
88                                               new Color JavaDoc(148, 145, 140));
89     panel1.setLayout(borderLayout1);
90     jPanel3.setLayout(borderLayout2);
91     jButton1.setText(Messages.getString("global.Ok"));
92     jButton1.addActionListener(new java.awt.event.ActionListener JavaDoc()
93     {
94       public void actionPerformed(ActionEvent JavaDoc e)
95       {
96         jButton1_actionPerformed(e);
97       }
98     });
99     getContentPane().add(panel1);
100     panel1.add(aboutPanel, BorderLayout.CENTER);
101     panel1.add(jPanel3, BorderLayout.SOUTH);
102     jPanel3.add(jPanel2, BorderLayout.EAST);
103     jPanel2.add(jButton1, null);
104   }
105
106   void jButton1_actionPerformed(ActionEvent JavaDoc e)
107   {
108     setVisible(false);
109   }
110 }
Popular Tags