/* * This file is part of lanterna (http://code.google.com/p/lanterna/). * * lanterna is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Copyright (C) 2010-2015 Martin */ package com.googlecode.lanterna.gui2; import com.googlecode.lanterna.TerminalSize; import com.googlecode.lanterna.input.KeyStroke; import com.googlecode.lanterna.input.KeyType; import java.util.ArrayList; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; /** * This is a list box implementation where each item has its own checked state that can be toggled on and off * @author Martin */ public class CheckBoxList extends AbstractListBox> { /** * Listener interface that can be attached to the {@code CheckBoxList} in order to be notified on user actions */ public interface Listener { /** * Called by the {@code CheckBoxList} when the user changes the toggle state of one item * @param itemIndex Index of the item that was toggled * @param checked If the state of the item is now checked, this will be {@code true}, otherwise {@code false} */ void onStatusChanged(int itemIndex, boolean checked); } private final List listeners; private final List itemStatus; /** * Creates a new {@code CheckBoxList} that is initially empty and has no hardcoded preferred size, so it will * attempt to be as big as necessary to draw all items. */ public CheckBoxList() { this(null); } /** * Creates a new {@code CheckBoxList} that is initially empty and has a pre-defined size that it will request. If * there are more items that can fit in this size, the list box will use scrollbars. * @param preferredSize Size the list box should request, no matter how many items it contains */ public CheckBoxList(TerminalSize preferredSize) { super(preferredSize); this.listeners = new CopyOnWriteArrayList(); this.itemStatus = new ArrayList(); } @Override protected ListItemRenderer> createDefaultListItemRenderer() { return new CheckBoxListItemRenderer(); } @Override public synchronized CheckBoxList clearItems() { itemStatus.clear(); return super.clearItems(); } @Override public CheckBoxList addItem(V object) { return addItem(object, false); } /** * Adds an item to the checkbox list with an explicit checked status * @param object Object to add to the list * @param checkedState If true, the new item will be initially checked * @return Itself */ public synchronized CheckBoxList addItem(V object, boolean checkedState) { itemStatus.add(checkedState); return super.addItem(object); } /** * Checks if a particular item is part of the check box list and returns a boolean value depending on the toggle * state of the item. * @param object Object to check the status of * @return If the item wasn't found in the list box, {@code null} is returned, otherwise {@code true} or * {@code false} depending on checked state of the item */ public synchronized Boolean isChecked(V object) { if(indexOf(object) == -1) return null; return itemStatus.get(indexOf(object)); } /** * Checks if a particular item is part of the check box list and returns a boolean value depending on the toggle * state of the item. * @param index Index of the item to check the status of * @return If the index was not valid in the list box, {@code null} is returned, otherwise {@code true} or * {@code false} depending on checked state of the item at that index */ public synchronized Boolean isChecked(int index) { if(index < 0 || index >= itemStatus.size()) return null; return itemStatus.get(index); } /** * Programmatically sets the checked state of an item in the list box * @param object Object to set the checked state of * @param checked If {@code true}, then the item is set to checked, otherwise not * @return Itself */ public synchronized CheckBoxList setChecked(V object, boolean checked) { int index = indexOf(object); if(index != -1) { setChecked(index, checked); } return self(); } private void setChecked(final int index, final boolean checked) { itemStatus.set(index, checked); runOnGUIThreadIfExistsOtherwiseRunDirect(new Runnable() { @Override public void run() { for(Listener listener: listeners) { listener.onStatusChanged(index, checked); } } }); } /** * Returns all the items in the list box that have checked state, as a list * @return List of all items in the list box that has checked state on */ public synchronized List getCheckedItems() { List result = new ArrayList(); for(int i = 0; i < itemStatus.size(); i++) { if(itemStatus.get(i)) { result.add(getItemAt(i)); } } return result; } /** * Adds a new listener to the {@code CheckBoxList} that will be called on certain user actions * @param listener Listener to attach to this {@code CheckBoxList} * @return Itself */ public synchronized CheckBoxList addListener(Listener listener) { if(listener != null && !listeners.contains(listener)) { listeners.add(listener); } return this; } /** * Removes a listener from this {@code CheckBoxList} so that if it had been added earlier, it will no longer be * called on user actions * @param listener Listener to remove from this {@code CheckBoxList} * @return Itself */ public CheckBoxList removeListener(Listener listener) { listeners.remove(listener); return this; } @Override public synchronized Result handleKeyStroke(KeyStroke keyStroke) { if(keyStroke.getKeyType() == KeyType.Enter || (keyStroke.getKeyType() == KeyType.Character && keyStroke.getCharacter() == ' ')) { if(itemStatus.get(getSelectedIndex())) setChecked(getSelectedIndex(), Boolean.FALSE); else setChecked(getSelectedIndex(), Boolean.TRUE); return Result.HANDLED; } return super.handleKeyStroke(keyStroke); } /** * Default renderer for this component which is used unless overridden. The checked state is drawn on the left side * of the item label using a "[ ]" block filled with an X if the item has checked state on * @param */ public static class CheckBoxListItemRenderer extends ListItemRenderer> { @Override public int getHotSpotPositionOnLine(int selectedIndex) { return 1; } @Override public String getLabel(CheckBoxList listBox, int index, V item) { String check = " "; List itemStatus = listBox.itemStatus; if(itemStatus.get(index)) check = "x"; String text = item.toString(); return "[" + check + "] " + text; } } }