X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTRadioGroup.java;h=0f84e71904fc7fef1b00fbacbb21d5fc3843e98c;hb=00691e80f2f135f92be739e2b7e86775a2357276;hp=20a1ccd468ba5f33259e9788f1db3d6ef45e7287;hpb=e16dda65585466c8987bd1efd718431450a96605;p=nikiroo-utils.git diff --git a/src/jexer/TRadioGroup.java b/src/jexer/TRadioGroup.java index 20a1ccd..0f84e71 100644 --- a/src/jexer/TRadioGroup.java +++ b/src/jexer/TRadioGroup.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2016 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -33,7 +33,11 @@ import jexer.bits.CellAttributes; /** * TRadioGroup is a collection of TRadioButtons with a box and label. */ -public final class TRadioGroup extends TWidget { +public class TRadioGroup extends TWidget { + + // ------------------------------------------------------------------------ + // Variables -------------------------------------------------------------- + // ------------------------------------------------------------------------ /** * Label for this radio button group. @@ -46,29 +50,14 @@ public final class TRadioGroup extends TWidget { private TRadioButton selectedButton = null; /** - * Get the radio button ID that was selected. - * - * @return ID of the selected button, or 0 if no button is selected + * If true, one of the children MUST be selected. Note package private + * access. */ - public int getSelected() { - if (selectedButton == null) { - return 0; - } - return selectedButton.getId(); - } + boolean requiresSelection = true; - /** - * Set the new selected radio button. Note package private access. - * - * @param button new button that became selected - */ - void setSelected(final TRadioButton button) { - assert (button.isSelected()); - if (selectedButton != null) { - selectedButton.setSelected(false); - } - selectedButton = button; - } + // ------------------------------------------------------------------------ + // Constructors ----------------------------------------------------------- + // ------------------------------------------------------------------------ /** * Public constructor. @@ -87,6 +76,10 @@ public final class TRadioGroup extends TWidget { this.label = label; } + // ------------------------------------------------------------------------ + // TWidget ---------------------------------------------------------------- + // ------------------------------------------------------------------------ + /** * Draw a radio button with label. */ @@ -100,11 +93,63 @@ public final class TRadioGroup extends TWidget { radioGroupColor = getTheme().getColor("tradiogroup.inactive"); } - getScreen().drawBox(0, 0, getWidth(), getHeight(), - radioGroupColor, radioGroupColor, 3, false); + drawBox(0, 0, getWidth(), getHeight(), radioGroupColor, radioGroupColor, + 3, false); + + hLineXY(1, 0, label.length() + 2, ' ', radioGroupColor); + putStringXY(2, 0, label, radioGroupColor); + } + + // ------------------------------------------------------------------------ + // TRadioGroup ------------------------------------------------------------ + // ------------------------------------------------------------------------ + + /** + * Get the radio button ID that was selected. + * + * @return ID of the selected button, or 0 if no button is selected + */ + public int getSelected() { + if (selectedButton == null) { + return 0; + } + return selectedButton.getId(); + } + + /** + * Set the new selected radio button. Note package private access. + * + * @param button new button that became selected + */ + void setSelected(final TRadioButton button) { + assert (button.isSelected()); + 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; + } - getScreen().hLineXY(1, 0, label.length() + 2, ' ', radioGroupColor); - getScreen().putStringXY(2, 0, label, radioGroupColor); + 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; } /** @@ -120,8 +165,13 @@ public final 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; } }