2 * Jexer - Java Text User Interface
4 * The MIT License (MIT)
6 * Copyright (C) 2019 Kevin Lamonte
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
31 import jexer
.bits
.CellAttributes
;
32 import jexer
.bits
.StringUtils
;
35 * TRadioGroup is a collection of TRadioButtons with a box and label.
37 public class TRadioGroup
extends TWidget
{
39 // ------------------------------------------------------------------------
40 // Variables --------------------------------------------------------------
41 // ------------------------------------------------------------------------
44 * Label for this radio button group.
49 * Only one of my children can be selected.
51 private TRadioButton selectedButton
= null;
54 * If true, one of the children MUST be selected. Note package private
57 boolean requiresSelection
= false;
59 // ------------------------------------------------------------------------
60 // Constructors -----------------------------------------------------------
61 // ------------------------------------------------------------------------
66 * @param parent parent widget
67 * @param x column relative to parent
68 * @param y row relative to parent
69 * @param width width of group
70 * @param label label to display on the group box
72 public TRadioGroup(final TWidget parent
, final int x
, final int y
,
73 final int width
, final String label
) {
75 // Set parent and window
76 super(parent
, x
, y
, width
, 2);
84 * @param parent parent widget
85 * @param x column relative to parent
86 * @param y row relative to parent
87 * @param label label to display on the group box
89 public TRadioGroup(final TWidget parent
, final int x
, final int y
,
92 // Set parent and window
93 super(parent
, x
, y
, StringUtils
.width(label
) + 4, 2);
98 // ------------------------------------------------------------------------
99 // TWidget ----------------------------------------------------------------
100 // ------------------------------------------------------------------------
103 * Override TWidget's width: we can only set width at construction time.
105 * @param width new widget width (ignored)
108 public void setWidth(final int width
) {
113 * Override TWidget's height: we can only set height at construction
116 * @param height new widget height (ignored)
119 public void setHeight(final int height
) {
124 * Draw a radio button with label.
128 CellAttributes radioGroupColor
;
130 if (isAbsoluteActive()) {
131 radioGroupColor
= getTheme().getColor("tradiogroup.active");
133 radioGroupColor
= getTheme().getColor("tradiogroup.inactive");
136 drawBox(0, 0, getWidth(), getHeight(), radioGroupColor
, radioGroupColor
,
139 hLineXY(1, 0, StringUtils
.width(label
) + 2, ' ', radioGroupColor
);
140 putStringXY(2, 0, label
, radioGroupColor
);
143 // ------------------------------------------------------------------------
144 // TRadioGroup ------------------------------------------------------------
145 // ------------------------------------------------------------------------
148 * Get the radio button ID that was selected.
150 * @return ID of the selected button, or 0 if no button is selected
152 public int getSelected() {
153 if (selectedButton
== null) {
156 return selectedButton
.getId();
160 * Set the new selected radio button. 1-based.
162 * @param id ID of the selected button, or 0 to unselect
164 public void setSelected(final int id
) {
165 if ((id
< 0) || (id
> getChildren().size())) {
169 for (TWidget widget
: getChildren()) {
170 ((TRadioButton
) widget
).selected
= false;
173 selectedButton
= null;
176 assert ((id
> 0) && (id
<= getChildren().size()));
177 TRadioButton button
= (TRadioButton
) (getChildren().get(id
- 1));
178 button
.selected
= true;
179 selectedButton
= button
;
183 * Get the radio button that was selected.
185 * @return the selected button, or null if no button is selected
187 public TRadioButton
getSelectedButton() {
188 return selectedButton
;
192 * Convenience function to add a radio button to this group.
194 * @param label label to display next to (right of) the radiobutton
195 * @param selected if true, this will be the selected radiobutton
196 * @return the new radio button
198 public TRadioButton
addRadioButton(final String label
,
199 final boolean selected
) {
201 TRadioButton button
= addRadioButton(label
);
202 setSelected(button
.id
);
207 * Convenience function to add a radio button to this group.
209 * @param label label to display next to (right of) the radiobutton
210 * @return the new radio button
212 public TRadioButton
addRadioButton(final String label
) {
213 return new TRadioButton(this, 0, 0, label
, 0);
217 * Package private method for RadioButton to add itself to a RadioGroup
220 * @param button the button to add
222 void addRadioButton(final TRadioButton button
) {
223 super.setHeight(getChildren().size() + 2);
225 button
.setY(getChildren().size());
226 button
.id
= getChildren().size();
227 String label
= button
.getMnemonic().getRawLabel();
229 if (StringUtils
.width(label
) + 4 > getWidth()) {
230 super.setWidth(StringUtils
.width(label
) + 7);
233 if (getParent().getLayoutManager() != null) {
234 getParent().getLayoutManager().resetSize(this);
237 // Default to the first item on the list.
238 activate(getChildren().get(0));
242 * Get the requires selection flag.
244 * @return true if this radiogroup requires that one of the buttons be
247 public boolean getRequiresSelection() {
248 return requiresSelection
;
252 * Set the requires selection flag.
254 * @param requiresSelection if true, then this radiogroup requires that
255 * one of the buttons be selected
257 public void setRequiresSelection(final boolean requiresSelection
) {
258 this.requiresSelection
= requiresSelection
;
259 if (requiresSelection
) {
260 if ((getChildren().size() > 0) && (selectedButton
== null)) {