Package org.jfree.report.modules.gui.base

This module provides basic preview capabilities for JFreeReport.

See:
          Description

Interface Summary
ExportPlugin An export plug-in is a class that can work with the ExportAction class to implement an export function for reports.
ExportTaskListener An export task listener will be informed about the state of an exporttask.
PreviewProxy A proxy for the report preview component.
 

Class Summary
AboutAction The About action is used to show some information about the current programm, to which the printpreview belongs to.
AbstractExportPlugin The AbstractExportPlugin provides a basic implementation of the ExportPlugin interface.
CloseAction An action for closing the print preview frame.
ExportAction An export action that works with any class that implements the ExportPlugin interface.
ExportPluginFactory An export plug-in factory.
ExportTask The export task provides a basic facility to execute an export task in an asynchronous worker thread.
FirstPageAction Creates a new FirstPageAction used by the PreviewPane to directly jump to the first page of the report.
GotoPageAction The GotoPageAction is used to direclty jump to a page.
LastPageAction Creates a new LastPageAction used by the PreviewPane to directly jump to the last page of the report.
NextPageAction Creates a new NextPageAction used by the PreviewPane to directly jump to the next page of the report.
PreviewApplet The preview applet implements the preview proxy interface for JApplets.
PreviewBaseModule The preview base module provides the basic preview components.
PreviewDialog A standard print preview dialog for any JFreeReport.
PreviewFrame A standard print preview frame for any JFreeReport.
PreviewInternalFrame An internal frame that is used to preview reports.
PreviewProxyBase A preview proxy.
PreviousPageAction Creates a new PreviousPageAction used by the PreviewPane to directly jump to the previous page of the report.
ReportPane A panel used to display one page of a report.
ReportProgressBar  
ReportProgressDialog A progress monitor dialog component that visualizes the report processing progress.
ZoomInAction The zoomIn action is used to increase the ZoomFactor of the report.
ZoomOutAction The zoomOut action is used to decrease the ZoomFactor of the report.
 

Package org.jfree.report.modules.gui.base Description

This module provides basic preview capabilities for JFreeReport. The preview components use worker threads to perform the pagination and exports.

The various export dialogs will register at this module an plug their functionality into the preview components.

The preview components should be closed when they are no longer used, by calling "close()" to shutdown the workerthreads and to free the used resources.

This module requires the Graphics2D output target to be present.

Configuration keys:

Property name Type Description
org.jfree.report.modules.gui.base.PreviewBase.ToolbarFloatable boolean Defines, whether the toolbar will be floatable. This is not enabled by default.
org.jfree.report.modules.gui.base.PreferredWidth relative-int Defines a preferred size for the preview frame. Both width and height must be set, proportional values are allowed (100%, 90% etc). They have the same syntax as the proportional values in the xml definition.
org.jfree.report.modules.gui.base.PreferredHeight relative-int Defines a preferred size for the preview frame. Both width and height must be set, proportional values are allowed (100%, 90% etc). They have the same syntax as the proportional values in the xml definition.
org.jfree.report.modules.gui.base.MaximumWidth relative-int Defines a maximum size for the preview frame. Both width and height must be set, proportional values are allowed (100%, 90% etc). They have the same syntax as the proportional values in the xml definition.
org.jfree.report.modules.gui.base.MaximumHeight relative-int Defines a maximum size for the preview frame. Both width and height must be set, proportional values are allowed (100%, 90% etc). They have the same syntax as the proportional values in the xml definition.
org.jfree.report.modules.gui.base.EncodingsAvailable string

The property that defines which encodings are available in the export dialogs. This property defaults to "all" and can be set to either "all", "none" or "file".

If the property is set to "file", then the list of available properties is read from the file defined in the property "org.jfree.report.encodings.file".

org.jfree.report.modules.gui.base.EncodingsFile string

The name of the properties file used to define the available encodings. The property points to a resources in the classpath, not to a real file!

This setting defaults to "/org/jfree/report/modules/gui/base/components/jfreereport-encodings.properties"

org.jfree.report.modules.gui.base.SwingDialogTranslation boolean Defines, whether to translate the default components of Swing. This is disabled by default