Package hermes.browser.dialog

Source Code of hermes.browser.dialog.MapPropertyDialog

/*
* Copyright 2003,2004 Colin Crist
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

package hermes.browser.dialog;

import java.awt.Frame;
import java.awt.HeadlessException;
import java.awt.event.ActionEvent;
import java.util.Map;

import javax.swing.AbstractAction;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.SwingConstants;
import javax.swing.UIManager;

import com.jidesoft.dialog.ButtonPanel;
import com.jidesoft.dialog.StandardDialog;

/**
* A simple dialog that shows the properties of a bean - only deals with basic types.
*
* @author colincrist@hermesjms.com
* @version $Id: MapPropertyDialog.java,v 1.4 2006/02/08 09:17:08 colincrist Exp $
*/

public class MapPropertyDialog extends StandardDialog
{
    /**
   *
   */
  private static final long serialVersionUID = -2201822635263036312L;
  private MapPropertyPanel mapPanel;

    /**
     * @throws java.awt.HeadlessException
     */
    public MapPropertyDialog(Frame owner, String headerText, String comment, Map map, boolean editable) throws HeadlessException
    {
        super(owner, headerText, true);

        mapPanel = new MapPropertyPanel(comment, map, editable);
        mapPanel.init() ;
        pack() ;
        setLocationRelativeTo(null) ;

    }

    /*
     * (non-Javadoc)
     *
     * @see com.jidesoft.dialog.StandardDialog#createBannerPanel()
     */
    public JComponent createBannerPanel()
    {
        // TODO Auto-generated method stub
        return null;
    }

    /*
     * (non-Javadoc)
     *
     * @see com.jidesoft.dialog.StandardDialog#createContentPanel()
     */
    public JComponent createContentPanel()
    {
        return mapPanel;
    }

    /*
     * (non-Javadoc)
     *
     * @see com.jidesoft.dialog.StandardDialog#createButtonPanel()
     */
    public ButtonPanel createButtonPanel()
    {
        final ButtonPanel buttonPanel = new ButtonPanel(SwingConstants.RIGHT);

        AbstractAction okButtonAction = new AbstractAction(UIManager.getString("OptionPane.okButtonText"))
        {
            /**
       *
       */
      private static final long serialVersionUID = -7972988497933837263L;

      public void actionPerformed(ActionEvent arg0)
            {
                mapPanel.doOK();
                setDialogResult(RESULT_AFFIRMED);
                setVisible(false);
                dispose();
            }
        };

        AbstractAction cancelButtonAction = new AbstractAction(UIManager.getString("OptionPane.cancelButtonText"))
        {
            /**
       *
       */
      private static final long serialVersionUID = -4199961023918150328L;

      public void actionPerformed(ActionEvent arg0)
            {
                mapPanel.doCancel();
                setDialogResult(RESULT_CANCELLED);
                setVisible(false);
                dispose();
            }
        };

        JButton okButton = new JButton(okButtonAction);
        JButton cancelButton = new JButton(cancelButtonAction);

        buttonPanel.addButton(okButton);
        buttonPanel.addButton(cancelButton);
        buttonPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));

        cancelButton.setEnabled(mapPanel.isEditable());

      
        return buttonPanel;
    }

    public void addOKAction(Runnable r)
    {
        mapPanel.addOKAction(r);
    }

}
TOP

Related Classes of hermes.browser.dialog.MapPropertyDialog

TOP
Copyright © 2018 www.massapi.com. 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.