-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathJList.java
2499 lines (2293 loc) · 76.3 KB
/
JList.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* JList.java --
Copyright (C) 2002, 2003, 2004, 2005, 2006, Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package javax.swing;
import gnu.java.lang.CPStringBuilder;
import java.awt.Color;
import java.awt.Component;
import java.awt.ComponentOrientation;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.event.FocusListener;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.util.Locale;
import java.util.Vector;
import javax.accessibility.Accessible;
import javax.accessibility.AccessibleComponent;
import javax.accessibility.AccessibleContext;
import javax.accessibility.AccessibleRole;
import javax.accessibility.AccessibleSelection;
import javax.accessibility.AccessibleState;
import javax.accessibility.AccessibleStateSet;
import javax.swing.event.ListDataEvent;
import javax.swing.event.ListDataListener;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import javax.swing.plaf.ListUI;
import javax.swing.text.Position;
/**
* <p>This class is a facade over three separate objects: {@link
* javax.swing.ListModel}, {@link javax.swing.ListSelectionModel} and
* {@link javax.swing.plaf.ListUI}. The facade represents a unified "list"
* concept, with independently replacable (possibly client-provided) models
* for its contents and its current selection. In addition, each element in
* the list is rendered via a strategy class {@link
* javax.swing.ListCellRenderer}.</p>
*
* <p>Lists have many properties, some of which are stored in this class
* while others are delegated to the list's model or selection. The
* following properties are available:</p>
*
* <table>
* <tr><th>Property </th><th>Stored in</th><th>Bound?</th></tr>
* <tr><td>accessibleContext </td><td>list </td><td>no </td></tr>
* <tr><td>anchorSelectionIndex </td><td>selection</td><td>no </td></tr>
* <tr><td>cellRenderer </td><td>list </td><td>yes </td></tr>
* <tr><td>dragEnabled </td><td>list </td><td>no </td></tr>
* <tr><td>firstVisibleIndex </td><td>list </td><td>no </td></tr>
* <tr><td>fixedCellHeight </td><td>list </td><td>yes </td></tr>
* <tr><td>fixedCellWidth </td><td>list </td><td>yes </td></tr>
* <tr><td>lastVisibleIndex </td><td>list </td><td>no </td></tr>
* <tr><td>layoutOrientation </td><td>list </td><td>yes </td></tr>
* <tr><td>leadSelectionIndex </td><td>selection</td><td>no </td></tr>
* <tr><td>maxSelectionIndex </td><td>selection</td><td>no </td></tr>
* <tr><td>minSelectionIndex </td><td>selection</td><td>no </td></tr>
* <tr><td>model </td><td>list </td><td>yes </td></tr>
* <tr><td>opaque </td><td>list </td><td>no </td></tr>
* <tr><td>preferredScrollableViewportSize</td><td>list </td><td>no </td></tr>
* <tr><td>prototypeCellValue </td><td>list </td><td>yes </td></tr>
* <tr><td>scrollableTracksViewportHeight </td><td>list </td><td>no </td></tr>
* <tr><td>scrollableTracksViewportWidth </td><td>list </td><td>no </td></tr>
* <tr><td>selectedIndex </td><td>selection</td><td>no </td></tr>
* <tr><td>selectedIndices </td><td>selection</td><td>no </td></tr>
* <tr><td>selectedValue </td><td>model </td><td>no </td></tr>
* <tr><td>selectedValues </td><td>model </td><td>no </td></tr>
* <tr><td>selectionBackground </td><td>list </td><td>yes </td></tr>
* <tr><td>selectionEmpty </td><td>selection</td><td>no </td></tr>
* <tr><td>selectionForeground </td><td>list </td><td>yes </td></tr>
* <tr><td>selectionMode </td><td>selection</td><td>no </td></tr>
* <tr><td>selectionModel </td><td>list </td><td>yes </td></tr>
* <tr><td>UI </td><td>list </td><td>yes </td></tr>
* <tr><td>UIClassID </td><td>list </td><td>no </td></tr>
* <tr><td>valueIsAdjusting </td><td>list </td><td>no </td></tr>
* <tr><td>visibleRowCount </td><td>list </td><td>no </td></tr>
* </table>
*
* @author Graydon Hoare (graydon@redhat.com)
*/
public class JList extends JComponent implements Accessible, Scrollable
{
/**
* Provides accessibility support for <code>JList</code>.
*/
protected class AccessibleJList extends AccessibleJComponent
implements AccessibleSelection, PropertyChangeListener,
ListSelectionListener, ListDataListener
{
/**
* Provides accessibility support for list elements in <code>JList</code>s.
*/
protected class AccessibleJListChild extends AccessibleContext
implements Accessible, AccessibleComponent
{
/**
* The parent list.
*/
JList parent;
/**
* The index in the list for that child.
*/
int listIndex;
/**
* The cursor for this list child.
*/
// TODO: Testcases show that this class somehow stores state about the
// cursor. I cannot make up though how that could affect
// the actual list.
Cursor cursor = Cursor.getDefaultCursor();
/**
* Creates a new instance of <code>AccessibleJListChild</code>.
*
* @param list the list of which this is an accessible child
* @param index the list index for this child
*/
public AccessibleJListChild(JList list, int index)
{
parent = list;
listIndex = index;
}
/**
* Returns the accessible context of this object. Returns
* <code>this</code> since <code>AccessibleJListChild</code>s are their
* own accessible contexts.
*
* @return the accessible context of this object, <code>this</code>
*/
public AccessibleContext getAccessibleContext()
{
return this;
}
/**
* Returns the background color for this list child. This returns the
* background of the <code>JList</code> itself since the background
* cannot be set on list children individually
*
* @return the background color for this list child
*/
public Color getBackground()
{
return parent.getBackground();
}
/**
* Calling this method has no effect, since the background color cannot be
* set on list children individually.
*
* @param color not used here.
*/
public void setBackground(Color color)
{
// Calling this method has no effect, since the background color cannot
// be set on list children individually.
}
/**
* Returns the foreground color for this list child. This returns the
* background of the <code>JList</code> itself since the foreground
* cannot be set on list children individually.
*
* @return the background color for this list child
*/
public Color getForeground()
{
return parent.getForeground();
}
/**
* Calling this method has no effect, since the foreground color cannot be
* set on list children individually.
*
* @param color not used here.
*/
public void setForeground(Color color)
{
// Calling this method has no effect, since the foreground color cannot
// be set on list children individually.
}
/**
* Returns the cursor for this list child.
*
* @return the cursor for this list child
*/
public Cursor getCursor()
{
// TODO: Testcases show that this method returns the cursor that has
// been set by setCursor. I cannot make up though how that could affect
// the actual list.
return cursor;
}
/**
* Sets the cursor for this list child.
*/
public void setCursor(Cursor cursor)
{
this.cursor = cursor;
// TODO: Testcases show that this method returns the cursor that has
// been set by setCursor. I cannot make up though how that could affect
// the actual list.
}
/**
* Returns the font of the <code>JList</code> since it is not possible to
* set fonts for list children individually.
*
* @return the font of the <code>JList</code>
*/
public Font getFont()
{
return parent.getFont();
}
/**
* Does nothing since it is not possible to set the font on list children
* individually.
*
* @param font not used here
*/
public void setFont(Font font)
{
// Does nothing since it is not possible to set the font on list
// children individually.
}
/**
* Returns the font metrics for the specified font. This method forwards
* to the parent <code>JList</code>.
*
* @param font the font for which the font metrics is queried
*
* @return the font metrics for the specified font
*/
public FontMetrics getFontMetrics(Font font)
{
return parent.getFontMetrics(font);
}
/**
* Returns <code>true</code> if the parent <code>JList</code> is enabled,
* <code>false</code> otherwise. The list children cannot have an enabled
* flag set individually.
*
* @return <code>true</code> if the parent <code>JList</code> is enabled,
* <code>false</code> otherwise
*/
public boolean isEnabled()
{
return parent.isEnabled();
}
/**
* Does nothing since the enabled flag cannot be set for list children
* individually.
*
* @param b not used here
*/
public void setEnabled(boolean b)
{
// Does nothing since the enabled flag cannot be set for list children
// individually.
}
/**
* Returns <code>true</code> if this list child is visible,
* <code>false</code> otherwise. The value of this property depends
* on {@link JList#getFirstVisibleIndex()} and
* {@link JList#getLastVisibleIndex()}.
*
* @return <code>true</code> if this list child is visible,
* <code>false</code> otherwise
*/
public boolean isVisible()
{
return listIndex >= parent.getFirstVisibleIndex()
&& listIndex <= parent.getLastVisibleIndex();
}
/**
* The value of the visible property cannot be modified, so this method
* does nothing.
*
* @param b not used here
*/
public void setVisible(boolean b)
{
// The value of the visible property cannot be modified, so this method
// does nothing.
}
/**
* Returns <code>true</code> if this list child is currently showing on
* screen and <code>false</code> otherwise. The list child is showing if
* it is visible and if it's parent JList is currently showing.
*
* @return <code>true</code> if this list child is currently showing on
* screen and <code>false</code> otherwise
*/
public boolean isShowing()
{
return isVisible() && parent.isShowing();
}
/**
* Returns <code>true</code> if this list child covers the screen location
* <code>point</code> (relative to the <code>JList</code> coordinate
* system, <code>false</code> otherwise.
*
* @return <code>true</code> if this list child covers the screen location
* <code>point</code> , <code>false</code> otherwise
*/
public boolean contains(Point point)
{
return getBounds().contains(point);
}
/**
* Returns the absolute screen location of this list child.
*
* @return the absolute screen location of this list child
*/
public Point getLocationOnScreen()
{
Point loc = getLocation();
SwingUtilities.convertPointToScreen(loc, parent);
return loc;
}
/**
* Returns the screen location of this list child relative to it's parent.
*
* @return the location of this list child relative to it's parent
*
* @see JList#indexToLocation(int)
*/
public Point getLocation()
{
return parent.indexToLocation(listIndex);
}
/**
* Does nothing since the screen location cannot be set on list children
* explictitly.
*
* @param point not used here
*/
public void setLocation(Point point)
{
// Does nothing since the screen location cannot be set on list children
// explictitly.
}
/**
* Returns the bounds of this list child.
*
* @return the bounds of this list child
*
* @see JList#getCellBounds(int, int)
*/
public Rectangle getBounds()
{
return parent.getCellBounds(listIndex, listIndex);
}
/**
* Does nothing since the bounds cannot be set on list children
* individually.
*
* @param rectangle not used here
*/
public void setBounds(Rectangle rectangle)
{
// Does nothing since the bounds cannot be set on list children
// individually.
}
/**
* Returns the size of this list child.
*
* @return the size of this list child
*/
public Dimension getSize()
{
Rectangle b = getBounds();
return b.getSize();
}
/**
* Does nothing since the size cannot be set on list children
* individually.
*
* @param dimension not used here
*/
public void setSize(Dimension dimension)
{
// Does nothing since the size cannot be set on list children
// individually.
}
/**
* Returns <code>null</code> because list children do not have children
* themselves
*
* @return <code>null</code>
*/
public Accessible getAccessibleAt(Point point)
{
return null;
}
/**
* Returns <code>true</code> since list children are focus traversable.
*
* @return true
*/
public boolean isFocusTraversable()
{
// TODO: Is this 100% ok?
return true;
}
/**
* Requests focus on the parent list. List children cannot request focus
* individually.
*/
public void requestFocus()
{
// TODO: Is this 100% ok?
parent.requestFocus();
}
/**
* Adds a focus listener to the parent list. List children do not have
* their own focus management.
*
* @param listener the focus listener to add
*/
public void addFocusListener(FocusListener listener)
{
// TODO: Is this 100% ok?
parent.addFocusListener(listener);
}
/**
* Removes a focus listener from the parent list. List children do not
* have their own focus management.
*
* @param listener the focus listener to remove
*/
public void removeFocusListener(FocusListener listener)
{
// TODO: Is this 100%
parent.removeFocusListener(listener);
}
/**
* Returns the accessible role of this list item, which is
* {@link AccessibleRole#LABEL}.
*
* @return {@link AccessibleRole#LABEL}
*/
public AccessibleRole getAccessibleRole()
{
return AccessibleRole.LABEL;
}
/**
* Returns the accessible state set of this list item.
*
* @return the accessible state set of this list item
*/
public AccessibleStateSet getAccessibleStateSet()
{
AccessibleStateSet states = new AccessibleStateSet();
if (isVisible())
states.add(AccessibleState.VISIBLE);
if (isShowing())
states.add(AccessibleState.SHOWING);
if (isFocusTraversable())
states.add(AccessibleState.FOCUSABLE);
// TODO: How should the active state be handled? The API docs
// suggest that this state is set on the activated list child,
// that is the one that is drawn with a box. However, I don't know how
// to implement this.
// TODO: We set the selectable state here because list children are
// selectable. Is there a way to disable single children?
if (parent.isEnabled())
states.add(AccessibleState.SELECTABLE);
if (parent.isSelectedIndex(listIndex))
states.add(AccessibleState.SELECTED);
// TODO: Handle more states here?
return states;
}
/**
* Returns the index of this list child within it's parent list.
*
* @return the index of this list child within it's parent list
*/
public int getAccessibleIndexInParent()
{
return listIndex;
}
/**
* Returns <code>0</code> since list children don't have children
* themselves.
*
* @return <code>0</code>
*/
public int getAccessibleChildrenCount()
{
return 0;
}
/**
* Returns <code>null</code> since list children don't have children
* themselves.
*
* @return <code>null</code>
*/
public Accessible getAccessibleChild(int i)
{
return null;
}
/**
* Returns the locale of this component. This call is forwarded to the
* parent list since list children don't have a separate locale setting.
*
* @return the locale of this component
*/
public Locale getLocale()
{
return parent.getLocale();
}
/**
* This method does
* nothing, list children are transient accessible objects which means
* that they don't fire property change events.
*
* @param l not used here
*/
public void addPropertyChangeListener(PropertyChangeListener l)
{
// Do nothing here.
}
/**
* This method does
* nothing, list children are transient accessible objects which means
* that they don't fire property change events.
*
* @param l not used here
*/
public void removePropertyChangeListener(PropertyChangeListener l)
{
// Do nothing here.
}
// TODO: Implement the remaining methods of this class.
}
/**
* Create a new AccessibleJList.
*/
public AccessibleJList()
{
// Nothing to do here.
}
/**
* Returns the number of selected accessible children.
*
* @return the number of selected accessible children
*/
public int getAccessibleSelectionCount()
{
return getSelectedIndices().length;
}
/**
* Returns the n-th selected accessible child.
*
* @param n the index of the selected child to return
*
* @return the n-th selected accessible child
*/
public Accessible getAccessibleSelection(int n)
{
return new AccessibleJListChild(JList.this, getSelectedIndices()[n]);
}
/**
* Returns <code>true</code> if the n-th child is selected,
* <code>false</code> otherwise.
*
* @param n the index of the child of which the selected state is queried
*
* @return <code>true</code> if the n-th child is selected,
* <code>false</code> otherwise
*/
public boolean isAccessibleChildSelected(int n)
{
return isSelectedIndex(n);
}
/**
* Adds the accessible item with the specified index to the selected items.
* If multiple selections are supported, the item is added to the selection,
* otherwise the item replaces the current selection.
*
* @param i the index of the item to add to the selection
*/
public void addAccessibleSelection(int i)
{
addSelectionInterval(i, i);
}
/**
* Removes the accessible item with the specified index to the selection.
*
* @param i the index of the item to be removed from the selection
*/
public void removeAccessibleSelection(int i)
{
removeSelectionInterval(i, i);
}
/**
* Remove all selection items from the selection.
*/
public void clearAccessibleSelection()
{
clearSelection();
}
/**
* Selects all items if multiple selections are supported.
* Otherwise do nothing.
*/
public void selectAllAccessibleSelection()
{
addSelectionInterval(0, getModel().getSize());
}
/**
* Receices notification when the list selection is changed. This method
* fires two property change events, the first with
* {@link AccessibleContext#ACCESSIBLE_VISIBLE_DATA_PROPERTY} and the second
* with {@link AccessibleContext#ACCESSIBLE_SELECTION_PROPERTY}.
*
* @param event the list selection event
*/
public void valueChanged(ListSelectionEvent event)
{
firePropertyChange(ACCESSIBLE_VISIBLE_DATA_PROPERTY, Boolean.FALSE,
Boolean.TRUE);
firePropertyChange(ACCESSIBLE_SELECTION_PROPERTY, Boolean.FALSE,
Boolean.TRUE);
}
/**
* Receives notification when items have changed in the
* <code>JList</code>. This method fires a property change event with
* {@link AccessibleContext#ACCESSIBLE_VISIBLE_DATA_PROPERTY}.
*
* @param event the list data event
*/
public void contentsChanged(ListDataEvent event)
{
firePropertyChange(ACCESSIBLE_VISIBLE_DATA_PROPERTY, Boolean.FALSE,
Boolean.TRUE);
}
/**
* Receives notification when items are inserted into the
* <code>JList</code>. This method fires a property change event with
* {@link AccessibleContext#ACCESSIBLE_VISIBLE_DATA_PROPERTY}.
*
* @param event the list data event
*/
public void intervalAdded(ListDataEvent event)
{
firePropertyChange(ACCESSIBLE_VISIBLE_DATA_PROPERTY, Boolean.FALSE,
Boolean.TRUE);
}
/**
* Receives notification when items are removed from the
* <code>JList</code>. This method fires a property change event with
* {@link AccessibleContext#ACCESSIBLE_VISIBLE_DATA_PROPERTY}.
*
* @param event the list data event
*/
public void intervalRemoved(ListDataEvent event)
{
firePropertyChange(ACCESSIBLE_VISIBLE_DATA_PROPERTY, Boolean.FALSE,
Boolean.TRUE);
}
/**
* Receives notification about changes of the <code>JList</code>'s
* properties. This is used to re-register this object as listener to
* the data model and selection model when the data model or selection model
* changes.
*
* @param e the property change event
*/
public void propertyChange(PropertyChangeEvent e)
{
String propertyName = e.getPropertyName();
if (propertyName.equals("model"))
{
ListModel oldModel = (ListModel) e.getOldValue();
oldModel.removeListDataListener(this);
ListModel newModel = (ListModel) e.getNewValue();
newModel.addListDataListener(this);
}
else if (propertyName.equals("selectionModel"))
{
ListSelectionModel oldModel = (ListSelectionModel) e.getOldValue();
oldModel.removeListSelectionListener(this);
ListSelectionModel newModel = (ListSelectionModel) e.getNewValue();
oldModel.addListSelectionListener(this);
}
}
/**
* Return the state set of the <code>JList</code>.
*
* @return the state set of the <code>JList</code>
*/
public AccessibleStateSet getAccessibleStateSet()
{
// TODO: Figure out if there is possibly more state that must be
// handled here.
AccessibleStateSet s = super.getAccessibleStateSet();
if (getSelectionMode() != ListSelectionModel.SINGLE_SELECTION)
s.add(AccessibleState.MULTISELECTABLE);
return s;
}
/**
* Returns the accessible role for <code>JList</code>,
* {@link AccessibleRole#LIST}.
*
* @return the accessible role for <code>JList</code>
*/
public AccessibleRole getAccessibleRole()
{
return AccessibleRole.LIST;
}
/**
* Returns the accessible child at the visual location <code>p</code>
* (relative to the upper left corner of the <code>JList</code>). If there
* is no child at that location, this returns <code>null</code>.
*
* @param p the screen location for which to return the accessible child
*
* @return the accessible child at the specified location, or
* <code>null</code> if there is no child at that location
*/
public Accessible getAccessibleAt(Point p)
{
int childIndex = locationToIndex(p);
return getAccessibleChild(childIndex);
}
/**
* Returns the number of accessible children in the <code>JList</code>.
*
* @return the number of accessible children in the <code>JList</code>
*/
public int getAccessibleChildrenCount()
{
return getModel().getSize();
}
/**
* Returns the n-th accessible child of this <code>JList</code>. This will
* be an instance of {@link AccessibleJListChild}. If there is no child
* at that index, <code>null</code> is returned.
*
* @param n the index of the child to return
*
* @return the n-th accessible child of this <code>JList</code>
*/
public Accessible getAccessibleChild(int n)
{
if (getModel().getSize() <= n)
return null;
return new AccessibleJListChild(JList.this, n);
}
}
private static final long serialVersionUID = 4406629526391098046L;
/**
* Constant value used in "layoutOrientation" property. This value means
* that cells are laid out in a single vertical column. This is the default.
*/
public static final int VERTICAL = 0;
/**
* Constant value used in "layoutOrientation" property. This value means
* that cells are laid out in multiple columns "newspaper style", filling
* vertically first, then horizontally.
*/
public static final int VERTICAL_WRAP = 1;
/**
* Constant value used in "layoutOrientation" property. This value means
* that cells are laid out in multiple columns "newspaper style",
* filling horizontally first, then vertically.
*/
public static final int HORIZONTAL_WRAP = 2;
/**
* This property indicates whether "drag and drop" functions are enabled
* on the list.
*/
boolean dragEnabled;
/** This property provides a strategy for rendering cells in the list. */
ListCellRenderer cellRenderer;
/**
* This property indicates an fixed width to assign to all cells in the
* list. If its value is <code>-1</code>, no width has been
* assigned. This value can be set explicitly, or implicitly by setting
* the {@link #prototypeCellValue} property.
*/
int fixedCellWidth;
/**
* This property indicates an fixed height to assign to all cells in the
* list. If its value is <code>-1</code>, no height has been
* assigned. This value can be set explicitly, or implicitly by setting
* the {@link #prototypeCellValue} property.
*/
int fixedCellHeight;
/**
* This property holds the current layout orientation of the list, which
* is one of the integer constants {@link #VERTICAL}, {@link
* #VERTICAL_WRAP}, or {@link #HORIZONTAL_WRAP}.
*/
int layoutOrientation;
/** This property holds the data elements displayed by the list. */
ListModel model;
/**
* <p>This property holds a reference to a "prototype" data value --
* typically a String -- which is used to calculate the {@link
* #fixedCellWidth} and {@link #fixedCellHeight} properties, using the
* {@link #cellRenderer} property to acquire a component to render the
* prototype.</p>
*
* <p>It is important that you <em>not</em> set this value to a
* component. It has to be a <em>data value</em> such as the objects you
* would find in the list's model. Setting it to a component will have
* undefined (and undesirable) affects. </p>
*/
Object prototypeCellValue;
/**
* This property specifies a foreground color for the selected cells in
* the list. When {@link ListCellRenderer#getListCellRendererComponent}
* is called with a selected cell object, the component returned will
* have its "foreground" set to this color.
*/
Color selectionBackground;
/**
* This property specifies a background color for the selected cells in
* the list. When {@link ListCellRenderer#getListCellRendererComponent}
* is called with a selected cell object, the component returned will
* have its "background" property set to this color.
*/
Color selectionForeground;
/**
* This property holds a description of which data elements in the {@link
* #model} property should be considered "selected", when displaying and
* interacting with the list.
*/
ListSelectionModel selectionModel;
/**
* This property indicates a <em>preference</em> for the number of rows
* displayed in the list, and will scale the
* {@link #getPreferredScrollableViewportSize} property accordingly. The actual
* number of displayed rows, when the list is placed in a real {@link
* JViewport} or other component, may be greater or less than this number.
*/
int visibleRowCount;
/**
* Fire a {@link ListSelectionEvent} to all the registered
* ListSelectionListeners.
*
* @param firstIndex the lowest index covering the selection change.
* @param lastIndex the highest index covering the selection change.
* @param isAdjusting a flag indicating if this event is one in a series
* of events updating the selection.
*/
protected void fireSelectionValueChanged(int firstIndex, int lastIndex,
boolean isAdjusting)
{
ListSelectionEvent evt = new ListSelectionEvent(this, firstIndex,
lastIndex, isAdjusting);
ListSelectionListener listeners[] = getListSelectionListeners();
for (int i = 0; i < listeners.length; ++i)
{
listeners[i].valueChanged(evt);
}
}
/**
* This private listener propagates {@link ListSelectionEvent} events
* from the list's "selectionModel" property to the list's {@link
* ListSelectionListener} listeners. It also listens to {@link
* ListDataEvent} events from the list's {@link #model} property. If this
* class receives either type of event, it triggers repainting of the
* list.
*/
private class ListListener
implements ListSelectionListener, ListDataListener
{
// ListDataListener events
public void contentsChanged(ListDataEvent event)
{
JList.this.revalidate();
JList.this.repaint();
}
public void intervalAdded(ListDataEvent event)
{
JList.this.revalidate();
JList.this.repaint();
}