1   package org.wcb.gui.forms;
2   
3   
4   import org.wcb.gui.component.JScanLinePanel;
5   
6   import javax.swing.*;
7   import java.awt.*;
8   
9   /**
10   * <small>
11   * Copyright (c)  2006  wbogaardt.
12   * This library is free software; you can redistribute it and/or
13   * modify it under the terms of the GNU Lesser General Public
14   * License as published by the Free Software Foundation; either
15   * version 2.1 of the License, or (at your option) any later version.
16   *
17   * This library is distributed in the hope that it will be useful,
18   * but WITHOUT ANY WARRANTY; without even the implied warranty of
19   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20   * Lesser General Public License for more details.
21   *
22   * You should have received a copy of the GNU Lesser General Public
23   * License along with this library; if not, write to the Free Software
24   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
25   * <p/>
26   * $File:  $ <br>
27   * $Change:  $ submitted by $Author: wbogaardt $ at $DateTime: Apr 7, 2006 10:16:01 AM $ <br>
28   * </small>
29   *
30   * @author wbogaardt
31   * @version 1
32   *          Date: Apr 7, 2006
33   *          Time: 10:16:01 AM
34   */
35  
36  public class AboutPanel extends JScanLinePanel {
37  
38      public AboutPanel() {
39          init();
40      }
41  
42      private void init() {
43          GridBagConstraints gridBagConstraints;
44  
45          JLabel jLabel1 = new JLabel();
46  
47          setLayout(new GridBagLayout());
48  
49          jLabel1.setText("<html>Version 1.0<br>"
50                  + "© 2006, Softlandings, "
51                  + "All rights reserved.<br>"
52                  + "Pilot's Log is a pilot log book application, that allows import,<br>"
53                  + "export and tracking of flight hours. There are customizable<br>"
54                  + "reports, and totals for the FAA 8710 form.<br>"
55                  + "<br>"
56                  + "The program is written as part of Softlanding projects, and has<br>" +
57                  " been implemented using some of the latest web based technologies.<br>" +
58                  "You can read more about this at http://softlanding.sourceforge.net<br>"
59                  + "<br>"
60                  + "For further information contact Walter Bogaardt<br>"
61                  + " at wbogaardt@users.sourceforge.net<p><br></html> ");
62          gridBagConstraints = new java.awt.GridBagConstraints();
63          gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
64          add(jLabel1, gridBagConstraints);
65  
66      }
67  }