Class AbstractMultiInputDialog
- java.lang.Object
-
- java.awt.Component
-
- java.awt.Container
-
- java.awt.Window
-
- java.awt.Dialog
-
- javax.swing.JDialog
-
- com.vividsolutions.jump.workbench.ui.AbstractMultiInputDialog
-
- All Implemented Interfaces:
ImageObserver
,MenuContainer
,Serializable
,Accessible
,RootPaneContainer
,WindowConstants
- Direct Known Subclasses:
MultiInputDialog
public abstract class AbstractMultiInputDialog extends JDialog
Flexible generic dialog to prompt the user typing input parameters. This abstract class includes the logic from original JUMP MultiInputDialog but does not layout components, which is done by implementing classes.- Author:
- Michaël Michaud
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class javax.swing.JDialog
JDialog.AccessibleJDialog
-
Nested classes/interfaces inherited from class java.awt.Dialog
Dialog.AccessibleAWTDialog, Dialog.ModalExclusionType, Dialog.ModalityType
-
Nested classes/interfaces inherited from class java.awt.Window
Window.AccessibleAWTWindow, Window.Type
-
Nested classes/interfaces inherited from class java.awt.Container
Container.AccessibleAWTContainer
-
Nested classes/interfaces inherited from class java.awt.Component
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy
-
-
Field Summary
Fields Modifier and Type Field Description static int
BOTH
Flag indicating that the main component will fill the space.static int
HORIZONTAL
Flag indicating that the main component will fill the space.static int
LEFT_LABEL
The label is displayed on the left of the control.static int
NO_LABEL
The label of the control is not displayed.static String
NO_VALID_ATTRIBUTE
Attribute combobox message displayed if no valid attribute is available.static int
NONE
Flag indicating that the main component will always use its preferred size.static int
RIGHT_LABEL
The label is displayed on the right of the control.static int
VERTICAL
Flag indicating that the main component will fill the space vertically.-
Fields inherited from class javax.swing.JDialog
accessibleContext, rootPane, rootPaneCheckingEnabled
-
Fields inherited from class java.awt.Dialog
DEFAULT_MODALITY_TYPE
-
Fields inherited from class java.awt.Component
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
-
Fields inherited from interface java.awt.image.ImageObserver
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH
-
Fields inherited from interface javax.swing.WindowConstants
DISPOSE_ON_CLOSE, DO_NOTHING_ON_CLOSE, EXIT_ON_CLOSE, HIDE_ON_CLOSE
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractMultiInputDialog(Frame frame, String title, boolean modal)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description JComboBox<String>
addAttributeComboBox(String fieldName, String layerFieldName, AttributeTypeFilter filter, String toolTipText)
Add a JComboBox containing attributes of the Layer selected in layerFieldNameJButton
addButton(String text)
Adds a JButton to this dialog.JButton
addButton(String fieldName, String text, String toolTipText)
Adds a JButton to this dialog.JCheckBox
addCheckBox(String fieldName, boolean initialValue)
Create a CheckBox to get a boolean value from the user.JCheckBox
addCheckBox(String fieldName, boolean initialValue, String toolTipText)
Create a CheckBox to get a boolean value from the user.<T> JComboBox<T>
addComboBox(String fieldName, T selectedItem, Collection<T> items, String toolTipText)
Adds a JComboBox control to this dialog.protected void
addComponent(String fieldName, Component label, Component component)
JTextField
addDoubleField(String fieldName, double initialValue, int approxWidthInChars)
Adds a JTextField control for double values.JTextField
addDoubleField(String fieldName, double initialValue, int decimals, int approxWidthInChars, String toolTipText)
Adds a JTextField field for double values.JTextField
addDoubleField(String fieldName, double initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for double value inputs.JComboBox<Layer>
addEditableLayerComboBox(String fieldName, Layer initialValue, String toolTipText, LayerManager layerManager)
Add a JComboBox containing editable layers of a LayerManager.void
addEnableChecks(String fieldName, EnableCheck... enableChecks)
void
addEnableChecks(String fieldName, Collection<EnableCheck> enableChecks)
Adding enableChecks to the fieldNameToEnableCheckListMap CollectionMap.JTextField
addIntegerField(String fieldName, int initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for integer inputs.JLabel
addLabel(String text)
Adds a JLabel to this dialog.<T extends Layerable>
JComboBox<T>addLayerableComboBox(String fieldName, T initialValue, String toolTipText, LayerManager layerManager, Class<T> clazz)
Add a JComboBox containing layerables of type clazz.<T> JComboBox<T>
addLayerableComboBox(String fieldName, T initialValue, String toolTipText, Collection<T> layerable)
generic method to load collection of layerable into JComboBox with renderer of layerable (layer icon)JComboBox<Layer>
addLayerComboBox(String fieldName, Layer initialValue, LayerManager layerManager)
Add a JComboBox containing available layers from the current LayerManager.JComboBox<Layer>
addLayerComboBox(String fieldName, Layer initialValue, String toolTipText, LayerManager layerManager)
Add a JComboBox containing available layers from the current LayerManager.JComboBox<Layer>
addLayerComboBox(String fieldName, Layer initialValue, String toolTipText, Collection<Layer> layers)
Add a JComboBox containing any collection of Layers.JComboBox<Layer>
addLayerComboBox(String fieldName, String toolTipText, LayerManager layerManager, AttributeTypeFilter filter)
Add a JComboBox containing layers containing the specified AttributeType.JTextField
addNonNegativeDoubleField(String fieldName, double initialValue, int approxWidthInChars)
Adds a JTextField control for positive double value inputs.JTextField
addNonNegativeDoubleField(String fieldName, double initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for positive double value inputs.JTextField
addPositiveDoubleField(String fieldName, double initialValue, int approxWidthInChars)
Adds a JTextField control for positive double value inputs.JTextField
addPositiveDoubleField(String fieldName, double initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for positive double value inputs.JTextField
addPositiveIntegerField(String fieldName, int initialValue, int approxWidthInChars)
Adds a JTextField control for positive integer inputs.JTextField
addPositiveIntegerField(String fieldName, int initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for positive integer inputs.JRadioButton
addRadioButton(String fieldName, String buttonGroupName, boolean initialValue, String toolTipText)
Adds a RadioButton to the buttonGroupName group.JComboBox<RasterImageLayer>
addRasterLayerComboBox(String fieldName, RasterImageLayer initialValue, String toolTipText, LayerManager layerManager)
Add a JComboBox containing RasterImageLayers.protected abstract void
addRow()
protected abstract void
addRow(String fieldName, JComponent label, JComponent component, EnableCheck[] enableChecks, String toolTipText, int labelPos, int fillMode)
Adds a row (containing either a control or a label) to the Dialog.protected abstract void
addRow(JComponent c)
void
addSeparator()
Adds a horizontal separator between two set of controls.JLabel
addSubTitle(String text)
Adds a JLabel to display a subtitle in the dialog.JTextArea
addTextAreaField(String fieldName, String initialValue, int rowNumber, int columnNumber, boolean scrollable, EnableCheck[] enableChecks, String toolTipText)
Adds a TextArea field.JTextField
addTextField(String fieldName, String initialValue, int approxWidthInChars, EnableCheck[] enableChecks, String toolTipText)
Adds a JTextField control to this dialog.EnableCheck
createDoubleCheck(String fieldName)
Check if the control contains a valid Double.EnableCheck
createIntegerCheck(String fieldName)
Check if the control contains a valid Integer.EnableCheck
createNonNegativeCheck(String fieldName)
Check if the control contains a non-negative Number.EnableCheck
createPositiveCheck(String fieldName)
Check if the control contains a positive Number.protected String
firstValidationErrorMessage()
boolean
getBoolean(String fieldName)
Returns selected state for checkboxes, radio buttons.JCheckBox
getCheckBox(String fieldName)
Gets JCheckBox component matching this fieldName.<T> JComboBox<T>
getComboBox(String fieldName)
Gets JComboBox component matching this fieldName.protected Component
getComponent(String fieldName)
double
getDouble(String fieldName)
Returns double value from a JTextField control.JFileChooser
getFileChooser(String fieldName)
Gets JFileChooser component matching this fieldName.List<File>
getFiles(String fieldName)
Returns a File Collection from a JFilechooser control.int
getInteger(String fieldName)
Returns integer value from a JTextField control.JLabel
getLabel(String fieldName)
Gets JLabel matching this fieldName.Layer
getLayer(String fieldName)
Returns a Layer from a control.Layerable
getLayerable(String fieldName)
Returns a Layerable from a control.JRadioButton
getRadioButton(String fieldName)
Gets JRadioButton component matching this fieldName.RasterImageLayer
getRasterLayer(String fieldName)
Returns a RasterImageLayer from a control.String
getText(String fieldName)
Gets the string value of a controlObject
getValue(Component component)
Fetch the current value held by a component given.Object
getValue(String fieldName)
Convenience method forgetValue(Component)
protected boolean
isInputValid()
protected void
reportValidationError(String errorMessage)
void
setFieldEnabled(String fieldName, boolean enable)
void
setFieldVisible(String fieldName, boolean visible)
-
Methods inherited from class javax.swing.JDialog
addImpl, createRootPane, dialogInit, getAccessibleContext, getContentPane, getDefaultCloseOperation, getGlassPane, getGraphics, getJMenuBar, getLayeredPane, getRootPane, getTransferHandler, isDefaultLookAndFeelDecorated, isRootPaneCheckingEnabled, paramString, processWindowEvent, remove, repaint, setContentPane, setDefaultCloseOperation, setDefaultLookAndFeelDecorated, setGlassPane, setJMenuBar, setLayeredPane, setLayout, setRootPane, setRootPaneCheckingEnabled, setTransferHandler, update
-
Methods inherited from class java.awt.Dialog
addNotify, getModalityType, getTitle, hide, isModal, isResizable, isUndecorated, setBackground, setModal, setModalityType, setOpacity, setResizable, setShape, setTitle, setUndecorated, setVisible, show, toBack
-
Methods inherited from class java.awt.Window
addPropertyChangeListener, addPropertyChangeListener, addWindowFocusListener, addWindowListener, addWindowStateListener, applyResourceBundle, applyResourceBundle, createBufferStrategy, createBufferStrategy, dispose, getBackground, getBufferStrategy, getFocusableWindowState, getFocusCycleRootAncestor, getFocusOwner, getFocusTraversalKeys, getIconImages, getInputContext, getListeners, getLocale, getModalExclusionType, getMostRecentFocusOwner, getOpacity, getOwnedWindows, getOwner, getOwnerlessWindows, getShape, getToolkit, getType, getWarningString, getWindowFocusListeners, getWindowListeners, getWindows, getWindowStateListeners, isActive, isAlwaysOnTop, isAlwaysOnTopSupported, isAutoRequestFocus, isFocusableWindow, isFocusCycleRoot, isFocused, isLocationByPlatform, isOpaque, isShowing, isValidateRoot, pack, paint, postEvent, processEvent, processWindowFocusEvent, processWindowStateEvent, removeNotify, removeWindowFocusListener, removeWindowListener, removeWindowStateListener, reshape, setAlwaysOnTop, setAutoRequestFocus, setBounds, setBounds, setCursor, setFocusableWindowState, setFocusCycleRoot, setIconImage, setIconImages, setLocation, setLocation, setLocationByPlatform, setLocationRelativeTo, setMinimumSize, setModalExclusionType, setSize, setSize, setType, toFront
-
Methods inherited from class java.awt.Container
add, add, add, add, add, addContainerListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalPolicy, getInsets, getLayout, getMaximumSize, getMinimumSize, getMousePosition, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, print, printComponents, processContainerEvent, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusTraversalKeys, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setFont, transferFocusDownCycle, validate, validateTree
-
Methods inherited from class java.awt.Component
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, contains, createImage, createImage, createVolatileImage, createVolatileImage, disable, disableEvents, dispatchEvent, enable, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBaseline, getBaselineResizeBehavior, getBounds, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getFontMetrics, getForeground, getGraphicsConfiguration, getHeight, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocation, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getSize, getTreeLock, getWidth, getX, getY, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isDoubleBuffered, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, prepareImage, prepareImage, printAll, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processKeyEvent, processMouseEvent, processMouseMotionEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, requestFocus, requestFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, requestFocusInWindow, resize, resize, revalidate, setComponentOrientation, setDropTarget, setEnabled, setFocusable, setFocusTraversalKeysEnabled, setForeground, setIgnoreRepaint, setLocale, setMaximumSize, setMixingCutoutShape, setName, setPreferredSize, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle
-
-
-
-
Field Detail
-
NO_LABEL
public static final int NO_LABEL
The label of the control is not displayed.- See Also:
- Constant Field Values
-
LEFT_LABEL
public static final int LEFT_LABEL
The label is displayed on the left of the control.- See Also:
- Constant Field Values
-
RIGHT_LABEL
public static final int RIGHT_LABEL
The label is displayed on the right of the control.- See Also:
- Constant Field Values
-
HORIZONTAL
public static final int HORIZONTAL
Flag indicating that the main component will fill the space.- See Also:
- Constant Field Values
-
VERTICAL
public static final int VERTICAL
Flag indicating that the main component will fill the space vertically.- See Also:
- Constant Field Values
-
BOTH
public static final int BOTH
Flag indicating that the main component will fill the space.- See Also:
- Constant Field Values
-
NONE
public static final int NONE
Flag indicating that the main component will always use its preferred size.- See Also:
- Constant Field Values
-
NO_VALID_ATTRIBUTE
public static final String NO_VALID_ATTRIBUTE
Attribute combobox message displayed if no valid attribute is available.
-
-
Method Detail
-
createDoubleCheck
public EnableCheck createDoubleCheck(String fieldName)
Check if the control contains a valid Double.
-
createIntegerCheck
public EnableCheck createIntegerCheck(String fieldName)
Check if the control contains a valid Integer.
-
createPositiveCheck
public EnableCheck createPositiveCheck(String fieldName)
Check if the control contains a positive Number.
-
createNonNegativeCheck
public EnableCheck createNonNegativeCheck(String fieldName)
Check if the control contains a non-negative Number.
-
getComboBox
public <T> JComboBox<T> getComboBox(String fieldName)
Gets JComboBox component matching this fieldName.
-
getCheckBox
public JCheckBox getCheckBox(String fieldName)
Gets JCheckBox component matching this fieldName.
-
getRadioButton
public JRadioButton getRadioButton(String fieldName)
Gets JRadioButton component matching this fieldName.
-
getFileChooser
public JFileChooser getFileChooser(String fieldName)
Gets JFileChooser component matching this fieldName.
-
getValue
public Object getValue(Component component)
Fetch the current value held by a component given. Semi intelligent it returns - String text for text components and scrollpanes - selected Objects for combo boxes - Boolean states for buttons and checkboxes - List of files for file choosers- Parameters:
component
- the Component to get the value from- Returns:
- an Object containing the value wrapped in the Component
-
getValue
public Object getValue(String fieldName)
Convenience method forgetValue(Component)
- Parameters:
fieldName
- the field name- Returns:
- an Object containing the value for this field name
-
getText
public String getText(String fieldName)
Gets the string value of a control- Parameters:
fieldName
- control to read- Returns:
- the string value of the control
-
getBoolean
public boolean getBoolean(String fieldName)
Returns selected state for checkboxes, radio buttons.
-
getDouble
public double getDouble(String fieldName)
Returns double value from a JTextField control.
-
getInteger
public int getInteger(String fieldName)
Returns integer value from a JTextField control.
-
getRasterLayer
public RasterImageLayer getRasterLayer(String fieldName)
Returns a RasterImageLayer from a control.
-
getFiles
public List<File> getFiles(String fieldName)
Returns a File Collection from a JFilechooser control.
-
addEnableChecks
public void addEnableChecks(String fieldName, Collection<EnableCheck> enableChecks)
Adding enableChecks to the fieldNameToEnableCheckListMap CollectionMap.- Parameters:
fieldName
- fieldName of the controlenableChecks
- EnableCheck array to validate this control input
-
addEnableChecks
public void addEnableChecks(String fieldName, EnableCheck... enableChecks)
-
addTextField
public JTextField addTextField(String fieldName, String initialValue, int approxWidthInChars, EnableCheck[] enableChecks, String toolTipText)
Adds a JTextField control to this dialog.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in charactersenableChecks
- checks to validate the input valuetoolTipText
- tool tip to help the user- Returns:
- the JTextField control added to this dialog
-
addComboBox
public <T> JComboBox<T> addComboBox(String fieldName, T selectedItem, Collection<T> items, String toolTipText)
Adds a JComboBox control to this dialog.- Parameters:
fieldName
- field name of the controlselectedItem
- initial selected itemitems
- items displayed in the JComboBoxtoolTipText
- tool tip to help the user- Returns:
- the JComboBox control added to this dialog
-
addLabel
public JLabel addLabel(String text)
Adds a JLabel to this dialog. The label can contain html (e.g. "Bold label for a subtitle")- Parameters:
text
- text to display in the JLabel- Returns:
- the JLabel added to this dialog
-
addSubTitle
public JLabel addSubTitle(String text)
Adds a JLabel to display a subtitle in the dialog.- Parameters:
text
- text to display in the JLabel- Returns:
- the JLabel added to this dialog
-
addButton
public JButton addButton(String fieldName, String text, String toolTipText)
Adds a JButton to this dialog. Action associated to this JButton must be defined.- Parameters:
fieldName
- will be used for the label text on the left of the buttontext
- text to display in the JButtontoolTipText
- tooltip text associated to the JButton- Returns:
- the JButton added to this dialog
-
addButton
public JButton addButton(String text)
Adds a JButton to this dialog. Action associated to this JButton must be defined.- Parameters:
text
- text to display in the JButton- Returns:
- the JButton added to this dialog
-
addSeparator
public void addSeparator()
Adds a horizontal separator between two set of controls.
-
addIntegerField
public JTextField addIntegerField(String fieldName, int initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for integer inputs.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characterstoolTipText
- tool tip to help the user- Returns:
- the JTextField control added to this dialog
-
addPositiveIntegerField
public JTextField addPositiveIntegerField(String fieldName, int initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for positive integer inputs.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characterstoolTipText
- tool tip to help the user- Returns:
- the JTextField control added to this dialog
-
addPositiveIntegerField
public JTextField addPositiveIntegerField(String fieldName, int initialValue, int approxWidthInChars)
Adds a JTextField control for positive integer inputs.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characters- Returns:
- the JTextField control added to this dialog
-
addDoubleField
public JTextField addDoubleField(String fieldName, double initialValue, int decimals, int approxWidthInChars, String toolTipText)
Adds a JTextField field for double values. Allows limiting the number of decimals, defaulting to 0. Always shows the number as decimal and _never_ uses the scientific notation like "1.234E15"- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controldecimals
- number of decimals to round toapproxWidthInChars
- approximative width of the control in characters- Returns:
- the JTextField control added to this dialog
-
addDoubleField
public JTextField addDoubleField(String fieldName, double initialValue, int approxWidthInChars)
Adds a JTextField control for double values.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characters- Returns:
- the JTextField control added to this dialog
-
addDoubleField
public JTextField addDoubleField(String fieldName, double initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for double value inputs.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characterstoolTipText
- tool tip to help the user- Returns:
- the JTextField control added to this dialog
-
addPositiveDoubleField
public JTextField addPositiveDoubleField(String fieldName, double initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for positive double value inputs.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characters- Returns:
- the JTextField control added to this dialog
-
addPositiveDoubleField
public JTextField addPositiveDoubleField(String fieldName, double initialValue, int approxWidthInChars)
Adds a JTextField control for positive double value inputs.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characters- Returns:
- the JTextField control added to this dialog
-
addNonNegativeDoubleField
public JTextField addNonNegativeDoubleField(String fieldName, double initialValue, int approxWidthInChars, String toolTipText)
Adds a JTextField control for positive double value inputs.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characterstoolTipText
- tool tip text associated with this text field- Returns:
- the JTextField control added to this dialog
-
addNonNegativeDoubleField
public JTextField addNonNegativeDoubleField(String fieldName, double initialValue, int approxWidthInChars)
Adds a JTextField control for positive double value inputs.- Parameters:
fieldName
- field name of the controlinitialValue
- initial value of the controlapproxWidthInChars
- approximative width of the control in characters- Returns:
- the JTextField control added to this dialog
-
addLayerComboBox
public JComboBox<Layer> addLayerComboBox(String fieldName, Layer initialValue, String toolTipText, Collection<Layer> layers)
Add a JComboBox containing any collection of Layers.- Parameters:
fieldName
- field name of the controlinitialValue
- default layer visible in the combo boxtoolTipText
- tool tip text associated with this combo boxlayers
- layers to be proposed in the combo box- Returns:
- the JComboBox
-
addLayerComboBox
public JComboBox<Layer> addLayerComboBox(String fieldName, Layer initialValue, LayerManager layerManager)
Add a JComboBox containing available layers from the current LayerManager.- Parameters:
fieldName
- field name of the controlinitialValue
- default layer visible in the combo boxlayerManager
- the LayerManager providing layers to the combo box- Returns:
- the JComboBox
-
addLayerComboBox
public JComboBox<Layer> addLayerComboBox(String fieldName, Layer initialValue, String toolTipText, LayerManager layerManager)
Add a JComboBox containing available layers from the current LayerManager.- Parameters:
fieldName
- field name of the controlinitialValue
- default layer visible in the combo boxtoolTipText
- tool tip text associated with this combo boxlayerManager
- the LayerManager providing layers to the combo box- Returns:
- the JComboBox
-
addEditableLayerComboBox
public JComboBox<Layer> addEditableLayerComboBox(String fieldName, Layer initialValue, String toolTipText, LayerManager layerManager)
Add a JComboBox containing editable layers of a LayerManager.- Parameters:
fieldName
- field name of the controlinitialValue
- default layer visible in the combo boxtoolTipText
- tool tip text associated with this combo boxlayerManager
- the LayerManager providing layers to the combo box- Returns:
- the JComboBox
-
addLayerComboBox
public JComboBox<Layer> addLayerComboBox(String fieldName, String toolTipText, LayerManager layerManager, AttributeTypeFilter filter)
Add a JComboBox containing layers containing the specified AttributeType.- Parameters:
fieldName
- field name of the controltoolTipText
- tool tip text associated with this combo boxlayerManager
- the LayerManager providing layers to the combo boxfilter
- a filter to select layers with specified AttributeTypes- Returns:
- the JComboBox
-
addRasterLayerComboBox
public JComboBox<RasterImageLayer> addRasterLayerComboBox(String fieldName, RasterImageLayer initialValue, String toolTipText, LayerManager layerManager)
Add a JComboBox containing RasterImageLayers.- Parameters:
fieldName
- field name of the controltoolTipText
- tool tip text associated with this combo boxlayerManager
- the LayerManager providing RasterImageLayers to the combo box- Returns:
- the JComboBox
-
addLayerableComboBox
public <T extends Layerable> JComboBox<T> addLayerableComboBox(String fieldName, T initialValue, String toolTipText, LayerManager layerManager, Class<T> clazz)
Add a JComboBox containing layerables of type clazz.- Parameters:
fieldName
- field name of the controltoolTipText
- tool tip text associated with this combo boxlayerManager
- the LayerManager providing layers to the combo boxclazz
- class of the layerables- Returns:
- the JComboBox
-
addAttributeComboBox
public JComboBox<String> addAttributeComboBox(String fieldName, String layerFieldName, AttributeTypeFilter filter, String toolTipText)
Add a JComboBox containing attributes of the Layer selected in layerFieldName- Parameters:
fieldName
- field name for the attributelayerFieldName
- field name of the ComboBox used to choose the layerfilter
- filter valid attributes from their typetoolTipText
- a toolTip for this JComboBox- Returns:
- the JComboBox
-
addCheckBox
public JCheckBox addCheckBox(String fieldName, boolean initialValue)
Create a CheckBox to get a boolean value from the user.- Parameters:
fieldName
- field name of the controlinitialValue
- default boolean value- Returns:
- the JCheckBox
-
addCheckBox
public JCheckBox addCheckBox(String fieldName, boolean initialValue, String toolTipText)
Create a CheckBox to get a boolean value from the user.- Parameters:
fieldName
- field name of the controlinitialValue
- default boolean valuetoolTipText
- tool tip text associated with this check box- Returns:
- the JCheckBox
-
addRadioButton
public JRadioButton addRadioButton(String fieldName, String buttonGroupName, boolean initialValue, String toolTipText)
Adds a RadioButton to the buttonGroupName group.- Parameters:
fieldName
- field name of the controlbuttonGroupName
- buttonGroupName of this RadioButtoninitialValue
- default boolean valuetoolTipText
- tool tip text associated with this check box- Returns:
- the JRadioButton
-
addTextAreaField
public JTextArea addTextAreaField(String fieldName, String initialValue, int rowNumber, int columnNumber, boolean scrollable, EnableCheck[] enableChecks, String toolTipText)
Adds a TextArea field.- Parameters:
fieldName
- field name of the controlinitialValue
- default boolean valuerowNumber
- initial row numbercolumnNumber
- initial column numberscrollable
- if true, the textArea is embeded into a JScrollPaneenableChecks
- checks to validate the input valuetoolTipText
- tool tip text associated with this check box- Returns:
- the JTextArea
-
addRow
protected abstract void addRow(String fieldName, JComponent label, JComponent component, EnableCheck[] enableChecks, String toolTipText, int labelPos, int fillMode)
Adds a row (containing either a control or a label) to the Dialog.- Parameters:
fieldName
- field name of the control (used as a key)label
- label of the controlcomponent
- the control itself (may also be a label or a separator)enableChecks
- checks to validate inputstoolTipText
- ToolTip textlabelPos
- 0, 1 or 2 depending on whether the label is hidden, on the left side or on the right side of the componentfillMode
- true if the component must fill the available space
-
addRow
protected abstract void addRow(JComponent c)
-
addRow
protected abstract void addRow()
-
setFieldEnabled
public void setFieldEnabled(String fieldName, boolean enable)
-
setFieldVisible
public void setFieldVisible(String fieldName, boolean visible)
-
reportValidationError
protected void reportValidationError(String errorMessage)
-
isInputValid
protected boolean isInputValid()
-
firstValidationErrorMessage
protected String firstValidationErrorMessage()
-
addLayerableComboBox
public <T> JComboBox<T> addLayerableComboBox(String fieldName, T initialValue, String toolTipText, Collection<T> layerable)
generic method to load collection of layerable into JComboBox with renderer of layerable (layer icon)- Parameters:
fieldName
- field name of the controlinitialValue
- default layer visible in the combo boxtoolTipText
- tool tip text associated with this combo boxlayerable
- layers to be proposed in the combo box- Returns:
- the JComboBox
-
-