Package com.iizix.prop.ui.mlist
Class MLRadioButton
java.lang.Object
com.iizix.prop.ui.mlist.MLItem
com.iizix.prop.ui.mlist.MLRadioButton
- All Implemented Interfaces:
IContentData<MLItemProp>,IMLArrowActionListener
The radio button list item class.
The radio button has a text on leading/trailing sides and a description. On the trailing side, a radio button is shown.
The trailing text can be left adjusted after the leading text that may have a fixed width in order to have an additional column of text.
The selection state is independent of other components, support for third state exists.
An optional description text can be added to the bottom of the list item.
- Author:
- Mikael Andersson
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringProperty name: trailing align opposite "ao".static final StringProperty name: display trailing arrow "arrow".static final StringProperty name: trailing text "tt".static final StringProperty name: trailing text virtual column reference "V_tt".Fields inherited from class com.iizix.prop.ui.mlist.MLItem
FIRST_COLUMN_INDEX, PN_ACTION, PN_ANIMATION, PN_DESCRIPTION, PN_ICON, PN_ICON_MARGINS, PN_LEADING_TEXT, PN_LEADING_WIDTH, PN_LEADING_WRAP, PN_V_DESCRIPTION, PN_V_LEADING_TEXT, PN_VS_FOCUSConstructor Summary
ConstructorsConstructorDescriptionMLRadioButton(boolean isSelected) Creates a new radio button list item.MLRadioButton(int state) Creates a new radio button list item.Method Summary
Modifier and TypeMethodDescriptionbooleanaddListener(IMLArrowActionListener listener) Adds an action listener for the arrow.booleanaddListener(IMLRadioButtonStateListener listener) Adds an radio button listener for the arrow.protected intReturns the column index for the description.protected intReturns the column index for the leading text.protected StringReturns the IntProp property name used to set the selection to.Gets the trailing text for the list item.getType()Returns the type.protected String[]Returns the property names for which themust be called.from(PropCnr,MLItemProp)voidinitialize(MLItemProp item) Initializes the item property from the content data.booleanReturns if the trailing arrow is displayed or not.booleanReturns if the trailing text is aligned to the opposite side, i.e.booleanisTrailingTextOppositeAligned(boolean opposite) Sets if the trailing text is aligned to the opposite side, i.e.voidonArrowInvoked(MLItem item) Called when the arrow action is invoked.voidrefreshFromVS(int[] columns) Refreshes contents from VirtualSpace.booleanremoveListener(IMLArrowActionListener listener) Removes an action listener for the arrow.booleanremoveListener(IMLRadioButtonStateListener listener) Removes a radio button listener for the arrow.booleansetArrowDisplayed(boolean on) Sets if the trailing arrow should be displayed or not.booleansetTrailingText(KString text) Sets the trailing text for the list item.Methods inherited from class com.iizix.prop.ui.mlist.MLItem
addMappings, doBooleanSelectionOnly, getContextMenu, getGroup, getIcon, getIconMargins, getItemProp, getLeadingText, getLeadingTextWrap, getLeadingWidth, getSelectionState, getVSRow, hasActionSupport, isEnabled, isReadOnly, isSelected, isVisible, setActionSupport, setContextMenu, setDescription, setEnabled, setIcon, setIconMargins, setIconPadding, setLeadingText, setLeadingTextEllipsis, setLeadingTextSingleLine, setLeadingTextWrap, setLeadingTextWrap, setLeadingWidth, setReadOnly, setSelected, setSelection, setSelectionInternal, setVisible
Field Details
PN_TRAILING_TEXT
Property name: trailing text "tt".- See Also:
PN_V_TRAILING_TEXT
Property name: trailing text virtual column reference "V_tt".- See Also:
PN_ALIGN_OPPOSITE
Property name: trailing align opposite "ao".- See Also:
PN_ARROW
Property name: display trailing arrow "arrow".- See Also:
Constructor Details
MLRadioButton
public MLRadioButton(boolean isSelected) Creates a new radio button list item.- Parameters:
isSelected- The selection state.
MLRadioButton
public MLRadioButton(int state) Creates a new radio button list item.- Parameters:
state- The selection state: 0=unselected, 1=selected.- Throws:
IllegalArgumentException- If check state is not 0 or 1.
Method Details
getSelectionPropName
Returns the IntProp property name used to set the selection to.- Overrides:
getSelectionPropNamein classMLItem- Returns:
- The selection property name "selected".
getType
Returns the type.getLeadingTextColumn
protected int getLeadingTextColumn()Returns the column index for the leading text. Types supporting description text must override this method.- Specified by:
getLeadingTextColumnin classMLItem- Returns:
- The column index, or -1 for none.
getDescriptionColumn
protected int getDescriptionColumn()Returns the column index for the description. Types supporting description text must override this method.- Specified by:
getDescriptionColumnin classMLItem- Returns:
- The column index = 3.
refreshFromVS
public void refreshFromVS(int[] columns) Refreshes contents from VirtualSpace.- Specified by:
refreshFromVSin interfaceIContentData<MLItemProp>- Specified by:
refreshFromVSin classMLItem- Parameters:
columns- The connected table columns indicies, -1 for none.
initialize
Initializes the item property from the content data. Each list item must implement this method to provider initialization of its own and call.initialize(MLItemProp)- Specified by:
initializein interfaceIContentData<MLItemProp>- Parameters:
item- The item.
getUpdatePropertyNames
Returns the property names for which themust be called.from(PropCnr,MLItemProp)- Returns:
- The array of update properties, never null.
getTrailingText
Gets the trailing text for the list item.- Returns:
- The text, or null if none is set.
setTrailingText
Sets the trailing text for the list item.- Parameters:
text- The new text, or null for none.- Returns:
- true for changed, false for no change.
isTrailingTextOppositeAligned
public boolean isTrailingTextOppositeAligned()Returns if the trailing text is aligned to the opposite side, i.e. leading instead of trailing.- Returns:
- true if trailing text is aligned to leading side, false for aligned to the trailing side.
isTrailingTextOppositeAligned
public boolean isTrailingTextOppositeAligned(boolean opposite) Sets if the trailing text is aligned to the opposite side, i.e. leading instead of trailing.- Parameters:
opposite- Alignment flag: true if trailing text is aligned to leading side, false for aligned to the trailing side.- Returns:
- true for changed, false for no change.
isArrowDisplayed
public boolean isArrowDisplayed()Returns if the trailing arrow is displayed or not.- Returns:
- true to display arrow, false not to display arrow.
setArrowDisplayed
public boolean setArrowDisplayed(boolean on) Sets if the trailing arrow should be displayed or not.- Parameters:
on- The display flag: true to display arrow, false not to display arrow.- Returns:
- true for changed, false for no change.
addListener
Adds an radio button listener for the arrow. Calling this method multiple times with the same listener will have no effect (but to return false).- Parameters:
listener- The listener to add.- Returns:
- true if the listener was added, false otherwise.
- Throws:
NullPointerException- If the listener isnull.
removeListener
Removes a radio button listener for the arrow.- Parameters:
listener- The listener to remove.- Returns:
- true if listener is successfully removed, false otherwise.
addListener
Adds an action listener for the arrow. Calling this method multiple times with the same listener will have no effect (but to return false).- Parameters:
listener- The listener to add.- Returns:
- true if the listener was added, false otherwise.
- Throws:
NullPointerException- If the listener isnull.
removeListener
Removes an action listener for the arrow.- Parameters:
listener- The listener to remove.- Returns:
- true if listener is successfully removed, false otherwise.
onArrowInvoked
Called when the arrow action is invoked. By default, this method will invoke all potential arrow action listeners. A subclass might override this method instead of adding a listener. This subclass should then call thesuper.onArrowInvoked(item)method in case listeners are added by others.- Specified by:
onArrowInvokedin interfaceIMLArrowActionListener- Parameters:
item- "this" item.