|
||||||||||
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
gr.demokritos.iit.jinsect.gui.NavigableImagePanel
public class NavigableImagePanel
NavigableImagePanel
is a lightweight container displaying
an image that can be zoomed in and out and panned with ease and simplicity,
using an adaptive rendering for high quality display and satisfactory performance.
An image is loaded either via a constructor:
NavigableImagePanel panel = new NavigableImagePanel(image);or using a setter:
NavigableImagePanel panel = new NavigableImagePanel(); panel.setImage(image);When an image is set, it is initially painted centered in the component, at the largest possible size, fully visible, with its aspect ratio is preserved. This is defined as 100% of the image size and its corresponding zoom level is 1.0.
Zooming can be controlled interactively, using either the mouse scroll wheel (default) or the mouse two buttons, or programmatically, allowing the programmer to implement other custom zooming methods. If the mouse does not have a scroll wheel, set the zooming device to mouse buttons:
panel.setZoomDevice(ZoomDevice.MOUSE_BUTTON);The left mouse button works as a toggle switch between zooming in and zooming out modes, and the right button zooms an image by one increment (default is 20%). You can change the zoom increment value by:
panel.setZoomIncrement(newZoomIncrement);If you intend to provide programmatic zoom control, set the zoom device to none to disable both the mouse wheel and buttons for zooming purposes:
panel.setZoomDevice(ZoomDevice.NONE);and use
setZoom()
to change the zoom level.
Zooming is always around the point the mouse pointer is currently at, so that
this point (called a zooming center) remains stationary ensuring that the area
of an image we are zooming into does not disappear off the screen. The zooming center
stays at the same location on the screen and all other points move radially away from
it (when zooming in), or towards it (when zooming out). For programmatically
controlled zooming the zooming center is either specified when setZoom()
is called:
panel.setZoom(newZoomLevel, newZoomingCenter);or assumed to be the point of an image which is the closest to the center of the panel, if no zooming center is specified:
panel.setZoom(newZoomLevel);
There are no lower or upper zoom level limits.
NavigableImagePanel
does not use scroll bars for navigation,
but relies on a navigation image located in the upper left corner of the panel.
The navigation image is a small replica of the image displayed in the panel.
When you click on any point of the navigation image that part of the image
is displayed in the panel, centered. The navigation image can also be
zoomed in the same way as the main image.
In order to adjust the position of an image in the panel, it can be dragged with the mouse, using the left button.
For programmatic image navigation, disable the navigation image:
panel.setNavigationImageEnabled(false)and use
getImageOrigin()
and
setImageOrigin()
to move the image around the panel.
NavigableImagePanel
uses the Nearest Neighbor interpolation
for image rendering (default in Java).
When the scaled image becomes larger than the original image,
the Bilinear interpolation is applied, but only to the part
of the image which is displayed in the panel. This interpolation change threshold
can be controlled by adjusting the value of
HIGH_QUALITY_RENDERING_SCALE_THRESHOLD
.
Nested Class Summary | |
---|---|
static class |
NavigableImagePanel.ZoomDevice
Defines zoom devices. |
Nested classes/interfaces inherited from class javax.swing.JPanel |
---|
javax.swing.JPanel.AccessibleJPanel |
Nested classes/interfaces inherited from class javax.swing.JComponent |
---|
javax.swing.JComponent.AccessibleJComponent |
Nested classes/interfaces inherited from class java.awt.Container |
---|
java.awt.Container.AccessibleAWTContainer |
Nested classes/interfaces inherited from class java.awt.Component |
---|
java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy |
Field Summary | |
---|---|
static java.lang.String |
IMAGE_CHANGED_PROPERTY
Identifies that the image in the panel has changed. |
static java.lang.String |
ZOOM_INCREMENT_CHANGED_PROPERTY
Identifies a change to the zoom increment. |
static java.lang.String |
ZOOM_LEVEL_CHANGED_PROPERTY
Identifies a change to the zoom level. |
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 | |
---|---|
NavigableImagePanel()
Creates a new navigable image panel with no default image and the mouse scroll wheel as the zooming device. |
|
NavigableImagePanel(java.awt.image.BufferedImage image)
Creates a new navigable image panel with the specified image and the mouse scroll wheel as the zooming device. |
Method Summary | |
---|---|
java.awt.Point |
getImageOrigin()
Gets the image origin. |
double |
getZoom()
Gets the current zoom level. |
NavigableImagePanel.ZoomDevice |
getZoomDevice()
Gets the current zoom device. |
double |
getZoomIncrement()
Gets the current zoom increment. |
boolean |
isHighQualityRenderingEnabled()
Indicates whether the high quality rendering feature is enabled. |
boolean |
isNavigationImageEnabled()
Indicates whether navigation image is enabled. |
static boolean |
isStandardRGBImage(java.awt.image.BufferedImage bImage)
Tests whether an image uses the standard RGB color space. |
static void |
main(java.lang.String[] args)
|
protected void |
paintComponent(java.awt.Graphics g)
Paints the panel and its image at the current zoom level, location, and interpolation method dependent on the image scale. |
void |
setHighQualityRenderingEnabled(boolean enabled)
Enables/disables high quality rendering. |
void |
setImage(java.awt.image.BufferedImage image)
Sets an image for display in the panel. |
void |
setImageOrigin(int x,
int y)
Sets the image origin. |
void |
setImageOrigin(java.awt.Point newOrigin)
Sets the image origin. |
void |
setNavigationImageEnabled(boolean enabled)
Enables/disables navigation with the navigation image. |
void |
setZoom(double newZoom)
Sets the zoom level used to display the image. |
void |
setZoom(double newZoom,
java.awt.Point zoomingCenter)
Sets the zoom level used to display the image, and the zooming center, around which zooming is done. |
void |
setZoomDevice(NavigableImagePanel.ZoomDevice newZoomDevice)
Sets a new zoom device. |
void |
setZoomIncrement(double newZoomIncrement)
Sets a new zoom increment value. |
Methods inherited from class javax.swing.JPanel |
---|
getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI |
Methods inherited from class javax.swing.JComponent |
---|
addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintImmediately, paintImmediately, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update |
Methods inherited from class java.awt.Container |
---|
add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusBackward, transferFocusDownCycle, validate, validateTree |
Methods inherited from class java.awt.Component |
---|
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, hide, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusUpCycle |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String ZOOM_LEVEL_CHANGED_PROPERTY
Identifies a change to the zoom level.
public static final java.lang.String ZOOM_INCREMENT_CHANGED_PROPERTY
Identifies a change to the zoom increment.
public static final java.lang.String IMAGE_CHANGED_PROPERTY
Identifies that the image in the panel has changed.
Constructor Detail |
---|
public NavigableImagePanel()
Creates a new navigable image panel with no default image and the mouse scroll wheel as the zooming device.
public NavigableImagePanel(java.awt.image.BufferedImage image) throws java.io.IOException
Creates a new navigable image panel with the specified image and the mouse scroll wheel as the zooming device.
java.io.IOException
Method Detail |
---|
public void setZoomDevice(NavigableImagePanel.ZoomDevice newZoomDevice)
Sets a new zoom device.
newZoomDevice
- specifies the type of a new zoom device.public NavigableImagePanel.ZoomDevice getZoomDevice()
Gets the current zoom device.
public void setImage(java.awt.image.BufferedImage image)
Sets an image for display in the panel.
image
- an image to be set in the panelpublic static boolean isStandardRGBImage(java.awt.image.BufferedImage bImage)
Tests whether an image uses the standard RGB color space.
public boolean isHighQualityRenderingEnabled()
Indicates whether the high quality rendering feature is enabled.
public void setHighQualityRenderingEnabled(boolean enabled)
Enables/disables high quality rendering.
enabled
- enables/disables high quality renderingpublic boolean isNavigationImageEnabled()
Indicates whether navigation image is enabled.
public void setNavigationImageEnabled(boolean enabled)
Enables/disables navigation with the navigation image.
Navigation image should be disabled when custom, programmatic navigation is implemented.
enabled
- true when navigation image is enabled, false otherwise.public double getZoom()
Gets the current zoom level.
public void setZoom(double newZoom)
Sets the zoom level used to display the image.
This method is used in programmatic zooming. The zooming center is the point of the image closest to the center of the panel. After a new zoom level is set the image is repainted.
newZoom
- the zoom level used to display this panel's image.public void setZoom(double newZoom, java.awt.Point zoomingCenter)
Sets the zoom level used to display the image, and the zooming center, around which zooming is done.
This method is used in programmatic zooming. After a new zoom level is set the image is repainted.
newZoom
- the zoom level used to display this panel's image.public double getZoomIncrement()
Gets the current zoom increment.
public void setZoomIncrement(double newZoomIncrement)
Sets a new zoom increment value.
newZoomIncrement
- new zoom increment valuepublic java.awt.Point getImageOrigin()
Gets the image origin.
Image origin is defined as the upper, left corner of the image in the panel's coordinate system.
public void setImageOrigin(int x, int y)
Sets the image origin.
Image origin is defined as the upper, left corner of the image in the panel's coordinate system. After a new origin is set, the image is repainted. This method is used for programmatic image navigation.
x
- the x coordinate of the new image originy
- the y coordinate of the new image originpublic void setImageOrigin(java.awt.Point newOrigin)
Sets the image origin.
Image origin is defined as the upper, left corner of the image in the panel's coordinate system. After a new origin is set, the image is repainted. This method is used for programmatic image navigation.
newOrigin
- the value of a new image originprotected void paintComponent(java.awt.Graphics g)
paintComponent
in class javax.swing.JComponent
g
- the Graphics
context for paintingpublic static void main(java.lang.String[] args)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |