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
= true;
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 label label to display on the group box
71 public TRadioGroup(final TWidget parent
, final int x
, final int y
,
74 // Set parent and window
75 super(parent
, x
, y
, StringUtils
.width(label
) + 4, 2);
80 // ------------------------------------------------------------------------
81 // TWidget ----------------------------------------------------------------
82 // ------------------------------------------------------------------------
85 * Override TWidget's width: we can only set width at construction time.
87 * @param width new widget width (ignored)
90 public void setWidth(final int width
) {
95 * Override TWidget's height: we can only set height at construction
98 * @param height new widget height (ignored)
101 public void setHeight(final int height
) {
106 * Draw a radio button with label.
110 CellAttributes radioGroupColor
;
112 if (isAbsoluteActive()) {
113 radioGroupColor
= getTheme().getColor("tradiogroup.active");
115 radioGroupColor
= getTheme().getColor("tradiogroup.inactive");
118 drawBox(0, 0, getWidth(), getHeight(), radioGroupColor
, radioGroupColor
,
121 hLineXY(1, 0, StringUtils
.width(label
) + 2, ' ', radioGroupColor
);
122 putStringXY(2, 0, label
, radioGroupColor
);
125 // ------------------------------------------------------------------------
126 // TRadioGroup ------------------------------------------------------------
127 // ------------------------------------------------------------------------
130 * Get the radio button ID that was selected.
132 * @return ID of the selected button, or 0 if no button is selected
134 public int getSelected() {
135 if (selectedButton
== null) {
138 return selectedButton
.getId();
142 * Set the new selected radio button. Note package private access.
144 * @param button new button that became selected
146 void setSelected(final TRadioButton button
) {
147 assert (button
.isSelected());
148 if ((selectedButton
!= null) && (selectedButton
!= button
)) {
149 selectedButton
.setSelected(false);
151 selectedButton
= button
;
155 * Set the new selected radio button. 1-based.
157 * @param id ID of the selected button, or 0 to unselect
159 public void setSelected(final int id
) {
160 if ((id
< 0) || (id
> getChildren().size())) {
165 for (TWidget widget
: getChildren()) {
166 ((TRadioButton
) widget
).setSelected(false);
168 selectedButton
= null;
171 assert ((id
> 0) && (id
<= getChildren().size()));
172 TRadioButton button
= (TRadioButton
) (getChildren().get(id
- 1));
173 button
.setSelected(true);
174 selectedButton
= button
;
178 * Convenience function to add a radio button to this group.
180 * @param label label to display next to (right of) the radiobutton
181 * @return the new radio button
183 public TRadioButton
addRadioButton(final String label
) {
185 int buttonY
= getChildren().size() + 1;
186 if (StringUtils
.width(label
) + 4 > getWidth()) {
187 super.setWidth(StringUtils
.width(label
) + 7);
189 super.setHeight(getChildren().size() + 3);
190 TRadioButton button
= new TRadioButton(this, buttonX
, buttonY
, label
,
191 getChildren().size() + 1);
193 if (getParent().getLayoutManager() != null) {
194 getParent().getLayoutManager().resetSize(this);
197 // Default to the first item on the list.
198 activate(getChildren().get(0));