-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathListPanel.java
More file actions
846 lines (694 loc) · 28.1 KB
/
ListPanel.java
File metadata and controls
846 lines (694 loc) · 28.1 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
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
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
Part of the Processing project - http://processing.org
Copyright (c) 2013-23 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.awt.geom.Arc2D;
import java.awt.geom.Ellipse2D;
import java.awt.geom.Line2D;
import java.awt.image.BufferedImage;
import java.util.List;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import javax.swing.*;
import javax.swing.RowSorter.SortKey;
import javax.swing.table.*;
import processing.app.Util;
import processing.app.ui.Theme;
import processing.app.laf.PdeScrollBarUI;
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. Is that hiding a bigger problem?
// It also allows the description text in the panels to wrap properly.
public class ListPanel extends JPanel implements Scrollable {
ContributionTab contributionTab;
Map<Contribution, StatusDetail> detailForContrib =
new ConcurrentHashMap<>();
private final Contribution.Filter filter;
private StatusDetail selectedDetail;
protected ContributionRowFilter rowFilter;
protected JTable table;
protected TableRowSorter<ContributionTableModel> sorter;
protected ContributionTableModel model;
// state icons appearing to the left side of the list
static final int ICON_SIZE = 16;
Icon upToDateIcon;
Icon updateAvailableIcon;
Icon incompatibleIcon;
Icon downloadingIcon;
// used in the list next to the creator name
Icon foundationIcon;
Color headerFgColor;
Color headerBgColor;
Color sectionColor;
Color rowColor;
Color textColor;
Color selectionColor;
Color textColorIncompatible;
Color selectionColorIncompatible;
JScrollPane scrollPane;
static final SectionHeaderContribution[] sectionHeaders = {
new SectionHeaderContribution(ContributionType.LIBRARY),
new SectionHeaderContribution(ContributionType.MODE),
new SectionHeaderContribution(ContributionType.TOOL),
new SectionHeaderContribution(ContributionType.EXAMPLES)
};
public ListPanel(final ContributionTab contributionTab,
final Contribution.Filter filter,
final boolean enableSections,
final ContributionColumn... columns) {
this.contributionTab = contributionTab;
this.filter = filter;
model = new ContributionTableModel(columns); /* {
@Override
public void fireTableDataChanged() {
new Exception().printStackTrace(System.out);
super.fireTableDataChanged();
}
};*/
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(sectionColor);
} else if (isRowSelected(row)) {
if (((Contribution) rowValue).isCompatible()) {
c.setBackground(selectionColor);
} else {
c.setBackground(selectionColorIncompatible);
}
} else {
c.setBackground(rowColor);
}
return c;
}
@Override
public void changeSelection(int rowIndex, int columnIndex, boolean toggle, boolean extend) {
// disallow selection of the header lines
if (!(getValueAt(rowIndex, columnIndex) instanceof SectionHeaderContribution)) {
super.changeSelection(rowIndex, columnIndex, toggle, extend);
}
}
};
scrollPane = new JScrollPane(table);
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
scrollPane.getVerticalScrollBar().setUI(new PdeScrollBarUI("manager.scrollbar"));
scrollPane.setBorder(BorderFactory.createEmptyBorder());
table.setFillsViewportHeight(true);
table.setDefaultRenderer(Contribution.class, new ContribCellRenderer());
table.setRowHeight(Toolkit.zoom(28));
table.setRowMargin(Toolkit.zoom(6));
TableColumnModel tcm = table.getColumnModel();
tcm.setColumnMargin(0);
tcm.getColumn(0).setMaxWidth(ManagerFrame.STATUS_WIDTH);
tcm.getColumn(2).setMinWidth(ManagerFrame.AUTHOR_WIDTH);
tcm.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(event -> {
// This is called twice for each mouse click, once on mouse press with
// event.getValueIsAdjusting()) set true, and again when the mouse is
// released where adjusting will be set false. But instead of only
// responding to one or the other, need to fire on both so that the
// selection updates while the user drags mouse across the list (and
// not just when released). Using the arrow keys will only fire once
// because adjusting will be false (no ongoing drag with keys).
int row = table.getSelectedRow();
if (row != -1) {
Contribution contrib = (Contribution) table.getValueAt(row, 0);
setSelectedDetail(detailForContrib.get(contrib));
// Preventing the focus to move out of filterField after typing every character
if (!contributionTab.filterHasFocus()) {
table.requestFocusInWindow();
}
}
});
sorter = new TableRowSorter<>(model);
table.setRowSorter(sorter);
rowFilter = new ContributionRowFilter(filter);
sorter.setRowFilter(rowFilter);
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());
table.getTableHeader().setReorderingAllowed(false);
table.getTableHeader().setResizingAllowed(true);
table.setVisible(true);
setOpaque(true);
setLayout(new BorderLayout());
add(scrollPane, BorderLayout.CENTER);
}
protected void updateTheme() {
headerFgColor = Theme.getColor("manager.list.header.fgcolor");
headerBgColor = Theme.getColor("manager.list.header.bgcolor");
sectionColor = Theme.getColor("manager.list.section.color");
textColor = Theme.getColor("manager.list.text.color");
selectionColor = Theme.getColor("manager.list.selection.color");
textColorIncompatible = Theme.getColor("manager.list.incompatible.text.color");
selectionColorIncompatible = Theme.getColor("manager.list.incompatible.selection.color");
rowColor = Theme.getColor("manager.list.background.color");
table.setBackground(rowColor);
foundationIcon = Toolkit.renderIcon("manager/foundation", Theme.get("manager.list.foundation.color"), ICON_SIZE);
upToDateIcon = Toolkit.renderIcon("manager/list-up-to-date", Theme.get("manager.list.icon.color"), ICON_SIZE);
updateAvailableIcon = Toolkit.renderIcon("manager/list-update-available", Theme.get("manager.list.icon.color"), ICON_SIZE);
incompatibleIcon = Toolkit.renderIcon("manager/list-incompatible", Theme.get("manager.list.icon.color"), ICON_SIZE);
downloadingIcon = Toolkit.renderIcon("manager/list-downloading", Theme.get("manager.list.icon.color"), ICON_SIZE);
((PdeScrollBarUI) scrollPane.getVerticalScrollBar().getUI()).updateTheme();
}
/**
* Render the pie chart or indeterminate spinner for table rows.
* @param amount 0..1 for a pie, -1 for indeterminate
* @param hash unique offset to prevent indeterminate from being in the same position
* @return properly scalable ImageIcon for rendering in the Table at 1x or 2x
*/
Icon renderProgressIcon(float amount, int hash) {
// final int FFS_JAVA2D = ICON_SIZE - 2;
final float FFS_JAVA2D = ICON_SIZE - 1.5f;
// final int scale = Toolkit.highResImages() ? 2 : 1;
// final int dim = ICON_SIZE * scale;
final int dim = ICON_SIZE * (Toolkit.highResImages() ? 2 : 1);
// Image image = Toolkit.offscreenGraphics(this, ICON_SIZE, ICON_SIZE);
Image image = new BufferedImage(dim, dim, BufferedImage.TYPE_INT_ARGB);
// Graphics2D g2 = (Graphics2D) image.getGraphics();
// Toolkit.prepareGraphics(g2);
Graphics2D g2 = Toolkit.prepareGraphics(image);
// g2.setColor(rowColor);
// g2.fillRect(0, 0, ICON_SIZE, ICON_SIZE);
g2.translate(0.5, 0.5);
g2.setStroke(new BasicStroke(1.5f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND));
Color iconColor = Theme.getColor("manager.list.icon.color");
g2.setColor(iconColor);
// g2.drawOval(0, 0, FFS_JAVA2D, FFS_JAVA2D);
Ellipse2D circle = new Ellipse2D.Float(0, 0, FFS_JAVA2D, FFS_JAVA2D);
if (amount != -1) {
// draw ever-growing pie wedge
g2.draw(circle);
int theta = (int) (360 * amount);
// g2.fillArc(0, 0, ICON_SIZE-1, ICON_SIZE-1, 90, -theta);
Arc2D wedge = new Arc2D.Float(0, 0, FFS_JAVA2D, FFS_JAVA2D, 90, -theta, Arc2D.PIE);
g2.fill(wedge);
} else {
// draw indeterminate state
g2.fill(circle);
g2.translate(FFS_JAVA2D/2, FFS_JAVA2D/2);
// offset by epoch to avoid integer out of bounds (the date is in 2001)
final long EPOCH = 1500000000000L + Math.abs((long) hash);
int angle = (int) ((System.currentTimeMillis() - EPOCH) / 20) % 360;
g2.rotate(angle);
g2.setColor(rowColor);
float lineRadius = FFS_JAVA2D * 0.3f;
g2.draw(new Line2D.Float(-lineRadius, 0, lineRadius, 0));
}
g2.dispose();
return Toolkit.wrapIcon(image);
}
// TODO remove this, yuck [fry 220313]
protected int getScrollBarWidth() {
return scrollPane.getVerticalScrollBar().getPreferredSize().width;
}
private static int getContributionStatusRank(Contribution c) {
// Uninstalled items are at the bottom of the sort order
int pos = 4;
if (c.isInstalled()) {
pos = 1;
if (ContributionListing.getInstance().hasUpdates(c)) {
pos = 2;
}
if (!c.isCompatible()) {
// This is weird because it means some grayed-out items will
// show up before non-gray items. We probably need another
// state icon for 'installed but incompatible' [fry 220116]
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);
setForeground(headerFgColor);
setText(getText() + getSortText(table, column));
putClientProperty("FlatLaf.styleClass", "small");
setBackground(headerBgColor);
setBorder(null);
return this;
}
// /**
// * 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.
// */
// private Icon getSortIcon(JTable table, int column) {
// SortKey sortKey = getSortKey(table);
// 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;
// }
private String getSortText(JTable table, int column) {
SortKey sortKey = getSortKey(table);
if (sortKey != null && table.convertColumnIndexToView(sortKey.getColumn()) == column) {
switch (sortKey.getSortOrder()) {
case ASCENDING -> { return " ↓"; }
case DESCENDING -> { return " ↑"; }
}
}
// if not sorting on this column
return "";
}
/**
* Returns the current sort key, or null if the column is unsorted.
*
* @param table the table
* @return the SortKey, or null if the column is unsorted
*/
protected SortKey getSortKey(JTable table) {
return Optional.ofNullable(table.getRowSorter())
.map(RowSorter::getSortKeys)
.map(columns -> columns.isEmpty() ? null : columns.get(0))
.orElse(null);
}
}
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
private class ContribCellRenderer 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];
/*
// Removing this workaround for 4.1.2; likely fixed by change
// for the concurrent Set used with allContributions list.
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, STATUS_NO_HEADER -> configureStatusColumnLabel(label, contribution);
case NAME -> configureNameColumnLabel(table, label, contribution);
case AUTHOR -> configureAuthorsColumnLabel(label, contribution);
case INSTALLED_VERSION -> label.setText(contribution.getBenignVersion());
case AVAILABLE_VERSION -> label.setText(ContributionListing.getInstance().getLatestPrettyVersion(contribution));
}
if (contribution instanceof SectionHeaderContribution) {
// grouping color for libraries, modes, tools headers in updates panel
label.setForeground(textColorIncompatible);
} else if (contribution.isCompatible()) {
label.setForeground(textColor);
} else {
label.setForeground(textColorIncompatible);
}
return label;
}
private void configureStatusColumnLabel(JLabel label, Contribution contribution) {
Icon icon = null;
StatusDetail detail = detailForContrib.get(contribution);
if (detail != null && (detail.updateInProgress || detail.installInProgress)) {
// Display "loading" icon if download/install in progress
// icon = downloadingIcon;
// float amount = detail.getProgressAmount();
// icon = (amount == -1) ? downloadingIcon : renderProgressIcon(amount);
icon = renderProgressIcon(detail.getProgressAmount(), contribution.hashCode());
} else if (contribution.isInstalled()) {
if (!contribution.isCompatible()) {
icon = incompatibleIcon;
} else if (ContributionListing.getInstance().hasUpdates(contribution)) {
icon = updateAvailableIcon;
} else if (detail != null && (detail.installInProgress || detail.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 = Theme.getFont("manager.list.heavy.font");
FontMetrics fontMetrics = table.getFontMetrics(boldFont);
int colSize = table.getColumnModel().getColumn(1).getWidth();
int currentWidth = fontMetrics.stringWidth(contribution.getName() + " | …");
String sentence = Util.removeMarkDownLinks(contribution.getSentence());
StringBuilder text =
new StringBuilder("<html><body><font face=\"")
.append(boldFont.getName())
.append("\">")
.append(contribution.getName());
if (sentence.length() == 0) {
text.append("</font>");
} else {
int index;
for (index = 0; index < sentence.length(); index++) {
currentWidth += fontMetrics.charWidth(sentence.charAt(index));
if (currentWidth >= colSize) {
break;
}
}
text.append(" | </font>").append(sentence, 0, index);
// Adding ellipses only if text doesn't fit into the column
if (index != sentence.length()) {
text.append("…");
}
}
text.append("</body></html>");
label.setText(text.toString());
}
private void configureAuthorsColumnLabel(JLabel label, Contribution contribution) {
if (contribution.isFoundation()) {
label.setIcon(foundationIcon);
}
String authorList = contribution.getAuthorList();
String name = Util.removeMarkDownLinks(authorList);
label.setText(name);
label.setHorizontalAlignment(SwingConstants.LEFT);
label.setForeground(Color.BLACK);
label.setFont(Theme.getFont("manager.list.heavy.font"));
}
}
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);
if (this == STATUS || this == STATUS_NO_HEADER) {
return comparator.thenComparingInt(ListPanel::getContributionStatusRank);
} else if (this == AUTHOR) {
return comparator.thenComparing(contribution -> Util.removeMarkDownLinks(contribution.getAuthorList()));
} else { // default case, or this == NAME
return comparator.thenComparing(Contribution::getName, String.CASE_INSENSITIVE_ORDER);
}
}
}
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
static 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.getAllContribs().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) {
Set<Contribution> allContribs = ContributionListing.getAllContribs();
if (rowIndex >= allContribs.size()) {
return sectionHeaders[rowIndex - allContribs.size()];
}
return allContribs.stream().skip(rowIndex).findFirst().orElse(null);
}
public void enableSections(boolean enable) {
this.sectionsEnabled = enable;
}
}
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
static protected boolean matches(Contribution contrib, String typed) {
String search = ".*" + typed.toLowerCase() + ".*";
return (matchField(contrib.getName(), search) ||
matchField(contrib.getSentence(), search) ||
matchField(contrib.getAuthorList(), search) ||
matchField(contrib.getParagraph(), search));
}
static private boolean matchField(String field, String regex) {
return (field != null) && field.toLowerCase().matches(regex);
}
static class ContributionRowFilter extends RowFilter<ContributionTableModel, Integer> {
Contribution.Filter contributionFilter;
String categoryFilter;
List<String> stringFilters = Collections.emptyList();
ContributionRowFilter(Contribution.Filter contributionFilter) {
this.contributionFilter = contributionFilter;
}
public void setCategoryFilter(String categoryFilter) {
this.categoryFilter = 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 (contributionTab.getName().equals("updates")) {
// System.out.println(contributionTab.getName() + " checking " + contribution.getName() + " for inclusion " + includeContribution(contribution));
// }
if (contribution instanceof SectionHeaderContribution) {
return includeSection((SectionHeaderContribution) contribution);
}
return includeContribution(contribution);
}
private boolean includeContribution(Contribution contribution) {
return contributionFilter.matches(contribution) &&
Optional.ofNullable(categoryFilter).map(contribution::hasCategory).orElse(true) &&
stringFilters.stream().allMatch(pattern -> matches(contribution, pattern));
}
private boolean includeSection(SectionHeaderContribution section) {
return ContributionListing.getAllContribs().stream()
.filter(contribution -> contribution.getType() == section.getType())
.anyMatch(this::includeContribution);
}
}
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
/**
* Fake contribution that's just a section header for the updates panel.
*/
static class SectionHeaderContribution extends Contribution {
ContributionType type;
SectionHeaderContribution(ContributionType type) {
this.type = type;
switch (type) {
case LIBRARY -> this.name = "Libraries";
case MODE -> this.name = "Modes";
case TOOL -> this.name = "Tools";
case EXAMPLES -> this.name = "Examples";
}
}
@Override
public ContributionType getType() {
return type;
}
@Override
public boolean isInstalled() {
return false;
}
}
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
// Thread: EDT
protected void contributionAdded(final Contribution contribution) {
if (filter.matches(contribution)) {
if (!detailForContrib.containsKey(contribution)) {
StatusDetail newPanel = contributionTab.createStatusDetail();
detailForContrib.put(contribution, newPanel);
newPanel.setContrib(contribution);
// model.fireTableDataChanged();
}
}
}
// Thread: EDT
protected void contributionRemoved(final Contribution contribution) {
if (filter.matches(contribution)) {
StatusDetail panel = detailForContrib.get(contribution);
if (panel != null) {
detailForContrib.remove(contribution);
}
// model.fireTableDataChanged();
}
}
// Thread: EDT
protected void contributionChanged(final Contribution oldContrib,
final Contribution newContrib) {
if (filter.matches(oldContrib)) {
StatusDetail detail = detailForContrib.get(oldContrib);
detailForContrib.remove(oldContrib);
detail.setContrib(newContrib);
detailForContrib.put(newContrib, detail);
// model.fireTableDataChanged();
}
}
// Thread: EDT
protected void updateFilter(String category, List<String> filters) {
rowFilter.setCategoryFilter(category);
rowFilter.setStringFilters(filters);
// model.fireTableDataChanged();
updateModel();
}
protected void updateModel() {
model.fireTableDataChanged();
}
// Thread: EDT
private void setSelectedDetail(StatusDetail contribDetail) {
contributionTab.applyDetail(contribDetail);
if (selectedDetail != contribDetail) {
selectedDetail = contribDetail;
requestFocusInWindow();
}
}
protected StatusDetail getSelectedDetail() {
return selectedDetail;
}
@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()) {
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;
}
}