ca.nengo.ui.util.DialogPlotter.java Source code

Java tutorial

Introduction

Here is the source code for ca.nengo.ui.util.DialogPlotter.java

Source

/*
The contents of this file are subject to the Mozilla Public License Version 1.1 
(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.mozilla.org/MPL/
    
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
WARRANTY OF ANY KIND, either express or implied. See the License for the specific 
language governing rights and limitations under the License.
    
The Original Code is "DialogPlotter.java". Description: 
"Plotter uses dialog rather than frames to support parent-child relationship
  with NeoGraphics components.
      
  @author Shu Wu"
    
The Initial Developer of the Original Code is Bryan Tripp & Centre for Theoretical Neuroscience, University of Waterloo. Copyright (C) 2006-2008. All Rights Reserved.
    
Alternatively, the contents of this file may be used under the terms of the GNU 
Public License license (the GPL License), in which case the provisions of GPL 
License are applicable  instead of those above. If you wish to allow use of your 
version of this file only under the terms of the GPL License and not to allow 
others to use your version of this file under the MPL, indicate your decision 
by deleting the provisions above and replace  them with the notice and other 
provisions required by the GPL License.  If you do not delete the provisions above,
a recipient may use your version of this file under either the MPL or the GPL License.
*/

/*
 * Created on 15-Jun-2006
 */
package ca.nengo.ui.util;

import java.awt.BorderLayout;

import javax.swing.JDialog;
import javax.swing.JPanel;

import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;

import ca.nengo.plot.impl.DefaultPlotter;

/**
 * Plotter uses dialog rather than frames to support parent-child relationship
 * with NeoGraphics components.
 * 
 * @author Shu Wu
 */
public class DialogPlotter extends DefaultPlotter {

    private JDialog parent;

    public DialogPlotter(JDialog parentPanel) {
        super();
        this.parent = parentPanel;
    }

    @Override
    protected void showChart(JFreeChart chart, String title) {
        JPanel panel = new ChartPanel(chart);

        JDialog dialog = new JDialog(parent, title);
        dialog.getContentPane().add(panel, BorderLayout.CENTER);

        dialog.pack();
        dialog.setVisible(true);
    }

}