Package | Description |
---|---|
org.micromanager.display |
This package contains classes related to Micro-Manager's display windows,
which are used to show image data and metadata to the user.
|
org.micromanager.display.inspector |
Modifier and Type | Interface and Description |
---|---|
interface |
DisplayWindow
A DisplayWindow is the interface to Micro-Manager's image display windows.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDataViewer
Abstract implementation of the
DataViewer interface. |
Modifier and Type | Method and Description |
---|---|
DataViewer |
DisplayManager.getActiveDataViewer()
Returns the currently active data viewer.
|
DataViewer |
DisplaySettingsChangedEvent.getDataViewer()
Get the data viewer.
|
DataViewer |
DisplayDidShowImageEvent.getDataViewer()
Returns the Dataviewer displaying the image.
|
DataViewer |
DisplayPositionChangedEvent.getDataViewer()
The dataViewer posting this event.
|
DataViewer |
DisplaySettingsChangedEvent.getDisplay()
Deprecated.
use
getDataViewer instead |
Modifier and Type | Method and Description |
---|---|
java.util.List<DataViewer> |
DisplayManager.getAllDataViewers()
Return all DataViewers that Micro-Manager knows about.
|
Modifier and Type | Method and Description |
---|---|
void |
DisplayManager.addViewer(DataViewer viewer)
Register a DataViewer with the Display Manager.
|
abstract boolean |
DataViewerListener.canCloseViewer(DataViewer viewer)
Whether or not the DataViewer can be closed.
|
void |
DisplayManager.createInspectorForDataViewer(DataViewer display)
Create a new Inspector window that shows information for the specified
DataViewer, or for the topmost window if the DataViewer is null.
|
void |
DisplayManager.removeViewer(DataViewer viewer)
Cause Micro-Manager to stop tracking a DataViewer that was previously
added with addViewer().
|
Modifier and Type | Method and Description |
---|---|
void |
InspectorPanelController.attachDataViewer(DataViewer viewer) |
abstract void |
AbstractInspectorPanelController.attachDataViewer(DataViewer viewer)
Attach to a data viewer.
|
boolean |
InspectorPanelPlugin.isApplicableToDataViewer(DataViewer viewer)
Tell whether the InspectorPanel provided by this plugin is applicable to
a given DataViewer.
|