Package uk.ac.starlink.topcat.plot2
Class CartesianAxisController<P,A>
- java.lang.Object
-
- uk.ac.starlink.topcat.plot2.AxisController<P,A>
-
- uk.ac.starlink.topcat.plot2.CartesianAxisController<P,A>
-
- All Implemented Interfaces:
Configger
- Direct Known Subclasses:
CubeAxisController
,HistogramAxisController
,PlaneAxisController
,TimeAxisController
public abstract class CartesianAxisController<P,A> extends AxisController<P,A>
Abstract superclass for simple Cartesian plots. This mostly just handles the axis labelling GUI, and leaves subclasses to adjust the details of the other configuration options.- Since:
- 14 Mar 2013
- Author:
- Mark Taylor
-
-
Constructor Summary
Constructors Constructor Description CartesianAxisController(uk.ac.starlink.ttools.plot2.SurfaceFactory<P,A> surfFact, uk.ac.starlink.ttools.plot2.config.ConfigKey<java.lang.String>[] axisLabelKeys)
Constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected void
addLabelsTab()
Adds the axis label configuration tab set up by this component.void
configureForLayers(LayerControl[] controls)
This abstract method provides a hook for implementations to adjust their GUI state based on the layer controls which will be supplying layers for them to plot.protected boolean
forceClearRange(P oldProfile, P newProfile)
Determines whether the change between two profiles forces an unconditional re-range of the plotting surface.AutoConfigSpecifier
getLabelSpecifier()
Returns the specifier used for axis labels.protected abstract boolean
logChanged(P prof1, P prof2)
Indicates whether the scaling has changed to or from logarithmic for any of the cartesian axes between two profiles.-
Methods inherited from class uk.ac.starlink.topcat.plot2.AxisController
addActionListener, addAspectConfigTab, addControl, addNavigatorTab, assertHasKeys, clearAspect, clearRange, getActionForwarder, getAspect, getConfig, getControls, getMainControl, getNavigator, getRanges, getSurfaceFactory, removeActionListener, setAspect, setLatestSurface, setRanges, submitReports, updateState
-
-
-
-
Method Detail
-
configureForLayers
public void configureForLayers(LayerControl[] controls)
Description copied from class:AxisController
This abstract method provides a hook for implementations to adjust their GUI state based on the layer controls which will be supplying layers for them to plot.- Specified by:
configureForLayers
in classAxisController<P,A>
- Parameters:
controls
- layer controls expected to provide layers to be plotted on these axes
-
addLabelsTab
protected void addLabelsTab()
Adds the axis label configuration tab set up by this component. It's not done in the constructor so that subclasses can decide where it goes in terms of the other config tabs.
-
getLabelSpecifier
public AutoConfigSpecifier getLabelSpecifier()
Returns the specifier used for axis labels.- Returns:
- axis label specifier
-
forceClearRange
protected boolean forceClearRange(P oldProfile, P newProfile)
Description copied from class:AxisController
Determines whether the change between two profiles forces an unconditional re-range of the plotting surface. This method should return true if the plotting surface will change between the old and new supplied profiles sufficiently to invalidate previously calculated auto range data.- Specified by:
forceClearRange
in classAxisController<P,A>
- Parameters:
oldProfile
- profile before changenewProfile
- profile after change- Returns:
- true if a new auto-ranging is required
-
logChanged
protected abstract boolean logChanged(P prof1, P prof2)
Indicates whether the scaling has changed to or from logarithmic for any of the cartesian axes between two profiles. If so, it's going to be necessary to rescale, since attempting a log plot with negative values would fail.- Parameters:
prof1
- first profileprof2
- second profile- Returns:
- true iff some of the axes are log in prof1 and linear in prof2 or vice versa
-
-