Package uk.ac.starlink.topcat.plot
Class SphericalAxesSelector
java.lang.Object
uk.ac.starlink.topcat.plot.SphericalAxesSelector
- All Implemented Interfaces:
AxesSelector
AxesSelector implementation which queries for spherical polar coordinates
and yields 3D Cartesian ones.
- Since:
- 31 May 2007
- Author:
- Mark Taylor
-
Constructor Summary
ConstructorsConstructorDescriptionSphericalAxesSelector(ToggleButtonModel logToggler, ToggleButtonModel tangentErrorToggler, ErrorModeSelectionModel radialErrorModeModel) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddActionListener(ActionListener listener) Adds a listener which is notified when any of the selections made by this component changes.Constructs an array of AxisEditor objects suitable for modifying the axes which are defined by this selector.createPointStore(int npoint) Returns a PointStore suitable for storing coordinate and error information generated by the current state of this selector.Returns the panel which contains column selectors and any other UI components that the concrete subclass wants to place.Returns the array of combo boxes which are used to select column or other values.uk.ac.starlink.table.StarTablegetData()Returns a StarTable which corresponds to the data in the columns selected by the current selections on this object.uk.ac.starlink.table.StarTableReturns a StarTable which corresponds to the error data defined by the current selections.uk.ac.starlink.ttools.plot.ErrorMode[]Returns the error modes currently in force for this selector.uk.ac.starlink.table.StarTableReturns a StarTable whose single column contains a label for each point.intgetNdim()Returns the number of columns in the table thatAxesSelector.getData()will return.uk.ac.starlink.table.ValueInfoReturns metadata describing the currently selected radial coordinate.voidHint to set up the values of the column selectors to a sensible value.booleanisReady()Indicates whether this selector has enough state filled in to be able to specify some point data.voidremoveActionListener(ActionListener listener) Removes a listener added byAxesSelector.addActionListener(java.awt.event.ActionListener).voidsetRadialVisible(boolean vis) Determines whether the radial axis control is visible.voidsetTable(TopcatModel tcModel) Set up column selectors correctly for the given model.
-
Constructor Details
-
SphericalAxesSelector
public SphericalAxesSelector(ToggleButtonModel logToggler, ToggleButtonModel tangentErrorToggler, ErrorModeSelectionModel radialErrorModeModel) Constructor.- Parameters:
logToggler- model for determining whether the radial coordinate is to be scaled logarithmicallytangentErrorToggler- model indicating whether tangential errors will be drawnradialErrorModeModel- model indicating whether/how radial errors will be drawn
-
-
Method Details
-
getColumnSelectorPanel
Description copied from interface:AxesSelectorReturns the panel which contains column selectors and any other UI components that the concrete subclass wants to place.- Specified by:
getColumnSelectorPanelin interfaceAxesSelector- Returns:
- column selector panel
-
getColumnSelectors
Description copied from interface:AxesSelectorReturns the array of combo boxes which are used to select column or other values.- Specified by:
getColumnSelectorsin interfaceAxesSelector- Returns:
- array of column selector combo boxes
-
getNdim
public int getNdim()Description copied from interface:AxesSelectorReturns the number of columns in the table thatAxesSelector.getData()will return.- Specified by:
getNdimin interfaceAxesSelector- Returns:
- dimensionality
-
isReady
public boolean isReady()Description copied from interface:AxesSelectorIndicates whether this selector has enough state filled in to be able to specify some point data.- Specified by:
isReadyin interfaceAxesSelector- Returns:
- true iff properly filled in
-
getData
public uk.ac.starlink.table.StarTable getData()Description copied from interface:AxesSelectorReturns a StarTable which corresponds to the data in the columns selected by the current selections on this object.Note: for performance reasons, it is imperative that two tables returned from this method must match according to the
Object.equals(java.lang.Object)method if they are known to contain the same cell data (i.e. if the state of this selector has not changed in the mean time). Don't forget to dohashCodetoo.- Specified by:
getDatain interfaceAxesSelector- Returns:
- table containing the data from the current selection
-
getErrorData
public uk.ac.starlink.table.StarTable getErrorData()Description copied from interface:AxesSelectorReturns a StarTable which corresponds to the error data defined by the current selections. The details of how the table columns are laid out are down to the concrete subclass.See the notes in
AxesSelector.getData()about table equality - the same constraints apply.- Specified by:
getErrorDatain interfaceAxesSelector- Returns:
- error data table
-
getLabelData
public uk.ac.starlink.table.StarTable getLabelData()Description copied from interface:AxesSelectorReturns a StarTable whose single column contains a label for each point.See the notes in
AxesSelector.getData()about table equality - the same constraints apply.- Specified by:
getLabelDatain interfaceAxesSelector- Returns:
- label table
-
createPointStore
Description copied from interface:AxesSelectorReturns a PointStore suitable for storing coordinate and error information generated by the current state of this selector. The store will have to storenpointpoints, and itsPointStore.storePoint(java.lang.Object[], java.lang.Object[], java.lang.String)method will be called with the result of acquiring rows from the tables got from this selector'sAxesSelector.getData()andAxesSelector.getErrorData()methods.- Specified by:
createPointStorein interfaceAxesSelector- Parameters:
npoint- number of points to store- Returns:
- new point store
-
getErrorModes
public uk.ac.starlink.ttools.plot.ErrorMode[] getErrorModes()Description copied from interface:AxesSelectorReturns the error modes currently in force for this selector.- Specified by:
getErrorModesin interfaceAxesSelector- Returns:
- error mode array
-
createAxisEditors
Description copied from interface:AxesSelectorConstructs an array of AxisEditor objects suitable for modifying the axes which are defined by this selector. The number of them is often, but not necessarily, the same as the dimensionality of this selector.- Specified by:
createAxisEditorsin interfaceAxesSelector- Returns:
- array of new AxisEditors
-
setTable
Description copied from interface:AxesSelectorSet up column selectors correctly for the given model. This will involve setting the column selector models appropriately. If the submitted table is null, then the selector models should be unselected.- Specified by:
setTablein interfaceAxesSelector- Parameters:
tcModel- table for which selectors must be configured
-
initialiseSelectors
public void initialiseSelectors()Description copied from interface:AxesSelectorHint to set up the values of the column selectors to a sensible value. An implementation which does nothing is legal.- Specified by:
initialiseSelectorsin interfaceAxesSelector
-
addActionListener
Description copied from interface:AxesSelectorAdds a listener which is notified when any of the selections made by this component changes.- Specified by:
addActionListenerin interfaceAxesSelector- Parameters:
listener- listener to add
-
removeActionListener
Description copied from interface:AxesSelectorRemoves a listener added byAxesSelector.addActionListener(java.awt.event.ActionListener).- Specified by:
removeActionListenerin interfaceAxesSelector- Parameters:
listener- listener to remove
-
setRadialVisible
public void setRadialVisible(boolean vis) Determines whether the radial axis control is visible. If not, the radial axis is assumed always to have a value of unity.- Parameters:
vis- whether the radial control is visible
-
getRadialInfo
public uk.ac.starlink.table.ValueInfo getRadialInfo()Returns metadata describing the currently selected radial coordinate. If no radial coordinate is selected (all points on the surface of the sphere),nullis returned.- Returns:
- radial column info
-