alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.autoupdate;

import java.awt.Font;
import javax.swing.JButton;

import org.openide.DialogDescriptor;
import org.openide.DialogDisplayer;
import org.openide.util.NbBundle;

/** Panel and dialog for showing LicenceAgreement.
 * @author  Petr Hrebejk
 */
class LicenceDialog extends javax.swing.JPanel {

    /** Preferred size of this dialog */
    private static final java.awt.Dimension preferredSize = new java.awt.Dimension( 620, 475 );

    /** The only Licence panel instance in system */
    private static LicenceDialog licencePanel;
    /** The dialog descriptor of licence dialog */
    private static DialogDescriptor dialogDescriptor = null;
    /** The Licence dialog */
    private static java.awt.Dialog dialog = null;
    /** Licence dialog Accept button */
    private static JButton acceptButton;
    /** Licence dialog Decline button */
    private static JButton declineButton;
    /** Is the licence accepted */
    private static boolean accepted = false;

    static final long serialVersionUID =-4862117522808181670L;
    /** Creates new form LicencePanel */
    public LicenceDialog() {
        initComponents ();

        getAccessibleContext().setAccessibleName(getBundle("CTL_Licence_Title"));
        getAccessibleContext().setAccessibleDescription(getBundle("ACS_LicenceDialog"));
        licenceTextArea.getAccessibleContext().setAccessibleName(getBundle("ACS_LicenceDialog_Licence"));
        licenceTextArea.getAccessibleContext().setAccessibleDescription(getBundle("ACSD_LicenceDialog_Licence"));
    }

    /** Overload getPreffered size to get a bit bigger dialog */
    public java.awt.Dimension getPreferredSize() {
        return preferredSize;
    }

    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the FormEditor.
     */
    private void initComponents() {//GEN-BEGIN:initComponents
        jScrollPane1 = new javax.swing.JScrollPane();
        licenceTextArea = new javax.swing.JTextArea();

        setLayout(new java.awt.BorderLayout());

        setBorder(new javax.swing.border.EmptyBorder(new java.awt.Insets(8, 8, 8, 8)));
        licenceTextArea.setEditable(false);
        licenceTextArea.setFont(new Font("Monospaced", Font.PLAIN, licenceTextArea.getFont().getSize() + 1));
        jScrollPane1.setViewportView(licenceTextArea);

        add(jScrollPane1, java.awt.BorderLayout.CENTER);

    }//GEN-END:initComponents


    // Variables declaration - do not modify//GEN-BEGIN:variables
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTextArea licenceTextArea;
    // End of variables declaration//GEN-END:variables

    void setLicenceText( String licenceText ) {
        licenceTextArea.setText( licenceText );
        licenceTextArea.setCaretPosition(0);
        licenceTextArea.revalidate();
    }

    static boolean acceptLicence( String licenceText ) {
        if ( dialog == null ) {
            createDialog();
        }

        licencePanel.setLicenceText( licenceText );


        accepted = false;
        dialog.show();

        return accepted;
    }

    private static void createDialog() {
        licencePanel = new LicenceDialog();

        acceptButton = new JButton( getBundle( "CTL_Licence_Accept" ) );
        acceptButton.setMnemonic(getBundle( "ACS_Licence_Accept_mnc" ).charAt(0) );        
        declineButton = new JButton( getBundle( "CTL_Licence_Decline" ));
        declineButton.setMnemonic(getBundle( "ACS_Licence_Decline_mnc" ).charAt(0) );
        
        acceptButton.getAccessibleContext().setAccessibleDescription(getBundle("ACS_Licence_Accept"));
        declineButton.getAccessibleContext().setAccessibleDescription(getBundle("ACS_Licence_Decline"));

        dialogDescriptor = new DialogDescriptor(
                               licencePanel,
                               getBundle( "CTL_Licence_Title" ),
                               true,                                                 // Modal
                               new Object[] { acceptButton, declineButton },         // Option list
                               acceptButton,                                         // Default
                               DialogDescriptor.BOTTOM_ALIGN,                        // Align
                               null,                                                 // Help
                               new java.awt.event.ActionListener() {
                                   public void actionPerformed( java.awt.event.ActionEvent evt ) {
                                       if ( evt.getSource() == acceptButton )
                                           accepted = true;
                                       else
                                           accepted = false;

                                       dialog.setVisible( false );
                                   }
                               });

        dialog = DialogDisplayer.getDefault().createDialog( dialogDescriptor );
    }

    private static String getBundle( String key ) {
        return NbBundle.getMessage( LicenceDialog.class, key );
    }
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.