/*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program 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 Lesser General Public License for more details.
*
* Copyright (c) 2008 - 2009 Pentaho Corporation, . All rights reserved.
*/
package org.pentaho.reporting.designer.core;
import java.awt.Component;
import java.beans.PropertyChangeListener;
import javax.swing.JComponent;
import javax.swing.JPopupMenu;
import org.pentaho.reporting.designer.core.editor.ReportRenderContext;
import org.pentaho.reporting.designer.core.settings.RecentFilesModel;
import org.pentaho.reporting.engine.classic.core.MasterReport;
import org.pentaho.reporting.engine.classic.core.ReportDataFactoryException;
import org.pentaho.reporting.engine.classic.core.SubReport;
/**
* A model that holds the current active render-context. A report-designer frame can have more than one render-context.
* It also has a welcome and a preview pane.
*
* @author Thomas Morgner
*/
public interface ReportDesignerContext
{
public static final String REPORT_RENDER_CONTEXT_PROPERTY = "reportRenderContext";
public static final String ACTIVE_CONTEXT_PROPERTY = "activeContext";
public static final String STATUS_TEXT_PROPERTY = "statusText";
public RecentFilesModel getRecentFilesModel();
public ReportRenderContext getActiveContext();
public void setActiveContext(ReportRenderContext context);
public void setStatusText(String text);
public Component getParent();
public JPopupMenu getPopupMenu(final String id);
public JComponent getToolBar(final String id);
public int addMasterReport(final MasterReport masterReportElement) throws ReportDataFactoryException;
public int addSubReport(final ReportRenderContext parentReportContext,
final SubReport subReportElement) throws ReportDataFactoryException;
public ReportRenderContext getReportRenderContext(int index);
public int getReportRenderContextCount();
public void removeReportRenderContext(int index);
public void addPropertyChangeListener(final PropertyChangeListener listener);
public void addPropertyChangeListener(final String property, final PropertyChangeListener listener);
public void removePropertyChangeListener(final PropertyChangeListener listener);
public void removePropertyChangeListener(final String property, final PropertyChangeListener listener);
public ReportDesignerView getView();
public int findActiveContextIndex();
public boolean isSelectionWaiting();
public void setSelectionWaiting(final boolean selectionWaiting);
}
|