Uses of Interface
org.scijava.display.Display
-
-
Uses of Display in org.scijava.display
Subinterfaces of Display in org.scijava.display Modifier and Type Interface Description interfaceTextDisplayInterface for textDisplays.Classes in org.scijava.display that implement Display Modifier and Type Class Description classAbstractDisplay<T>Abstract superclass ofDisplayimplementations.classDefaultDisplayDefault display for objects, when no other displays are available.classDefaultTextDisplayDefault display for text.Methods in org.scijava.display with type parameters of type Display Modifier and Type Method Description <D extends Display<?>>
DDefaultDisplayService. getActiveDisplay(Class<D> displayClass)<D extends Display<?>>
DDisplayService. getActiveDisplay(Class<D> displayClass)Gets the most recently active display (of the specified Display type).<D extends Display<?>>
PluginInfo<Display<?>>DefaultDisplayService. getDisplayPlugin(Class<D> pluginClass)<D extends Display<?>>
PluginInfo<Display<?>>DisplayService. getDisplayPlugin(Class<D> pluginClass)Gets the display plugin of the given class, or null if none.<D extends Display<?>>
List<PluginInfo<D>>DefaultDisplayService. getDisplayPluginsOfType(Class<D> type)<DT extends Display<?>>
List<PluginInfo<DT>>DisplayService. getDisplayPluginsOfType(Class<DT> type)Gets the list of display plugins of the given type (e.g.,ImageDisplay.class).<D extends Display<?>>
List<D>DefaultDisplayService. getDisplaysOfType(Class<D> type)<DT extends Display<?>>
List<DT>DisplayService. getDisplaysOfType(Class<DT> type)Gets a list of all available displays of the given type (e.g.,ImageDisplay.class).Methods in org.scijava.display that return Display Modifier and Type Method Description Display<?>DefaultDisplayService. createDisplay(Object o)Display<?>DefaultDisplayService. createDisplay(String name, Object o)Display<?>DisplayService. createDisplay(Object o)Creates a display for the given object, publishing aDisplayCreatedEventto notify interested parties.Display<?>DisplayService. createDisplay(String name, Object o)Creates a display for the given object, publishing aDisplayCreatedEventto notify interested parties.Display<?>DefaultDisplayService. createDisplayQuietly(Object o)Display<?>DisplayService. createDisplayQuietly(Object o)Creates a display for the given object, without publishing aDisplayCreatedEvent.Display<?>DefaultDisplayService. getActiveDisplay()Display<?>DisplayService. getActiveDisplay()Gets the currently active display (of any Display type).Display<?>DefaultDisplayService. getDisplay(String name)Display<?>DisplayService. getDisplay(String name)Gets a display by its name.Methods in org.scijava.display that return types with arguments of type Display Modifier and Type Method Description <D extends Display<?>>
PluginInfo<Display<?>>DefaultDisplayService. getDisplayPlugin(Class<D> pluginClass)PluginInfo<Display<?>>DefaultDisplayService. getDisplayPlugin(String className)<D extends Display<?>>
PluginInfo<Display<?>>DisplayService. getDisplayPlugin(Class<D> pluginClass)Gets the display plugin of the given class, or null if none.PluginInfo<Display<?>>DisplayService. getDisplayPlugin(String className)Gets the display plugin of the given class name, or null if none.List<PluginInfo<Display<?>>>DefaultDisplayService. getDisplayPlugins()List<PluginInfo<Display<?>>>DisplayService. getDisplayPlugins()Gets the list of known display plugins.List<Display<?>>DefaultDisplayService. getDisplays()List<Display<?>>DefaultDisplayService. getDisplays(Object o)List<Display<?>>DisplayService. getDisplays()Gets a list of all available displays.List<Display<?>>DisplayService. getDisplays(Object o)Gets a list of displays currently visualizing the given object.Methods in org.scijava.display with parameters of type Display Modifier and Type Method Description voidDefaultDisplayService. setActiveDisplay(Display<?> display)voidDisplayService. setActiveDisplay(Display<?> display)Set the active display. -
Uses of Display in org.scijava.display.event
Methods in org.scijava.display.event that return Display Modifier and Type Method Description Display<?>DisplayEvent. getDisplay()Display<?>DisplayCreatedEvent. getObject()Display<?>DisplayDeletedEvent. getObject()Constructors in org.scijava.display.event with parameters of type Display Constructor Description DisplayActivatedEvent(Display<?> display)DisplayCreatedEvent(Display<?> display)DisplayDeletedEvent(Display<?> display)DisplayEvent(Display<?> display)DisplayUpdatedEvent(Display<?> display, DisplayUpdatedEvent.DisplayUpdateLevel level) -
Uses of Display in org.scijava.display.event.input
Constructors in org.scijava.display.event.input with parameters of type Display Constructor Description InputEvent(Display<?> display, InputModifiers modifiers, int x, int y)KyEvent(Display<?> display, InputModifiers modifiers, int x, int y, char character, KeyCode code)KyPressedEvent(Display<?> display, InputModifiers modifiers, int x, int y, char character, KeyCode code)KyReleasedEvent(Display<?> display, InputModifiers modifiers, int x, int y, char character, KeyCode code)KyTypedEvent(Display<?> display, InputModifiers modifiers, int x, int y, char character, KeyCode code)MsButtonEvent(Display<?> display, InputModifiers modifiers, int x, int y, int button, int numClicks, boolean isPopupTrigger)MsClickedEvent(Display<?> display, InputModifiers modifiers, int x, int y, int button, int numClicks, boolean isPopupTrigger)MsDraggedEvent(Display<?> display, InputModifiers modifiers, int x, int y, int button, int numClicks, boolean isPopupTrigger)MsEnteredEvent(Display<?> display, InputModifiers modifiers, int x, int y)MsEvent(Display<?> display, InputModifiers modifiers, int x, int y)MsExitedEvent(Display<?> display, InputModifiers modifiers, int x, int y)MsMovedEvent(Display<?> display, InputModifiers modifiers, int x, int y)MsPressedEvent(Display<?> display, InputModifiers modifiers, int x, int y, int button, int numClicks, boolean isPopupTrigger)MsReleasedEvent(Display<?> display, InputModifiers modifiers, int x, int y, int button, int numClicks, boolean isPopupTrigger)MsWheelEvent(Display<?> display, InputModifiers modifiers, int x, int y, int wheelRotation) -
Uses of Display in org.scijava.display.event.window
Constructors in org.scijava.display.event.window with parameters of type Display Constructor Description WinActivatedEvent(Display<?> display, Object window)WinClosedEvent(Display<?> display, Object window)WinClosingEvent(Display<?> display, Object window)WinDeactivatedEvent(Display<?> display, Object window)WinDeiconifiedEvent(Display<?> display, Object window)WinEvent(Display<?> display, Object window)WinIconifiedEvent(Display<?> display, Object window)WinOpenedEvent(Display<?> display, Object window) -
Uses of Display in org.scijava.input
Methods in org.scijava.input that return Display Modifier and Type Method Description Display<?>DefaultInputService. getDisplay()Display<?>InputService. getDisplay()Gets the display associated with the last observed mouse cursor. -
Uses of Display in org.scijava.ui
Methods in org.scijava.ui with parameters of type Display Modifier and Type Method Description DisplayWindowUserInterface. createDisplayWindow(Display<?> display)Creates a new display window housing the given display, or null if not applicable.DisplayViewer<?>DefaultUIService. getDisplayViewer(Display<?> display)DisplayViewer<?>UIService. getDisplayViewer(Display<?> display)Gets the UI widget being used to visualize the givenDisplay.voidAbstractUserInterface. show(Display<?> display)voidDefaultUIService. show(Display<?> display)voidUIService. show(Display<?> display)Creates and shows the givenDisplayusing an appropriate UI widget of the default user interface.voidUserInterface. show(Display<?> display)Shows the display onscreen using an appropriate UI widget.voidDefaultUIService. showContextMenu(String menuRoot, Display<?> display, int x, int y)voidUIService. showContextMenu(String menuRoot, Display<?> display, int x, int y)Displays a popup context menu for the given display at the specified position.voidUserInterface. showContextMenu(String menuRoot, Display<?> display, int x, int y)Displays a popup context menu for the given display at the specified position. -
Uses of Display in org.scijava.ui.dnd
Methods in org.scijava.ui.dnd with parameters of type Display Modifier and Type Method Description protected voidAbstractDragAndDropHandler. check(D dataObject, Display<?> display)ThrowsIllegalArgumentExceptionif (data, display) pair is incompatible.booleanDragAndDropHandler. drop(D dataObject, Display<?> display)Performs a drop operation with the given data object in the specifiedDisplay.default booleanDragAndDropService. drop(Object data, Display<?> display)Performs a drag-and-drop operation in the given display with the specified data object, using the first available compatible handler.default booleanDragAndDropService. drop(DragAndDropData data, Display<?> display)Performs a drag-and-drop operation in the given display with the specifiedDragAndDropData, using the first available compatible handler.booleanFileDragAndDropHandler. drop(File file, Display<?> display)booleanListDragAndDropHandler. drop(List<?> list, Display<?> display)booleanScriptFileDragAndDropHandler. drop(File file, Display<?> display)booleanAbstractDragAndDropHandler. dropData(DragAndDropData data, Display<?> display)booleanDragAndDropHandler. dropData(DragAndDropData data, Display<?> display)Performs a drop operation with the given data in the specifiedDisplay.booleanAbstractDragAndDropHandler. dropObject(Object object, Display<?> display)booleanDragAndDropHandler. dropObject(Object object, Display<?> display)Performs a drop operation with the given data in the specifiedDisplay.default DragAndDropHandler<?>DragAndDropService. getHandler(Object object, Display<?> display)Gets the drag-and-drop handler which will be used to handle the given object dragged onto the specified display.default DragAndDropHandler<?>DragAndDropService. getHandler(DragAndDropData data, Display<?> display)Gets the drag-and-drop handler which will be used to handle the givenDragAndDropDatadragged onto the specified display.booleanAbstractDragAndDropHandler. supports(D dataObject, Display<?> display)booleanDragAndDropHandler. supports(D dataObject, Display<?> display)Gets whether this handler supports dropping the given data object onto the specified display.default booleanDragAndDropService. supports(Object object, Display<?> display)Checks whether the given object can be dropped onto the specified display.default booleanDragAndDropService. supports(DragAndDropData data, Display<?> display)Checks whether the givenDragAndDropDatacan be dropped onto the specified display.booleanListDragAndDropHandler. supports(List<?> list, Display<?> display)booleanAbstractDragAndDropHandler. supportsData(DragAndDropData data, Display<?> display)booleanDragAndDropHandler. supportsData(DragAndDropData data, Display<?> display)Gets whether this handler supports dropping the givenDragAndDropDataonto the specified display.booleanAbstractDragAndDropHandler. supportsDisplay(Display<?> display)booleanDragAndDropHandler. supportsDisplay(Display<?> display)Gets whether this handler supports dropping an assumed-to-be-compatible data object onto the givenDisplay.booleanAbstractDragAndDropHandler. supportsObject(Object object, Display<?> display)booleanDragAndDropHandler. supportsObject(Object object, Display<?> display)Gets whether this handler supports dropping the given object onto the specified display. -
Uses of Display in org.scijava.ui.dnd.event
Constructors in org.scijava.ui.dnd.event with parameters of type Display Constructor Description DragAndDropEvent(Display<?> display)DragAndDropEvent(Display<?> display, InputModifiers modifiers, int x, int y, DragAndDropData data)DragAndDropEvent(Display<?> display, DragAndDropData data)DragEnterEvent(Display<?> display, InputModifiers modifiers, int x, int y, DragAndDropData data)DragExitEvent(Display<?> display)DragOverEvent(Display<?> display, InputModifiers modifiers, int x, int y, DragAndDropData data)DropEvent(Display<?> display, InputModifiers modifiers, int x, int y, DragAndDropData data) -
Uses of Display in org.scijava.ui.headless
Methods in org.scijava.ui.headless with parameters of type Display Modifier and Type Method Description booleanHeadlessDisplayViewer. canView(Display<?> d)DisplayWindowHeadlessUI. createDisplayWindow(Display<?> display)voidHeadlessUI. show(Display<?> display)voidHeadlessUI. showContextMenu(String menuRoot, Display<?> display, int x, int y)voidHeadlessDisplayViewer. view(DisplayWindow w, Display<?> d) -
Uses of Display in org.scijava.ui.viewer
Methods in org.scijava.ui.viewer that return Display Modifier and Type Method Description Display<T>AbstractDisplayViewer. getDisplay()Display<?>DisplayPanel. getDisplay()Gets the panel's associated display.Display<T>DisplayViewer. getDisplay()Gets the display being viewed.Methods in org.scijava.ui.viewer with parameters of type Display Modifier and Type Method Description booleanDisplayViewer. canView(Display<?> d)Returns true if an instance of this display viewer can view the given display.voidAbstractDisplayViewer. view(DisplayWindow w, Display<?> d)default voidDisplayViewer. view(UserInterface ui, Display<?> d)Begins viewing the given display.voidDisplayViewer. view(DisplayWindow w, Display<?> d)Begins viewing the given display. -
Uses of Display in org.scijava.ui.viewer.text
Methods in org.scijava.ui.viewer.text with parameters of type Display Modifier and Type Method Description default booleanTextDisplayViewer. canView(Display<?> d)
-