forked from processing/processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListPanel.java
More file actions
762 lines (649 loc) · 24.8 KB
/
ListPanel.java
File metadata and controls
762 lines (649 loc) · 24.8 KB
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
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
Part of the Processing project - http://processing.org
Copyright (c) 2013-15 The Processing Foundation
Copyright (c) 2011-12 Ben Fry and Casey Reas
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation.
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 General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package processing.app.contrib;
import java.awt.*;
import java.util.List;
import java.util.*;
import java.util.Map.Entry;
import javax.swing.*;
import javax.swing.RowSorter.SortKey;
import javax.swing.border.Border;
import javax.swing.event.*;
import javax.swing.table.*;
import processing.app.Base;
import processing.app.Platform;
import processing.app.ui.Toolkit;
// The "Scrollable" implementation and its methods here take care of preventing
// the scrolling area from running exceptionally slowly. Not sure why they're
// necessary in the first place, however; seems like odd behavior.
// It also allows the description text in the panels to wrap properly.
public class ListPanel extends JPanel
implements Scrollable, ContributionListing.ChangeListener {
ContributionTab contributionTab;
TreeMap<Contribution, DetailPanel> panelByContribution = new TreeMap<>(ContributionListing.COMPARATOR);
private DetailPanel selectedPanel;
protected ContributionRowFilter filter;
protected JTable table;
protected TableRowSorter<ContributionTableModel> sorter;
ContributionTableModel model;
JScrollPane scrollPane;
static Icon upToDateIcon;
static Icon updateAvailableIcon;
static Icon incompatibleIcon;
static Icon foundationIcon;
static Icon downloadingIcon;
// Should this be in theme.txt? Of course! Is it? No.
static final Color HEADER_BGCOLOR = new Color(0xffEBEBEB);
static final Color SECTION_COLOR = new Color(0xFFf8f8f8);
static final Color SELECTION_COLOR = new Color(0xffe0fffd);
static final SectionHeaderContribution[] sections = {
new SectionHeaderContribution(ContributionType.LIBRARY),
new SectionHeaderContribution(ContributionType.MODE),
new SectionHeaderContribution(ContributionType.TOOL),
new SectionHeaderContribution(ContributionType.EXAMPLES)
};
public ListPanel() {
if (upToDateIcon == null) {
upToDateIcon = Toolkit.getLibIconX("manager/up-to-date");
updateAvailableIcon = Toolkit.getLibIconX("manager/update-available");
incompatibleIcon = Toolkit.getLibIconX("manager/incompatible");
foundationIcon = Toolkit.getLibIconX("icons/foundation", 16);
downloadingIcon = Toolkit.getLibIconX("manager/downloading");
}
}
public ListPanel(final ContributionTab contributionTab,
final Contribution.Filter filter,
final boolean enableSections,
final ContributionColumn... columns) {
this();
this.contributionTab = contributionTab;
this.filter = new ContributionRowFilter(filter);
setLayout(new GridBagLayout());
setOpaque(true);
setBackground(Color.WHITE);
model = new ContributionTableModel(columns);
model.enableSections(enableSections);
table = new JTable(model) {
@Override
public Component prepareRenderer(TableCellRenderer renderer, int row, int column) {
Component c = super.prepareRenderer(renderer, row, column);
Object rowValue = getValueAt(row, column);
if (rowValue instanceof SectionHeaderContribution) {
c.setBackground(SECTION_COLOR);
} else if (isRowSelected(row)) {
c.setBackground(SELECTION_COLOR);
} else {
c.setBackground(Color.white);
}
return c;
}
@Override
public void changeSelection(int rowIndex, int columnIndex, boolean toggle, boolean extend) {
if (!(getValueAt(rowIndex, columnIndex) instanceof SectionHeaderContribution)) {
super.changeSelection(rowIndex, columnIndex, toggle, extend);
}
}
};
// There is a space before Status
scrollPane = new JScrollPane(table);
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
scrollPane.setBorder(BorderFactory.createEmptyBorder());
table.setFillsViewportHeight(true);
table.setDefaultRenderer(Contribution.class, new ContribStatusRenderer());
table.setFont(ManagerFrame.NORMAL_PLAIN);
table.setRowHeight(Toolkit.zoom(28));
table.setRowMargin(Toolkit.zoom(6));
table.getColumnModel().setColumnMargin(0);
table.getColumnModel().getColumn(0).setMaxWidth(ManagerFrame.STATUS_WIDTH);
table.getColumnModel().getColumn(2).setMinWidth(ManagerFrame.AUTHOR_WIDTH);
table.getColumnModel().getColumn(2).setMaxWidth(ManagerFrame.AUTHOR_WIDTH);
table.setShowGrid(false);
table.setColumnSelectionAllowed(false);
table.setCellSelectionEnabled(false);
table.setAutoCreateColumnsFromModel(true);
table.setAutoCreateRowSorter(false);
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
table.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
public void valueChanged(ListSelectionEvent event) {
//TODO this executes 2 times when clicked and 1 time when traversed using arrow keys
//Ideally this should always be true but while clearing the table something fishy is going on
if (table.getSelectedRow() != -1) {
setSelectedPanel(panelByContribution.get(table.getValueAt(table
.getSelectedRow(), 0)));
// Preventing the focus to move out of filterField after typing every character
if (!contributionTab.filterHasFocus()) {
table.requestFocusInWindow();
}
}
}
});
sorter = new TableRowSorter<>(model);
table.setRowSorter(sorter);
sorter.setRowFilter(this.filter);
for (int i=0; i < model.getColumnCount(); i++) {
if (model.columns[i] == ContributionColumn.NAME) {
sorter.setSortKeys(Collections.singletonList(new SortKey(i, SortOrder.ASCENDING)));
}
sorter.setComparator(i, model.columns[i].getComparator());
}
table.getTableHeader().setDefaultRenderer(new ContribHeaderRenderer());
GroupLayout layout = new GroupLayout(this);
layout.setHorizontalGroup(layout.createParallelGroup().addComponent(scrollPane));
layout.setVerticalGroup(layout.createSequentialGroup().addComponent(scrollPane));
this.setLayout(layout);
table.setVisible(true);
}
private static int getContributionStatusRank(Contribution c) {
int pos = 4;
if (c.isInstalled()) {
pos = 1;
if (ContributionListing.getInstance().hasUpdates(c)) {
pos = 2;
}
if (!c.isCompatible(Base.getRevision())) {
pos = 3;
}
}
return pos;
}
class ContribHeaderRenderer extends DefaultTableCellRenderer {
public ContribHeaderRenderer() {
setHorizontalTextPosition(LEFT);
setOpaque(true);
}
/**
* Returns the default table header cell renderer.
* <P>
* If the column is sorted, the appropriate icon is retrieved from the
* current Look and Feel, and a border appropriate to a table header cell
* is applied.
* <P>
* Subclasses may override this method to provide custom content or
* formatting.
*
* @param table the <code>JTable</code>.
* @param value the value to assign to the header cell
* @param isSelected This parameter is ignored.
* @param hasFocus This parameter is ignored.
* @param row This parameter is ignored.
* @param column the column of the header cell to render
* @return the default table header cell renderer
*/
@Override
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value,
isSelected, hasFocus, row, column);
JTableHeader tableHeader = table.getTableHeader();
if (tableHeader != null) {
setForeground(tableHeader.getForeground());
}
setFont(ManagerFrame.SMALL_PLAIN);
setIcon(getSortIcon(table, column));
setBackground(HEADER_BGCOLOR);
// if (column % 2 == 0) {
// setBackground(new Color(0xdfdfdf));
// } else {
// setBackground(new Color(0xebebeb));
// }
setBorder(null);
return this;
}
/**
* Overloaded to return an icon suitable to the primary sorted column, or null if
* the column is not the primary sort key.
*
* @param table the <code>JTable</code>.
* @param column the column index.
* @return the sort icon, or null if the column is unsorted.
*/
protected Icon getSortIcon(JTable table, int column) {
SortKey sortKey = getSortKey(table, column);
if (sortKey != null && table.convertColumnIndexToView(sortKey.getColumn()) == column) {
switch (sortKey.getSortOrder()) {
case ASCENDING:
return UIManager.getIcon("Table.ascendingSortIcon");
case DESCENDING:
return UIManager.getIcon("Table.descendingSortIcon");
}
}
return null;
}
/**
* Returns the current sort key, or null if the column is unsorted.
*
* @param table the table
* @param column the column index
* @return the SortKey, or null if the column is unsorted
*/
protected SortKey getSortKey(JTable table, int column) {
return Optional.ofNullable(table.getRowSorter())
.map(RowSorter::getSortKeys)
.map(columns -> columns.isEmpty() ? null : columns.get(0))
.orElse(null);
}
}
private class ContribStatusRenderer extends DefaultTableCellRenderer {
@Override
public void setVerticalAlignment(int alignment) {
super.setVerticalAlignment(SwingConstants.CENTER);
}
@Override
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected,
boolean hasFocus, int row,
int column) {
Contribution contribution = (Contribution) value;
JLabel label = new JLabel();
ContributionColumn col = model.columns[column];
if (value == null) {
// Working on https://github.com/processing/processing/issues/3667
//System.err.println("null value seen in getTableCellRendererComponent()");
// TODO this is now working, but the underlying issue is not fixed
return label;
}
label.setOpaque(true);
if (value instanceof SectionHeaderContribution && col != ContributionColumn.NAME) {
return label;
}
switch (col) {
case STATUS:
case STATUS_NO_HEADER:
configureStatusColumnLabel(label, contribution);
break;
case NAME:
configureNameColumnLabel(table, label, contribution);
break;
case AUTHOR:
configureAuthorsColumnLabel(label, contribution);
break;
case INSTALLED_VERSION:
label.setText(contribution.getBenignVersion());
break;
case AVAILABLE_VERSION:
label.setText(ContributionListing.getInstance().getLatestPrettyVersion(contribution));
break;
}
if(!contribution.isCompatible(Base.getRevision())){
label.setForeground(Color.LIGHT_GRAY);
}
return label;
}
private void configureStatusColumnLabel(JLabel label, Contribution contribution) {
Icon icon = null;
label.setFont(ManagerFrame.NORMAL_PLAIN);
if ((panelByContribution.get(contribution)).updateInProgress ||
(panelByContribution.get(contribution)).installInProgress) {
// Display "Loading icon" if download/install in progress
icon = downloadingIcon;
} else if (contribution.isInstalled()) {
if (!contribution.isCompatible(Base.getRevision())) {
icon = incompatibleIcon;
} else if (ContributionListing.getInstance().hasUpdates(contribution)) {
icon = updateAvailableIcon;
} else if (panelByContribution.get(contribution).installInProgress
|| panelByContribution.get(contribution).updateInProgress) {
icon = downloadingIcon;
} else {
icon = upToDateIcon;
}
}
label.setIcon(icon);
label.setHorizontalAlignment(SwingConstants.CENTER);
}
private void configureNameColumnLabel(JTable table, JLabel label, Contribution contribution) {
// Generating ellipses based on fontMetrics
final Font boldFont = ManagerFrame.NORMAL_BOLD;
FontMetrics fontMetrics = table.getFontMetrics(boldFont); //table.getFont());
int colSize = table.getColumnModel().getColumn(1).getWidth();
int currentWidth = fontMetrics.stringWidth(contribution.getName() + " | ...");
String sentence = contribution.getSentence();
StringBuilder text = new StringBuilder("<html><body><font face=\"")
.append(boldFont.getName())
.append("\">")
.append(contribution.getName());
if (sentence == null) {
text.append("</font>");
} else {
int i = 0;
for (i = 0; i < sentence.length(); i++) {
currentWidth += fontMetrics.charWidth(sentence.charAt(i));
if (currentWidth >= colSize) {
break;
}
}
text.append(" | </font>").append(sentence, 0, i);
// Adding ellipses only if text doesn't fits into the column
if(i != sentence.length()) {
text.append("...");
}
}
text.append("</body></html>");
label.setText(text.toString());
label.setFont(ManagerFrame.NORMAL_PLAIN);
}
private void configureAuthorsColumnLabel(JLabel label, Contribution contribution) {
if (contribution.isSpecial()) {
label.setIcon(foundationIcon);
}
String authorList = contribution.getAuthorList();
String name = getAuthorNameWithoutMarkup(authorList);
label.setText(name);
label.setHorizontalAlignment(SwingConstants.LEFT);
label.setForeground(Color.BLACK);
label.setFont(ManagerFrame.NORMAL_BOLD);
}
}
protected enum ContributionColumn {
STATUS(" Status"),
NAME("Name"),
AUTHOR("Author"),
INSTALLED_VERSION("Installed"),
AVAILABLE_VERSION("Available"),
STATUS_NO_HEADER("");
final String name;
ContributionColumn(String name) {
this.name = name;
}
Comparator<Contribution> getComparator() {
Comparator<Contribution> comparator = Comparator.comparing(Contribution::getType)
.thenComparingInt(contribution -> contribution instanceof SectionHeaderContribution ? 0 : 1);
switch (this) {
case STATUS:
case STATUS_NO_HEADER:
return comparator.thenComparingInt(ListPanel::getContributionStatusRank);
case AUTHOR:
return comparator.thenComparing(contribution -> getAuthorNameWithoutMarkup(contribution.getAuthorList()));
case NAME:
default:
return comparator.thenComparing(Contribution::getName, String.CASE_INSENSITIVE_ORDER);
}
}
}
protected class ContributionTableModel extends AbstractTableModel {
ContributionColumn[] columns = { ContributionColumn.STATUS, ContributionColumn.NAME, ContributionColumn.AUTHOR };
boolean sectionsEnabled;
ContributionTableModel(ContributionColumn... columns) {
if (columns.length > 0) {
this.columns = columns;
}
}
@Override
public int getRowCount() {
return ContributionListing.getInstance().allContributions.size() + (sectionsEnabled ? 4 : 0);
}
@Override
public int getColumnCount() {
return columns.length;
}
@Override
public String getColumnName(int column) {
if (column < 0 || column > columns.length) {
return "";
}
return columns[column].name;
}
@Override
public Class<?> getColumnClass(int columnIndex) {
return Contribution.class;
}
@Override
public Object getValueAt(int rowIndex, int columnIndex) {
if (rowIndex >= ContributionListing.getInstance().allContributions.size()) {
return sections[rowIndex - ContributionListing.getInstance().allContributions.size()];
}
return ContributionListing.getInstance().allContributions.stream().skip(rowIndex).findFirst().orElse(null);
}
public void setColumns(ContributionColumn[] columns) {
this.columns = columns;
}
public void enableSections(boolean enable) {
this.sectionsEnabled = enable;
}
}
protected class ContributionRowFilter extends RowFilter<ContributionTableModel, Integer> {
Contribution.Filter contributionFilter;
Optional<String> categoryFilter = Optional.empty();
List<String> stringFilters = Collections.emptyList();
ContributionRowFilter(Contribution.Filter contributionFilter) {
this.contributionFilter = contributionFilter;
}
public void setCategoryFilter(String categoryFilter) {
this.categoryFilter = Optional.ofNullable(categoryFilter);
}
public void setStringFilters(List<String> filters) {
this.stringFilters = filters;
}
@Override
public boolean include(Entry<? extends ContributionTableModel, ? extends Integer> entry) {
Contribution contribution = (Contribution) entry.getValue(0);
if (contribution instanceof SectionHeaderContribution) {
return includeSection((SectionHeaderContribution) contribution);
}
return includeContribution(contribution);
}
private boolean includeContribution(Contribution contribution) {
return contributionFilter.matches(contribution)
&& categoryFilter.map(contribution::hasCategory).orElse(true)
&& stringFilters.stream().allMatch(pattern -> ContributionListing.getInstance().matches(contribution, pattern));
}
private boolean includeSection(SectionHeaderContribution section) {
return ContributionListing.getInstance().allContributions.stream()
.filter(contribution -> contribution.getType() == section.getType())
.anyMatch(this::includeContribution);
}
}
protected static class SectionHeaderContribution extends Contribution {
ContributionType type;
SectionHeaderContribution(ContributionType type) {
this.type = type;
this.name = getTypeName();
}
@Override
public ContributionType getType() {
return type;
}
@Override
public boolean isInstalled() {
return false;
}
}
static String getAuthorNameWithoutMarkup(String authorList) {
StringBuilder name = new StringBuilder();
if (authorList != null) {
int parentheses = 0;
for (int i = 0; i < authorList.length(); i++) {
if (authorList.charAt(i) == '[' || authorList.charAt(i) == ']') {
continue;
}
if (authorList.charAt(i) == '(') {
parentheses++;
} else if (authorList.charAt(i) == ')') {
parentheses--;
} else if (parentheses == 0) {
name.append(authorList.charAt(i));
}
}
}
return name.toString();
}
// Thread: EDT
public void contributionAdded(final Contribution contribution) {
if (!panelByContribution.containsKey(contribution)) {
DetailPanel newPanel =
new DetailPanel(this);
panelByContribution.put(contribution, newPanel);
newPanel.setContribution(contribution);
add(newPanel);
model.fireTableDataChanged();
updateColors(); // XXX this is the place
}
}
// Thread: EDT
public void contributionRemoved(final Contribution contribution) {
DetailPanel panel = panelByContribution.get(contribution);
if (panel != null) {
remove(panel);
panelByContribution.remove(contribution);
}
model.fireTableDataChanged();
updateColors();
updateUI();
}
// Thread: EDT
public void contributionChanged(final Contribution oldContrib,
final Contribution newContrib) {
DetailPanel panel = panelByContribution.get(oldContrib);
if (panel == null) {
contributionAdded(newContrib);
} else {
panelByContribution.remove(oldContrib);
panel.setContribution(newContrib);
panelByContribution.put(newContrib, panel);
model.fireTableDataChanged();
}
}
// Thread: EDT
public void filterLibraries(String category, List<String> filters) {
filter.setCategoryFilter(category);
filter.setStringFilters(filters);
model.fireTableDataChanged();
}
// Thread: EDT
protected void setSelectedPanel(DetailPanel contributionPanel) {
contributionTab.updateStatusPanel(contributionPanel);
if (selectedPanel == contributionPanel) {
selectedPanel.setSelected(true);
} else {
DetailPanel lastSelected = selectedPanel;
selectedPanel = contributionPanel;
if (lastSelected != null) {
lastSelected.setSelected(false);
}
contributionPanel.setSelected(true);
updateColors();
requestFocusInWindow();
}
}
protected DetailPanel getSelectedPanel() {
return selectedPanel;
}
// Thread: EDT
/**
* Updates the colors of all library panels that are visible.
*/
protected void updateColors() {
int count = 0;
for (Entry<Contribution, DetailPanel> entry : panelByContribution.entrySet()) {
DetailPanel panel = entry.getValue();
Border border = BorderFactory.createEmptyBorder(1, 1, 1, 1);
if (panel.isVisible()) {
boolean oddRow = count % 2 == 1;
Color bgColor = null;
Color fgColor = UIManager.getColor("List.foreground");
if (panel.isSelected()) {
bgColor = UIManager.getColor("List.selectionBackground");
fgColor = UIManager.getColor("List.selectionForeground");
border = UIManager.getBorder("List.focusCellHighlightBorder");
} else if (Platform.isMacOS()) {
border = oddRow
? UIManager.getBorder("List.oddRowBackgroundPainter")
: UIManager.getBorder("List.evenRowBackgroundPainter");
} else {
bgColor = oddRow
? new Color(219, 224, 229)
: new Color(241, 241, 241);
}
panel.setForeground(fgColor);
if (bgColor != null) {
panel.setBackground(bgColor);
}
count++;
}
panel.setBorder(border);
}
}
@Override
public Dimension getPreferredScrollableViewportSize() {
return getPreferredSize();
}
/**
* Amount to scroll to reveal a new page of items
*/
@Override
public int getScrollableBlockIncrement(Rectangle visibleRect,
int orientation, int direction) {
if (orientation == SwingConstants.VERTICAL) {
int blockAmount = visibleRect.height;
if (direction > 0) {
visibleRect.y += blockAmount;
} else {
visibleRect.y -= blockAmount;
}
blockAmount +=
getScrollableUnitIncrement(visibleRect, orientation, direction);
return blockAmount;
}
return 0;
}
/**
* Amount to scroll to reveal the rest of something we are on or a new item
*/
@Override
public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) {
if (orientation != SwingConstants.VERTICAL) {
return 0;
}
int lastHeight = 0;
int height = 0;
int bottomOfScrollArea = visibleRect.y + visibleRect.height;
for (Component c : getComponents()) {
if (!(c.isVisible() && c instanceof DetailPanel)) {
continue;
}
Dimension d = c.getPreferredSize();
int nextHeight = height + d.height;
if (direction > 0) {
// scrolling down
if (nextHeight > bottomOfScrollArea) {
return nextHeight - bottomOfScrollArea;
}
} else if (nextHeight > visibleRect.y) {
if (visibleRect.y != height) {
return visibleRect.y - height;
} else {
return visibleRect.y - lastHeight;
}
}
lastHeight = height;
height = nextHeight;
}
return 0;
}
@Override
public boolean getScrollableTracksViewportHeight() {
return false;
}
@Override
public boolean getScrollableTracksViewportWidth() {
return true;
}
public int getRowCount() {
// This will count section headers, but it is only used to check if any rows are shown
return sorter.getViewRowCount();
}
}