|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.awt.Component
java.awt.Container
javax.swing.JComponent
javax.swing.JPanel
org.faceless.pdf2.viewer2.DocumentViewport
public abstract class DocumentViewport
A DocumentViewport displays a view of a PDF inside a DocumentPanel,
although it can also be instantiated on it's own if required. It typically will contain
one or more PagePanel objects along with scrollbars and whatever else is required
to display the document in limited screen space.
See the viewer tutorial for more detail on how to use this class and the "viewer" package.
This code is copyright the Big Faceless Organization. You're welcome to use, modify and distribute it in any form in your own projects, provided those projects continue to make use of the Big Faceless PDF library.
PagePanel,
DocumentPanel,
Serialized Form| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class javax.swing.JPanel |
|---|
JPanel.AccessibleJPanel |
| Nested classes/interfaces inherited from class javax.swing.JComponent |
|---|
JComponent.AccessibleJComponent |
| Nested classes/interfaces inherited from class java.awt.Container |
|---|
Container.AccessibleAWTContainer |
| Nested classes/interfaces inherited from class java.awt.Component |
|---|
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy |
| Field Summary |
|---|
| Fields inherited from class javax.swing.JComponent |
|---|
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
| Fields inherited from class java.awt.Component |
|---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
| Fields inherited from interface java.awt.image.ImageObserver |
|---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
| Constructor Summary | |
|---|---|
DocumentViewport()
|
|
DocumentViewport(LayoutManager manager)
|
|
| Method Summary | |
|---|---|
abstract void |
addPagePanelInteractionListener(PagePanelInteractionListener listener)
Add a PagePanelInteractionListener to any PagePanel objects that have been
or will be created by this DocumentViewport |
abstract void |
addPagePanelListener(PagePanelListener listener)
Add a PagePanelListener to any PagePanel objects that have been
or will be created by this DocumentViewport |
abstract Adjustable |
getAdjustable(int position)
Return the "Adjustable" object for the specified position - typically this is the horizontal or vertical JScrollBar, although this method may
return null or accept other parameters. |
DocumentPanel |
getDocumentPanel()
Return the DocumentPanel this DocumentViewport is a part of |
PDFPage |
getPage()
Return the PDFPage in use by getPagePanel() |
abstract PagePanel |
getPagePanel()
Get the currently displayed PagePanel. |
abstract PDFPage |
getRenderingPage()
Return the page that is currently in the process of rendering. |
abstract Dimension |
getViewportSize()
Return the size in pixels of the space available to display pages in this viewport, not including scrollbars or other decoration |
abstract float |
getZoom()
Get the current zoom level |
abstract void |
redraw(Object o)
Redraw the specified object. |
abstract void |
removePagePanelInteractionListener(PagePanelInteractionListener listener)
Remove a PagePanelInteractionListener from any PagePanel objects
that have been created by this DocumentViewport |
abstract void |
removePagePanelListener(PagePanelListener listener)
Remove a PagePanelListener from any PagePanel objects that have been
created by this DocumentViewport |
abstract void |
setPage(PDFPage page,
double x,
double y,
double zoom)
Set the currently displayed page. |
abstract void |
setRenderingHints(RenderingHints hints)
Set the RenderingHints that should be used when rendering the pages |
abstract void |
setZoom(float zoom)
Set the zoom level of this DocumentViewport. |
| Methods inherited from class javax.swing.JPanel |
|---|
getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public DocumentViewport()
public DocumentViewport(LayoutManager manager)
| Method Detail |
|---|
public abstract void setRenderingHints(RenderingHints hints)
RenderingHints that should be used when rendering the pages
public abstract void setPage(PDFPage page,
double x,
double y,
double zoom)
page - the page to displayx - the left-most X position of the page, relative to PagePanel.getFullPageView(org.faceless.pdf2.PDFPage). A value of NaN means keep the current valuey - the top-most Y position of the page, relative to PagePanel.getFullPageView(org.faceless.pdf2.PDFPage). A value of NaN means keep the current valuezoom - the zoom level. A value of <= 0 or NaN means keep the current zoom.public abstract void setZoom(float zoom)
public abstract float getZoom()
public abstract PagePanel getPagePanel()
setPage(), the exact
implementation of this method depends on the type of viewport, but the idea is
it returns the PagePanel that is the primary focus of this viewport
public PDFPage getPage()
getPagePanel()
public abstract PDFPage getRenderingPage()
getPage()
public abstract Dimension getViewportSize()
public abstract Adjustable getAdjustable(int position)
JScrollBar, although this method may
return null or accept other parameters.
position - one of Adjustable.HORIZONTAL or Adjustable.VERTICALpublic DocumentPanel getDocumentPanel()
DocumentPanel this DocumentViewport is a part of
public abstract void addPagePanelListener(PagePanelListener listener)
PagePanelListener to any PagePanel objects that have been
or will be created by this DocumentViewport
listener - the listenerpublic abstract void removePagePanelListener(PagePanelListener listener)
PagePanelListener from any PagePanel objects that have been
created by this DocumentViewport
listener - the listenerpublic abstract void addPagePanelInteractionListener(PagePanelInteractionListener listener)
PagePanelInteractionListener to any PagePanel objects that have been
or will be created by this DocumentViewport
listener - the listenerpublic abstract void removePagePanelInteractionListener(PagePanelInteractionListener listener)
PagePanelInteractionListener from any PagePanel objects
that have been created by this DocumentViewport
listener - the listenerpublic abstract void redraw(Object o)
PagePanel.redrawAnnotation(org.faceless.pdf2.PDFAnnotation) or PagePanel.setPage(org.faceless.pdf2.PDFPage, java.awt.geom.Rectangle2D, float) method
for the PagePanels in use by this Viewport, as appropriate.
o - the Object that is to be redrawn
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||