Search in sources :

Example 1 with SystemPropertiesPanel

use of org.jfree.ui.about.SystemPropertiesPanel in project jgnash by ccavanaugh.

the class AboutDialog method initComponents.

private void initComponents() {
    tabbedPane = new javax.swing.JTabbedPane();
    setTitle(rb.getString("Title.About"));
    addHTMLTab(rb.getString("Menu.About.Name"), "notice.html");
    addHTMLTab(rb.getString("Tab.Credits"), "credits.html");
    JComponent defaultTab = addHTMLTab("jGnash License", "jgnash-license.html");
    addHTMLTab(rb.getString("Tab.GPLLicense"), "gpl-license.html");
    addHTMLTab(rb.getString("Tab.LGPLLicense"), "lgpl.html");
    addHTMLTab("Apache License", "apache-license.html");
    addHTMLTab("JGoodies Common License", "jgoodies-common-license.html");
    addHTMLTab("JGoodies Forms License", "jgoodies-forms-license.html");
    addHTMLTab("JGoodies Looks License", "jgoodies-looks-license.html");
    addHTMLTab("Tango Icons License", "sharealike-license.html");
    addHTMLTab("XStream License", "xstream-license.html");
    addHTMLTab("Substance License", "substance-license.html");
    addHTMLTab("JXLayer License", "jxlayer-license.html");
    tabbedPane.addTab(rb.getString("Tab.SysInfo"), new SystemPropertiesPanel());
    tabbedPane.setSelectedComponent(defaultTab);
}
Also used : JTabbedPane(javax.swing.JTabbedPane) JComponent(javax.swing.JComponent) SystemPropertiesPanel(org.jfree.ui.about.SystemPropertiesPanel)

Aggregations

JComponent (javax.swing.JComponent)1 JTabbedPane (javax.swing.JTabbedPane)1 SystemPropertiesPanel (org.jfree.ui.about.SystemPropertiesPanel)1