Uses of Class
org.das2.graph.DasCanvas

Packages that use DasCanvas
org.das2.components Provides GUI components for building applications. 
org.das2.event Classes for adding interactivity to the application components. 
org.das2.graph Mostly contains DasCanvasComponents, which are components that live within the DasCanvas, and Renderers which draw on DasPlots. 
org.das2.graph.dnd Contains Transferable classes for implementing the drop and drop in the IDE. 
org.das2.system Application-level infrastructure, such as data set caching, worker threads, progress monitors, exception handling, logging. 
org.das2.util Utility classes useful for the implementation of other packages, but not necessarily part of any one package. 
 

Uses of DasCanvas in org.das2.components
 

Methods in org.das2.components that return DasCanvas
static DasCanvas ComponentsUtil.createPopupCanvas(java.awt.Component parent, java.lang.String title, int width, int height)
           
 

Methods in org.das2.components with parameters of type DasCanvas
static DasProgressPanel DasProgressPanel.createComponentPanel(DasCanvas canvas, java.lang.String initialMessage)
           
static BatchMaster BatchMaster.createPngs(DasCanvas canvas, java.io.File specFile, java.lang.String pngFilenameTemplate)
           
 

Constructors in org.das2.components with parameters of type DasCanvas
BatchMaster(DasCanvas canvas)
          Creates a new instance of BatchMaster
 

Uses of DasCanvas in org.das2.event
 

Methods in org.das2.event that return DasCanvas
 DasCanvas AnnotatorMouseModule.getCanvas()
           
 

Uses of DasCanvas in org.das2.graph
 

Fields in org.das2.graph declared as DasCanvas
protected  DasCanvas DasDevicePosition.canvas
           
protected static DasCanvas DasCanvas.CanvasAction.currentCanvas
           
 

Methods in org.das2.graph that return DasCanvas
static DasCanvas DasCanvas.createFormCanvas(java.lang.String name, int width, int height)
           
 DasCanvas DasCanvasComponent.getCanvas()
          get the DasCanvas which contains this DasCanvasComponent.
protected  DasCanvas DasDevicePosition.getCanvas()
           
 DasCanvas DasDevicePosition.getParent()
           
static DasCanvas DasCanvas.processCanvasElement(org.w3c.dom.Element element, FormBase form)
          Process a <canvas> element.
 

Methods in org.das2.graph with parameters of type DasCanvas
static DasColumn DasColumn.create(DasCanvas parent)
           
static DasRow DasRow.create(DasCanvas parent)
           
static DasColumn DasColumn.create(DasCanvas canvas, DasColumn parent, java.lang.String minStr, java.lang.String maxStr)
          makes a new DasColumn by parsing a string like "100%-5em+3pt" to get the offsets.
static DasRow DasRow.create(DasCanvas canvas, DasRow parent, java.lang.String minStr, java.lang.String maxStr)
          makes a new DasRow by parsing a string like "100%-5em+3pt" to get the offsets.
static DasColumn DasColumn.create(DasCanvas parent, int iplot, int nplot)
           
static DasRow DasRow.create(DasCanvas parent, int iplot, int nplot)
           
static DasPlot GraphUtil.newDasPlot(DasCanvas canvas, DatumRange x, DatumRange y)
           
static void GraphUtil.serializeCanvas(DasCanvas canvas, java.io.OutputStream out)
           
 void DasDevicePosition.setParent(DasCanvas parent)
           
 void DasLabel.setParent(DasCanvas parent)
           
 

Constructors in org.das2.graph with parameters of type DasCanvas
Arrow(DasCanvas c, java.awt.Point head, java.awt.Point tail)
           
ColumnColumnConnector(DasCanvas parent, DasPlot topPlot, DasRow topRow, DasPlot bottomPlot)
           
DasColumn(DasCanvas canvas, DasColumn parent, double nMin, double nMax, double emMin, double emMax, int ptMin, int ptMax)
           
DasColumn(DasCanvas parent, double left, double right)
           
DasDevicePosition(DasCanvas canvas, boolean isWidth, DasDevicePosition parent, double minimum, double maximum, double emMinimum, double emMaximum, int ptMinimum, int ptMaximum)
           
DasDevicePosition(DasCanvas parent, double minimum, double maximum, boolean width)
           
DasRow(DasCanvas canvas, DasRow parent, double nMin, double nMax, double emMin, double emMax, int ptMin, int ptMax)
           
DasRow(DasCanvas parent, double top, double bottom)
           
Leveler(DasCanvas parent)
           
Leveler(DasCanvas parent, DasRow row)
           
RowRowConnector(DasCanvas parent, DasRow leftRow, DasRow rightRow, DasColumn leftColumn, DasColumn rightColumn)
           
 

Uses of DasCanvas in org.das2.graph.dnd
 

Constructors in org.das2.graph.dnd with parameters of type DasCanvas
TransferableCanvas(DasCanvas canvas)
          Creates a new instance of TransferableCanvas
 

Uses of DasCanvas in org.das2.system
 

Methods in org.das2.system with parameters of type DasCanvas
 ProgressMonitor DefaultMonitorFactory.getMonitor(DasCanvas canvas, java.lang.String label, java.lang.String description)
           
 ProgressMonitor MonitorFactory.getMonitor(DasCanvas canvas, java.lang.String string, java.lang.String string0)
           
 ProgressMonitor NullMonitorFactory.getMonitor(DasCanvas canvas, java.lang.String string, java.lang.String string0)
           
 

Uses of DasCanvas in org.das2.util
 

Methods in org.das2.util that return DasCanvas
 DasCanvas Probe.getCanvas()
           
 

Constructors in org.das2.util with parameters of type DasCanvas
PersistentStateSupport(DasCanvas canvas, java.lang.String extension)
          Provides a means for saving the application persistently, undo/redo support (TODO).