2 * Jexer - Java Text User Interface
4 * License: LGPLv3 or later
6 * This module is licensed under the GNU Lesser General Public License
7 * Version 3. Please see the file "COPYING" in this directory for more
8 * information about the GNU Lesser General Public License Version 3.
10 * Copyright (C) 2015 Kevin Lamonte
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 3 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this program; if not, see
24 * http://www.gnu.org/licenses/, or write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
28 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
33 import jexer
.bits
.CellAttributes
;
34 import jexer
.bits
.GraphicsChars
;
35 import jexer
.event
.TKeypressEvent
;
36 import jexer
.event
.TMouseEvent
;
37 import static jexer
.TKeypress
.*;
40 * TCheckbox implements an on/off checkbox.
42 public final class TCheckbox
extends TWidget
{
45 * Checkbox state, true means checked.
47 private boolean checked
= false;
50 * Label for this checkbox.
57 * @param parent parent widget
58 * @param x column relative to parent
59 * @param y row relative to parent
60 * @param label label to display next to (right of) the checkbox
61 * @param checked initial check state
63 public TCheckbox(final TWidget parent
, final int x
, final int y
,
64 final String label
, final boolean checked
) {
66 // Set parent and window
67 super(parent
, x
, y
, label
.length() + 4, 1);
70 this.checked
= checked
;
77 * Returns true if the mouse is currently on the checkbox.
79 * @param mouse mouse event
80 * @return true if the mouse is currently on the checkbox
82 private boolean mouseOnCheckbox(final TMouseEvent mouse
) {
83 if ((mouse
.getY() == 0)
84 && (mouse
.getX() >= 0)
85 && (mouse
.getX() <= 2)
93 * Draw a checkbox with label.
97 CellAttributes checkboxColor
;
99 if (getAbsoluteActive()) {
100 checkboxColor
= getTheme().getColor("tcheckbox.active");
102 checkboxColor
= getTheme().getColor("tcheckbox.inactive");
105 getScreen().putCharXY(0, 0, '[', checkboxColor
);
107 getScreen().putCharXY(1, 0, GraphicsChars
.CHECK
, checkboxColor
);
109 getScreen().putCharXY(1, 0, ' ', checkboxColor
);
111 getScreen().putCharXY(2, 0, ']', checkboxColor
);
112 getScreen().putStrXY(4, 0, label
, checkboxColor
);
116 * Handle mouse checkbox presses.
118 * @param mouse mouse button down event
121 public void onMouseDown(final TMouseEvent mouse
) {
122 if ((mouseOnCheckbox(mouse
)) && (mouse
.getMouse1())) {
131 * @param keypress keystroke event
134 public void onKeypress(final TKeypressEvent keypress
) {
135 if (keypress
.equals(kbSpace
)) {
140 // Pass to parent for the things we don't care about.
141 super.onKeypress(keypress
);