X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTRadioGroup.java;h=0f84e71904fc7fef1b00fbacbb21d5fc3843e98c;hb=00691e80f2f135f92be739e2b7e86775a2357276;hp=d57d86478a8ed502d1437bc5a74fca9125747c67;hpb=3cb993369fa76b6e9fd8ef19db3366349a09a678;p=fanfix.git diff --git a/src/jexer/TRadioGroup.java b/src/jexer/TRadioGroup.java index d57d864..0f84e71 100644 --- a/src/jexer/TRadioGroup.java +++ b/src/jexer/TRadioGroup.java @@ -49,6 +49,12 @@ public class TRadioGroup extends TWidget { */ private TRadioButton selectedButton = null; + /** + * If true, one of the children MUST be selected. Note package private + * access. + */ + boolean requiresSelection = true; + // ------------------------------------------------------------------------ // Constructors ----------------------------------------------------------- // ------------------------------------------------------------------------ @@ -117,12 +123,35 @@ public class TRadioGroup extends TWidget { */ void setSelected(final TRadioButton button) { assert (button.isSelected()); - if (selectedButton != null) { + if ((selectedButton != null) && (selectedButton != button)) { selectedButton.setSelected(false); } selectedButton = button; } + /** + * Set the new selected radio button. 1-based. + * + * @param id ID of the selected button, or 0 to unselect + */ + public void setSelected(final int id) { + if ((id < 0) || (id > getChildren().size())) { + return; + } + + if (id == 0) { + for (TWidget widget: getChildren()) { + ((TRadioButton) widget).setSelected(false); + } + selectedButton = null; + return; + } + assert ((id > 0) && (id <= getChildren().size())); + TRadioButton button = (TRadioButton) (getChildren().get(id - 1)); + button.setSelected(true); + selectedButton = button; + } + /** * Convenience function to add a radio button to this group. * @@ -136,8 +165,13 @@ public class TRadioGroup extends TWidget { setWidth(label.length() + 7); } setHeight(getChildren().size() + 3); - return new TRadioButton(this, buttonX, buttonY, label, + TRadioButton button = new TRadioButton(this, buttonX, buttonY, label, getChildren().size() + 1); + + // Default to the first item on the list. + activate(getChildren().get(0)); + + return button; } }