|
|||||||||
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
edu.udo.cs.yale.gui.plotter.PlotterAdapter
public class PlotterAdapter
This adapter class can be used for simple plotter implementation which only need to overwrite the methods
they need. Most method implementations are rather restrictive and need to be overwritten for the more
sophisticated plotter possibilities. The complete plotting has to be done in the paintComponent(Graphics)
method (which must be invoked by super.paintComponent in order to get the correct color schemes),
plotter updates should be intitiated by invoking Component.repaint()
.
Subclasses should at least react to setDataTable(DataTable)
in order to properly update
the plotter. Another method usually overridden is setPlotColumn(int, boolean)
. Other overridden
methods might include the methods for plot column and axis column handling.
Nested Class Summary | |
---|---|
protected static class |
PlotterAdapter.LineStyle
The line style that should be used for plotting lines. |
protected static class |
PlotterAdapter.LineStyleIcon
This icon is displayed before the columns to indicate the color and line style (as a legend or key). |
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.BltBufferStrategy, java.awt.Component.FlipBufferStrategy |
Field Summary | |
---|---|
protected static java.awt.Color |
GRID_COLOR
|
static java.awt.Font |
LABEL_FONT
|
protected static java.awt.Color[] |
LINE_COLORS
|
protected static java.awt.Stroke[] |
LINE_STROKES
|
protected static javax.swing.Icon[] |
LINE_STYLE_ICONS
|
protected static PlotterAdapter.LineStyle[] |
LINE_STYLES
|
static int |
MARGIN
|
private static java.awt.Color |
MAX_LEGEND_COLOR
|
private static java.awt.Color |
MIN_LEGEND_COLOR
|
static double |
POINTSIZE
|
private static long |
serialVersionUID
|
private static int[] |
TICS
|
protected static java.awt.Color |
TOOLTIP_COLOR
|
static int |
WEIGHT_BORDER_WIDTH
|
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 edu.udo.cs.yale.gui.plotter.Plotter |
---|
MULTIPLE_SELECTION, NO_SELECTION, SINGLE_SELECTION |
Fields inherited from interface java.awt.image.ImageObserver |
---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
---|---|
PlotterAdapter()
|
Method Summary | |
---|---|
boolean |
canHandleJitter()
Returns false. |
boolean |
canHandleZooming()
Returns false. |
void |
dataTableUpdated(DataTable source)
Invokes Component.repaint() . |
protected void |
drawLegend(java.awt.Graphics graphics,
DataTable table,
int legendColumn)
This method can be used to draw a legend on the given graphics context. |
protected void |
drawLegend(java.awt.Graphics graphics,
DataTable table,
int legendColumn,
int xOffset,
int alpha)
This method can be used to draw a legend on the given graphics context. |
private void |
drawNominalLegend(java.awt.Graphics graphics,
DataTable table,
int legendColumn,
int xOffset,
int alpha)
|
private void |
drawNumericalLegend(java.awt.Graphics graphics,
DataTable table,
int legendColumn,
int alpha)
|
private void |
drawNumericalLegend(java.awt.Graphics graphics,
double minColor,
double maxColor,
int alpha)
This method can be used to draw a legend on the given graphics context. |
protected void |
drawPoint(java.awt.Graphics2D g,
double x,
double y,
java.awt.Color color)
This helper method can be used to draw a point in the given graphics object. |
protected void |
drawToolTip(java.awt.Graphics2D g,
ToolTip toolTip)
|
protected void |
drawWeightRectangle(java.awt.Graphics2D newSpace,
DataTable dataTable,
int column,
double maxWeight,
int plotterSize)
|
int |
getAxis(int axis)
Returns -1. |
java.lang.String |
getAxisName(int index)
Returns null. |
private java.awt.Color |
getColorFromProperty(java.lang.String propertyName)
|
javax.swing.Icon |
getIcon(int index)
Returns a line icon depending on the index. |
java.lang.String |
getIdForPos(int x,
int y)
Returns null. |
int |
getInitialZoomFactor()
Returns 1. |
protected double |
getMaxWeight(DataTable dataTable)
|
int |
getNumberOfAxes()
Returns 0. |
protected int |
getNumberOfPlots(DataTable table)
|
protected double |
getNumericalTicSize(double min,
double max)
|
javax.swing.JComponent |
getOptionsComponent(int index)
Returns null. |
boolean |
getPlotColumn(int dimension)
Returns false. |
java.lang.String |
getPlotName()
Returns null. |
javax.swing.JComponent |
getPlotter()
Returns this. |
PlotterCondition |
getPlotterCondition()
Returns a BasicPlotterCondition allowing for all DataTable s. |
static java.awt.Color |
getPointColor(double value)
Returns a color for the given value. |
static java.awt.Color |
getPointColor(double value,
int alpha)
Returns a color for the given value. |
protected double |
getPointColorValue(DataTable table,
DataTableRow row,
int column,
double min,
double max)
Helper methods which can be used to deliver a value for the point color. |
java.awt.geom.Point2D |
getPositionInDataSpace(java.awt.Point p)
Returns null. |
protected double |
getTicSize(DataTable dataTable,
int column,
double min,
double max)
|
int |
getValuePlotSelectionType()
Returns Plotter.SINGLE_SELECTION . |
protected java.awt.Color |
getWeightColor(double weight,
double maxWeight)
Returns a color for the given weight. |
boolean |
hasOptionsDialog()
Returns false. |
boolean |
hasSaveImageButton()
Returns false. |
boolean |
isProvidingCoordinates()
Returns false. |
boolean |
isSaveable()
Returns false. |
void |
paintComponent(java.awt.Graphics g)
Invokes super method and sets correct color schemes. |
void |
save()
Does nothing. |
void |
setAxis(int plotterAxis,
int dimension)
Does nothing. |
void |
setDataTable(DataTable dataTable)
Since this method already adds this object as a listener, all methods overriding this one should invoke the super method. |
void |
setDragBounds(int x,
int y,
int w,
int h)
Does nothing. |
void |
setDrawRange(double x,
double y,
double w,
double h)
Does nothing. |
void |
setJitter(int jitter)
Does nothing. |
void |
setKey(java.lang.String key)
Does nothing. |
void |
setMousePosInDataSpace(int mouseX,
int mouseY)
Does nothing. |
void |
setPlotColumn(int dimension,
boolean plot)
Does nothing. |
void |
setZooming(int zooming)
Does nothing. |
void |
showOptionsDialog()
Does nothing. |
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, 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, 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 |
Methods inherited from interface edu.udo.cs.yale.gui.plotter.Plotter |
---|
addMouseListener, addMouseMotionListener |
Field Detail |
---|
private static final long serialVersionUID
public static final double POINTSIZE
private static final int[] TICS
public static final int MARGIN
public static final int WEIGHT_BORDER_WIDTH
public static final java.awt.Font LABEL_FONT
protected static final java.awt.Color GRID_COLOR
protected static final java.awt.Color TOOLTIP_COLOR
protected static javax.swing.Icon[] LINE_STYLE_ICONS
protected static final java.awt.Color[] LINE_COLORS
protected static final java.awt.Stroke[] LINE_STROKES
protected static final PlotterAdapter.LineStyle[] LINE_STYLES
private static java.awt.Color MIN_LEGEND_COLOR
private static java.awt.Color MAX_LEGEND_COLOR
Constructor Detail |
---|
public PlotterAdapter()
Method Detail |
---|
public void paintComponent(java.awt.Graphics g)
paintComponent
in class javax.swing.JComponent
private java.awt.Color getColorFromProperty(java.lang.String propertyName)
public boolean canHandleJitter()
setJitter(int)
.
canHandleJitter
in interface Plotter
public boolean canHandleZooming()
setZooming(int)
.
canHandleZooming
in interface Plotter
public int getAxis(int axis)
getAxisName(int)
,
setAxis(int, int)
, and getNumberOfAxes()
.
getAxis
in interface Plotter
public java.lang.String getAxisName(int index)
getAxis(int)
,
setAxis(int, int)
, and getNumberOfAxes()
.
getAxisName
in interface Plotter
public javax.swing.Icon getIcon(int index)
getIcon
in interface Plotter
public java.lang.String getIdForPos(int x, int y)
getIdForPos
in interface Plotter
public int getInitialZoomFactor()
getInitialZoomFactor
in interface Plotter
public int getNumberOfAxes()
getAxisName(int)
,
setAxis(int, int)
, and getAxis(int)
.
getNumberOfAxes
in interface Plotter
public javax.swing.JComponent getOptionsComponent(int index)
getOptionsComponent
in interface Plotter
public boolean getPlotColumn(int dimension)
getPlotColumn
in interface Plotter
public java.lang.String getPlotName()
getPlotName
in interface Plotter
public final javax.swing.JComponent getPlotter()
Plotter
.
getPlotter
in interface Plotter
public PlotterCondition getPlotterCondition()
BasicPlotterCondition
allowing for all DataTable
s. Subclasses
should override this method in order to indicate that they might not be able to handle
certain data tables.
getPlotterCondition
in interface Plotter
public java.awt.geom.Point2D getPositionInDataSpace(java.awt.Point p)
isProvidingCoordinates()
, too.
getPositionInDataSpace
in interface Plotter
public int getValuePlotSelectionType()
Plotter.SINGLE_SELECTION
. Subclasses might override this method and return
Plotter.NO_SELECTION
or Plotter.MULTIPLE_SELECTION
.
getValuePlotSelectionType
in interface Plotter
public boolean hasOptionsDialog()
hasOptionsDialog
in interface Plotter
public boolean hasSaveImageButton()
hasSaveImageButton
in interface Plotter
public boolean isProvidingCoordinates()
getPositionInDataSpace(Point)
.
isProvidingCoordinates
in interface Plotter
public boolean isSaveable()
save()
should also be overridden.
isSaveable
in interface Plotter
public void save()
isSaveable()
.
save
in interface Plotter
public void setAxis(int plotterAxis, int dimension)
getAxis(int)
,
getAxisName(int)
, and getNumberOfAxes()
.
setAxis
in interface Plotter
public void setDragBounds(int x, int y, int w, int h)
setDragBounds
in interface Plotter
public void setDrawRange(double x, double y, double w, double h)
setDrawRange
in interface Plotter
public void setJitter(int jitter)
canHandleJitter()
.
setJitter
in interface Plotter
public void setKey(java.lang.String key)
setKey
in interface Plotter
public void setMousePosInDataSpace(int mouseX, int mouseY)
setMousePosInDataSpace
in interface Plotter
public void setPlotColumn(int dimension, boolean plot)
getPlotColumn(int)
should also be overriden.
setPlotColumn
in interface Plotter
public void setDataTable(DataTable dataTable)
setDataTable
in interface Plotter
public void setZooming(int zooming)
canHandleZooming()
.
setZooming
in interface Plotter
public void showOptionsDialog()
showOptionsDialog
in interface Plotter
public final void dataTableUpdated(DataTable source)
Component.repaint()
. Will be invoked since all plotters are DataTableListener
s.
dataTableUpdated
in interface DataTableListener
protected double getPointColorValue(DataTable table, DataTableRow row, int column, double min, double max)
public static java.awt.Color getPointColor(double value)
public static java.awt.Color getPointColor(double value, int alpha)
protected void drawPoint(java.awt.Graphics2D g, double x, double y, java.awt.Color color)
protected void drawLegend(java.awt.Graphics graphics, DataTable table, int legendColumn)
protected void drawLegend(java.awt.Graphics graphics, DataTable table, int legendColumn, int xOffset, int alpha)
private void drawNominalLegend(java.awt.Graphics graphics, DataTable table, int legendColumn, int xOffset, int alpha)
private void drawNumericalLegend(java.awt.Graphics graphics, DataTable table, int legendColumn, int alpha)
private void drawNumericalLegend(java.awt.Graphics graphics, double minColor, double maxColor, int alpha)
protected void drawToolTip(java.awt.Graphics2D g, ToolTip toolTip)
protected int getNumberOfPlots(DataTable table)
protected double getTicSize(DataTable dataTable, int column, double min, double max)
protected double getNumericalTicSize(double min, double max)
protected double getMaxWeight(DataTable dataTable)
protected java.awt.Color getWeightColor(double weight, double maxWeight)
protected void drawWeightRectangle(java.awt.Graphics2D newSpace, DataTable dataTable, int column, double maxWeight, int plotterSize)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |