
NV - Type of the NumberVector being visualized.public class SelectionToolCubeVisualization<NV extends NumberVector<NV,?>> extends P2DVisualization<NV> implements DragableArea.DragListener
| Modifier and Type | Class and Description |
|---|---|
static class |
SelectionToolCubeVisualization.Factory<NV extends NumberVector<NV,?>>
Factory for tool visualizations for selecting ranges and the inclosed
objects
|
| Modifier and Type | Field and Description |
|---|---|
private static String |
CSS_RANGEMARKER
Generic tag to indicate the type of element.
|
private int |
dim
Dimension
|
private Element |
etag
Element for the rectangle to add listeners
|
protected static Logging |
logger
The logger for this class.
|
private static String |
NAME
A short name characterizing this Visualizer.
|
private Element |
rtag
Element for selection rectangle
|
proj, relcontext, layer, pendingRedraw, svgp, task| Constructor and Description |
|---|
SelectionToolCubeVisualization(VisualizationTask task)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
addCSSClasses(SVGPlot svgp)
Adds the required CSS-Classes
|
void |
contextChanged(ContextChangedEvent e)
Method called on context changes (e.g. projection changes).
|
private void |
deleteChildren(Element container)
Delete the children of the element
|
void |
destroy()
Destroy the visualization.
|
boolean |
duringDrag(org.w3c.dom.svg.SVGPoint startPoint,
org.w3c.dom.svg.SVGPoint dragPoint,
Event evt,
boolean inside)
Method called during drags.
|
boolean |
endDrag(org.w3c.dom.svg.SVGPoint startPoint,
org.w3c.dom.svg.SVGPoint dragPoint,
Event evt,
boolean inside)
Method called when a drag was ended.
|
protected void |
redraw()
Perform a full redraw.
|
boolean |
startDrag(org.w3c.dom.svg.SVGPoint startPoint,
Event evt)
Action to do on drag start.
|
private void |
updateSelection(Projection proj,
org.w3c.dom.svg.SVGPoint p1,
org.w3c.dom.svg.SVGPoint p2)
Update the selection in the context.
|
private void |
updateSelectionRectKoordinates(double x1,
double x2,
double y1,
double y2,
DoubleDoublePair[] ranges)
Set the selected ranges and the mask for the actual dimensions in the
context
|
setupCanvasgetHeight, getLayer, getWidth, incrementalRedraw, resultAdded, resultChanged, resultRemoved, synchronizedRedraw, testRedrawprotected static final Logging logger
private static final String NAME
private static final String CSS_RANGEMARKER
private int dim
private Element rtag
private Element etag
public SelectionToolCubeVisualization(VisualizationTask task)
task - Taskpublic void destroy()
Visualizationdestroy in interface Visualizationdestroy in class AbstractVisualizationpublic void contextChanged(ContextChangedEvent e)
ContextChangeListenercontextChanged in interface ContextChangeListenercontextChanged in class AbstractVisualizatione - Change eventprotected void redraw()
AbstractVisualizationredraw in class AbstractVisualizationprivate void deleteChildren(Element container)
container - SVG-Elementprivate void updateSelectionRectKoordinates(double x1,
double x2,
double y1,
double y2,
DoubleDoublePair[] ranges)
x1 - x-value of the first dimensionx2 - x-value of the second dimensiony1 - y-value of the first dimensiony2 - y-value of the second dimensionpublic boolean startDrag(org.w3c.dom.svg.SVGPoint startPoint, Event evt)
DragableArea.DragListenerstartDrag in interface DragableArea.DragListenerstartPoint - Point where the drag was started.evt - The event objecttrue to start the drag operationpublic boolean duringDrag(org.w3c.dom.svg.SVGPoint startPoint, org.w3c.dom.svg.SVGPoint dragPoint, Event evt, boolean inside)
DragableArea.DragListenerduringDrag in interface DragableArea.DragListenerstartPoint - Drag starting pointdragPoint - Drag end pointevt - The event objectinside - Inside the tracked elementtrue to continue the dragpublic boolean endDrag(org.w3c.dom.svg.SVGPoint startPoint, org.w3c.dom.svg.SVGPoint dragPoint, Event evt, boolean inside)
DragableArea.DragListenerendDrag in interface DragableArea.DragListenerstartPoint - Drag starting pointdragPoint - Drag end pointevt - The event objectinside - Whether the end point was inside the areatrue to complete the dragprivate void updateSelection(Projection proj, org.w3c.dom.svg.SVGPoint p1, org.w3c.dom.svg.SVGPoint p2)
proj - The projectionp1 - First Point of the selected rectanglep2 - Second Point of the selected rectangleprotected void addCSSClasses(SVGPlot svgp)
svgp - SVG-Plot