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
.GraphicsChars
;
33 import jexer
.bits
.MnemonicString
;
34 import jexer
.event
.TKeypressEvent
;
35 import jexer
.event
.TMouseEvent
;
36 import static jexer
.TKeypress
.*;
39 * TRadioButton implements a selectable radio button.
41 * If the user clicks or presses space on this button, it is selected.
43 * If the user presses escape on this button, it is unselected.
45 public class TRadioButton
extends TWidget
{
47 // ------------------------------------------------------------------------
48 // Variables --------------------------------------------------------------
49 // ------------------------------------------------------------------------
52 * RadioButton state, true means selected.
54 private boolean selected
= false;
57 * The shortcut and radio button label.
59 private MnemonicString mnemonic
;
62 * ID for this radio button. Buttons start counting at 1 in the
67 // ------------------------------------------------------------------------
68 // Constructors -----------------------------------------------------------
69 // ------------------------------------------------------------------------
74 * @param parent parent widget
75 * @param x column relative to parent
76 * @param y row relative to parent
77 * @param label label to display next to (right of) the radiobutton
78 * @param id ID for this radio button
80 public TRadioButton(final TRadioGroup parent
, final int x
, final int y
,
81 final String label
, final int id
) {
83 // Set parent and window
84 super(parent
, x
, y
, label
.length() + 4, 1);
86 mnemonic
= new MnemonicString(label
);
89 setCursorVisible(true);
93 // ------------------------------------------------------------------------
94 // Event handlers ---------------------------------------------------------
95 // ------------------------------------------------------------------------
98 * Returns true if the mouse is currently on the radio button.
100 * @param mouse mouse event
101 * @return if true the mouse is currently on the radio button
103 private boolean mouseOnRadioButton(final TMouseEvent mouse
) {
104 if ((mouse
.getY() == 0)
105 && (mouse
.getX() >= 0)
106 && (mouse
.getX() <= 2)
114 * Handle mouse button presses.
116 * @param mouse mouse button press event
119 public void onMouseDown(final TMouseEvent mouse
) {
120 if ((mouseOnRadioButton(mouse
)) && (mouse
.isMouse1())) {
123 ((TRadioGroup
) getParent()).setSelected(this);
130 * @param keypress keystroke event
133 public void onKeypress(final TKeypressEvent keypress
) {
135 if (keypress
.equals(kbSpace
)) {
137 ((TRadioGroup
) getParent()).setSelected(this);
141 if (keypress
.equals(kbEsc
)) {
142 TRadioGroup parent
= (TRadioGroup
) getParent();
143 if (parent
.requiresSelection
== false) {
145 parent
.setSelected(0);
150 // Pass to parent for the things we don't care about.
151 super.onKeypress(keypress
);
154 // ------------------------------------------------------------------------
155 // TWidget ----------------------------------------------------------------
156 // ------------------------------------------------------------------------
159 * Draw a radio button with label.
163 CellAttributes radioButtonColor
;
164 CellAttributes mnemonicColor
;
166 if (isAbsoluteActive()) {
167 radioButtonColor
= getTheme().getColor("tradiobutton.active");
168 mnemonicColor
= getTheme().getColor("tradiobutton.mnemonic.highlighted");
170 radioButtonColor
= getTheme().getColor("tradiobutton.inactive");
171 mnemonicColor
= getTheme().getColor("tradiobutton.mnemonic");
174 putCharXY(0, 0, '(', radioButtonColor
);
176 putCharXY(1, 0, GraphicsChars
.CP437
[0x07], radioButtonColor
);
178 putCharXY(1, 0, ' ', radioButtonColor
);
180 putCharXY(2, 0, ')', radioButtonColor
);
181 putStringXY(4, 0, mnemonic
.getRawLabel(), radioButtonColor
);
182 if (mnemonic
.getShortcutIdx() >= 0) {
183 putCharXY(4 + mnemonic
.getShortcutIdx(), 0,
184 mnemonic
.getShortcut(), mnemonicColor
);
188 // ------------------------------------------------------------------------
189 // TRadioButton -----------------------------------------------------------
190 // ------------------------------------------------------------------------
193 * Get RadioButton state, true means selected.
195 * @return if true then this is the one button in the group that is
198 public boolean isSelected() {
203 * Set RadioButton state, true means selected. Note package private
206 * @param selected if true then this is the one button in the group that
209 void setSelected(final boolean selected
) {
210 this.selected
= selected
;
214 * Get ID for this radio button. Buttons start counting at 1 in the
224 * Get the mnemonic string for this button.
226 * @return mnemonic string
228 public MnemonicString
getMnemonic() {