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
;
34 * TRadioGroup is a collection of TRadioButtons with a box and label.
36 public class TRadioGroup
extends TWidget
{
38 // ------------------------------------------------------------------------
39 // Variables --------------------------------------------------------------
40 // ------------------------------------------------------------------------
43 * Label for this radio button group.
48 * Only one of my children can be selected.
50 private TRadioButton selectedButton
= null;
53 * If true, one of the children MUST be selected. Note package private
56 boolean requiresSelection
= true;
58 // ------------------------------------------------------------------------
59 // Constructors -----------------------------------------------------------
60 // ------------------------------------------------------------------------
65 * @param parent parent widget
66 * @param x column relative to parent
67 * @param y row relative to parent
68 * @param label label to display on the group box
70 public TRadioGroup(final TWidget parent
, final int x
, final int y
,
73 // Set parent and window
74 super(parent
, x
, y
, label
.length() + 4, 2);
79 // ------------------------------------------------------------------------
80 // TWidget ----------------------------------------------------------------
81 // ------------------------------------------------------------------------
84 * Draw a radio button with label.
88 CellAttributes radioGroupColor
;
90 if (isAbsoluteActive()) {
91 radioGroupColor
= getTheme().getColor("tradiogroup.active");
93 radioGroupColor
= getTheme().getColor("tradiogroup.inactive");
96 drawBox(0, 0, getWidth(), getHeight(), radioGroupColor
, radioGroupColor
,
99 hLineXY(1, 0, label
.length() + 2, ' ', radioGroupColor
);
100 putStringXY(2, 0, label
, radioGroupColor
);
103 // ------------------------------------------------------------------------
104 // TRadioGroup ------------------------------------------------------------
105 // ------------------------------------------------------------------------
108 * Get the radio button ID that was selected.
110 * @return ID of the selected button, or 0 if no button is selected
112 public int getSelected() {
113 if (selectedButton
== null) {
116 return selectedButton
.getId();
120 * Set the new selected radio button. Note package private access.
122 * @param button new button that became selected
124 void setSelected(final TRadioButton button
) {
125 assert (button
.isSelected());
126 if ((selectedButton
!= null) && (selectedButton
!= button
)) {
127 selectedButton
.setSelected(false);
129 selectedButton
= button
;
133 * Set the new selected radio button. 1-based.
135 * @param id ID of the selected button, or 0 to unselect
137 public void setSelected(final int id
) {
138 if ((id
< 0) || (id
> getChildren().size())) {
143 for (TWidget widget
: getChildren()) {
144 ((TRadioButton
) widget
).setSelected(false);
146 selectedButton
= null;
149 assert ((id
> 0) && (id
<= getChildren().size()));
150 TRadioButton button
= (TRadioButton
) (getChildren().get(id
- 1));
151 button
.setSelected(true);
152 selectedButton
= button
;
156 * Convenience function to add a radio button to this group.
158 * @param label label to display next to (right of) the radiobutton
159 * @return the new radio button
161 public TRadioButton
addRadioButton(final String label
) {
163 int buttonY
= getChildren().size() + 1;
164 if (label
.length() + 4 > getWidth()) {
165 setWidth(label
.length() + 7);
167 setHeight(getChildren().size() + 3);
168 TRadioButton button
= new TRadioButton(this, buttonX
, buttonY
, label
,
169 getChildren().size() + 1);
171 // Default to the first item on the list.
172 activate(getChildren().get(0));