![]()
Using the PDF Viewer Component
In previous examples, the ICEpdf library has been used as a standalone renderer for capturing page content and extracting document information. The ICEpdf library can also be used to create a full-feature PDF Viewer component which can be inserted into any Java application. For more information on the viewer component features, see Reference Implementations and Examples .
The PDF Viewer application is a reference implementation (RI) application, meaning that all source code used to implement the application is available to developers to modify as required.
The PDF Viewer RI uses the Model-View-Controller (MVC) design pattern for communication between the user, the GUI and the PDF document data. The PDF Viewer's data model is implemented by the ViewModel class. The view, which presents the user interface, is implemented using standard Java Swing components and is constructed by the SwingViewBuilder class. The controller, which interacts between the user, view and data model is represented by the SwingController class.
This relationship can be seen in Figure 3-1. The combination of the MVC design and the SwingViewBuilder and SwingController classes provides a very powerful and easily adaptable approach to PDF Viewer GUI development. Developers using ICEpdf can readily customize the Viewer user-interface with a very shallow learning curve and minimal coding effort.
The com.icesoft.pdf.ri.common.SwingController class provides convenience methods for the most common UI actions, such as rotating the document, setting the zoom level, etc. The com.icesoft.pdf.ri.common.SwingViewBuilder class is responsible for creating the PDF Viewer component panel populated with Swing components configured to work with the SwingController. When using the SwingViewBuilder and SwingController classes, it is usually not necessary to use the Document object directly. The SwingController class does this for us.
The following code snippet illustrates how to build a PDF Viewer component:
String filePath = "somefilepath/myfile.pdf"; // build a controller SwingController controller = new SwingController(); // Build a SwingViewFactory configured with the controller SwingViewBuilder factory = new SwingViewBuilder( controller); // Use the factory to build a JPanel that is pre-configured // with a complete, active Viewer UI. JPanel viewerComponentPanel = factory.buildViewerPanel(); // Create a JFrame to display the panel in JFrame window = new JFrame( "Using the Viewer Component"); window.getContentPane().add( viewerComponentPanel); window.pack(); window.setVisible( true); // Open a PDF document to view controller.openDocument( filePath );Note: The SwingViewBuilder class provides numerous methods that enable developers to quickly create custom viewer user interfaces (UIs) by including only those UI controls that are required, customizing existing UI controls, etc. Refer to com.icesoft.pdf.ri.common.SwingViewBuilder in the JavaDoc API documentation and Customizing the SwingViewBuilder for more information.
See ICEpdf Viewer Application for a complete example.
|
Copyright 2005-2007. ICEsoft Technologies, Inc. http://www.icesoft.com |