Package net.datacrow.console.windows

Source Code of net.datacrow.console.windows.DcDialog

/******************************************************************************
*                                     __                                     *
*                              <-----/@@\----->                              *
*                             <-< <  \\//  > >->                             *
*                               <-<-\ __ /->->                               *
*                               Data /  \ Crow                               *
*                                   ^    ^                                   *
*                              info@datacrow.net                             *
*                                                                            *
*                       This file is part of Data Crow.                      *
*       Data Crow is free software; you can redistribute it and/or           *
*        modify it under the terms of the GNU General Public                 *
*       License as published by the Free Software Foundation; either         *
*              version 3 of the License, or any later version.               *
*                                                                            *
*        Data Crow is distributed in the hope that it will be useful,        *
*      but WITHOUT ANY WARRANTY; without even the implied warranty of        *
*           MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.             *
*           See the GNU General Public License for more details.             *
*                                                                            *
*        You should have received a copy of the GNU General Public           *
*  License along with this program. If not, see http://www.gnu.org/licenses  *
*                                                                            *
******************************************************************************/

package net.datacrow.console.windows;

import java.awt.Graphics;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.Date;
import java.util.concurrent.atomic.AtomicBoolean;

import javax.swing.Action;
import javax.swing.JComponent;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.KeyStroke;

import net.datacrow.console.ComponentFactory;
import net.datacrow.core.DataCrow;
import net.datacrow.core.plugin.PluginHelper;
import net.datacrow.util.DcSwingUtilities;
import net.datacrow.util.Utilities;

import org.apache.log4j.Logger;

public class DcDialog extends JDialog implements IDialog {

    private static Logger logger = Logger.getLogger(DcDialog.class.getName());
   
    private String helpIndex = null;
    private AtomicBoolean active;

    public DcDialog(JFrame parent) {
        super(parent);
       
        addWindowListener(new WindowAdapter() {
            @Override
            public void windowClosing(WindowEvent e) {
                close();
            }
        });
       
        setDefaultCloseOperation(DISPOSE_ON_CLOSE);
        setModal(true);

        PluginHelper.registerKey(getRootPane(), "Help");
        PluginHelper.registerKey(getRootPane(), "CloseWindow");
    }

    public DcDialog() {
        this(DcSwingUtilities.getRootFrame());
    }
   
    @Override
    public void setModal(AtomicBoolean active) {
        this.active = active;
    }
    @Override
    public void dispose() {
        if (active != null) {
            synchronized (active) {
                active.set(false);
                active.notifyAll();
            }
        }
       
        try {
            super.dispose();
        } catch (Exception e) {}
    }

    @Override
    public void setVisible(boolean b) {
        if (b && DataCrow.isSplashScreenActive())
            DataCrow.showSplashScreen(false);
       
        if (!b) dispose();
       
        super.setVisible(b);
    }

    public void close() {
        long start = logger.isDebugEnabled() ? new Date().getTime() : 0;
       
        helpIndex = null;
       
        if (rootPane.getInputMap() != null)
            rootPane.getInputMap().clear();
       
        if (rootPane.getActionMap() != null)
            rootPane.getActionMap().clear();
       
        rootPane.setActionMap(null);       
       
        ComponentFactory.clean(getContentPane());
       
        dispose();
       
        if (DataCrow.isSplashScreenActive())
            DataCrow.showSplashScreen(true);
       
        if (logger.isDebugEnabled()) {
            long end = new Date().getTime();
            logger.debug("Disposing of the dialog and its resources took " + (end - start) + "ms");
       
    }

    public void setHelpIndex(String helpIndex) {
      this.helpIndex = helpIndex;
    }

    public String getHelpIndex() {
        return helpIndex;
    }

    public void setCenteredLocation() {
        setLocation(Utilities.getCenteredWindowLocation(getSize(), false));
    }
   
    @Override
    public void paint(Graphics g) {
        super.paint(DcSwingUtilities.setRenderingHint(g));
    }   
   
    protected void addKeyListener(KeyStroke keyStroke, Action action, String name) {
        rootPane.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(keyStroke, name);
        rootPane.getActionMap().put(name, action);
    }   
}
TOP

Related Classes of net.datacrow.console.windows.DcDialog

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.