-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheckBoxJList.java
139 lines (116 loc) · 4.94 KB
/
CheckBoxJList.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.util.*;
public class CheckBoxJList extends JList
implements ListSelectionListener {
static Color listForeground, listBackground,
listSelectionForeground,
listSelectionBackground;
static {
UIDefaults uid = UIManager.getLookAndFeel().getDefaults();
listForeground = uid.getColor ("List.foreground");
listBackground = uid.getColor ("List.background");
listSelectionForeground = uid.getColor ("List.selectionForeground");
listSelectionBackground = uid.getColor ("List.selectionBackground");
}
HashSet selectionCache = new HashSet(); // hash table for storage
int toggleIndex = -1;
boolean toggleWasSelected;
public CheckBoxJList() {
super();
setCellRenderer (new CheckBoxListCellRenderer());
addListSelectionListener (this);
}
// ListSelectionListener implementation
public void valueChanged (ListSelectionEvent lse) {
System.out.println (lse);
if (! lse.getValueIsAdjusting()) {
removeListSelectionListener (this);
// remember everything selected as a result of this action
HashSet newSelections = new HashSet();
int size = getModel().getSize();
for (int i=0; i<size; i++) {
if (getSelectionModel().isSelectedIndex(i)) {
newSelections.add (new Integer(i));
}
}
// turn on everything that was previously selected
Iterator it = selectionCache.iterator();
while (it.hasNext()) {
int index = ((Integer) it.next()).intValue();
System.out.println ("adding " + index);
getSelectionModel().addSelectionInterval(index, index);
}
// add or remove the delta
it = newSelections.iterator();
while (it.hasNext()) {
Integer nextInt = (Integer) it.next();
int index = nextInt.intValue();
if (selectionCache.contains (nextInt))
getSelectionModel().removeSelectionInterval (index, index);
else
getSelectionModel().addSelectionInterval (index, index);
}
// save selections for next time
selectionCache.clear();
for (int i=0; i<size; i++) {
if (getSelectionModel().isSelectedIndex(i)) {
System.out.println ("caching " + i);
selectionCache.add (new Integer(i));
}
}
addListSelectionListener (this);
}
}
public static void main (String[] args) {
JList list = new CheckBoxJList ();
DefaultListModel defModel = new DefaultListModel(); //Creating List
list.setModel (defModel);
String[] listItems = {
"Chris", "Joshua", "Daniel", "Michael",
"Don", "Kimi", "Kelly", "Keagan"
}; // Dataset
Iterator it = Arrays.asList(listItems).iterator();
while (it.hasNext())
defModel.addElement (it.next()); // Adding elements from dataset
// show list
JScrollPane scroller =
new JScrollPane (list,
ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,
ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
JFrame frame = new JFrame ("Checkbox JList"); // Adding scroll bars
frame.getContentPane().add (scroller);
frame.pack(); // Auto-sizing according to components
frame.setVisible(true);
Main.main(args);
}
class CheckBoxListCellRenderer extends JComponent
implements ListCellRenderer {
DefaultListCellRenderer defaultComp;
JCheckBox checkbox;
public CheckBoxListCellRenderer() {
setLayout (new BorderLayout());
defaultComp = new DefaultListCellRenderer();
checkbox = new JCheckBox();
add (checkbox, BorderLayout.WEST);
add (defaultComp, BorderLayout.CENTER);
}
public Component getListCellRendererComponent(JList list,
Object value,
int index,
boolean isSelected,
boolean cellHasFocus){
defaultComp.getListCellRendererComponent (list, value, index,
isSelected, cellHasFocus);
checkbox.setSelected (isSelected);
Component[] comps = getComponents();
for (int i=0; i<comps.length; i++) {
comps[i].setForeground (listForeground);
comps[i].setBackground (listBackground);
}
return this;
}
}
}