Package org.xnap.commons.gui

Examples of org.xnap.commons.gui.AboutDialog


    }

    public void actionPerformed(ActionEvent e)
    {
      if (dialog == null) {
        dialog = new AboutDialog();
        dialog.setTitle(i18n.tr("About JHylaFax {0}", getVersion()));
        dialog.setLocationRelativeTo(JHylaFAX.this);
        dialog.addHTMLTab(i18n.tr("General Information"), "about.html", true);
        JTextArea textArea = dialog.addTab(i18n.tr("License"), "LICENSE.jhylafax");
        textArea.setFont(new Font("Monospaced", Font.PLAIN, 10));
View Full Code Here

TOP

Related Classes of org.xnap.commons.gui.AboutDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.