Package | Description |
---|---|
icy.canvas |
Contains base Icy canvas and related classes
|
icy.gui.inspector |
Contains all classes and components related to the Icy inspector
|
icy.vtk |
Contains VTK library related stuff (wrapper, tools)
|
Modifier and Type | Method and Description |
---|---|
Layer |
IcyCanvas.addLayer(Overlay overlay) |
Layer |
IcyCanvas.getImageLayer()
Returns the
Layer object used to display the current sequence image |
Layer |
IcyCanvas.getLayer(Overlay overlay)
Find the layer corresponding to the specified Overlay
|
Layer |
IcyCanvas.getLayer(Painter painter)
Deprecated.
Use
IcyCanvas.getLayer(Overlay) instead. |
Layer |
IcyCanvas.getLayer(ROI roi)
Find the layer corresponding to the specified ROI (use the ROI overlay internally).
|
Layer |
CanvasLayerEvent.getSource() |
Modifier and Type | Method and Description |
---|---|
java.util.List<Layer> |
IcyCanvas.getLayers()
Returns all layers attached to this canvas.
|
java.util.List<Layer> |
IcyCanvas.getLayers(boolean sorted)
Returns all layers attached to this canvas.
|
java.util.List<Layer> |
IcyCanvas.getOrderedLayersForEvent()
Deprecated.
Use
IcyCanvas.getLayers() instead (sorted on Layer priority). |
java.util.ArrayList<Layer> |
IcyCanvas.getVisibleLayers()
Returns all visible layers (visible property set to
true ) attached to this
canvas. |
java.util.List<Layer> |
IcyCanvas.getVisibleLayers(boolean sorted)
Returns all visible layers (visible property set to
true ) attached to this
canvas. |
java.util.List<Layer> |
IcyCanvas.getVisibleOrderedLayersForEvent()
Deprecated.
Use
IcyCanvas.getVisibleLayers() instead (sorted on Layer priority). |
Modifier and Type | Method and Description |
---|---|
static void |
IcyCanvas.addVisibleLayerToList(Layer layer,
java.util.ArrayList<Layer> list) |
int |
Layer.compareTo(Layer layer) |
boolean |
IcyCanvas.hasLayer(Layer layer) |
void |
Layer.LayerListener.layerChanged(Layer source,
java.lang.String propertyName) |
void |
IcyCanvas.layerChanged(Layer layer,
java.lang.String propertyName)
layer has changed
|
void |
IcyCanvas.removeLayer(Layer layer)
Remove the specified layer from the canvas.
|
Modifier and Type | Method and Description |
---|---|
static void |
IcyCanvas.addVisibleLayerToList(Layer layer,
java.util.ArrayList<Layer> list) |
Constructor and Description |
---|
CanvasLayerEvent(Layer source,
CanvasLayerEvent.LayersEventType type) |
CanvasLayerEvent(Layer source,
CanvasLayerEvent.LayersEventType type,
java.lang.String property) |
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Layer> |
LayersPanel.getSelectedLayers() |
Modifier and Type | Method and Description |
---|---|
static vtk.vtkProp[] |
VtkUtil.getLayerProps(Layer layer)
Returns the vtkProp from the specified Layer object.
|
Modifier and Type | Method and Description |
---|---|
static vtk.vtkProp[] |
VtkUtil.getLayersProps(java.util.List<Layer> layers)
Returns all vtkProp from the specified list of Layer object.
|