Skip to content
Snippets Groups Projects
Unverified Commit 556c89f0 authored by eugene7646's avatar eugene7646 Committed by GitHub
Browse files

Merge pull request #7852 from gdicristofaro/AUT-2473-nonConsecutiveRange

AUT-2473 allow deletion from non-consecutive range
parents 4e7a423e b2c29bb0
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@
package org.sleuthkit.autopsy.casemodule;
import java.io.File;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
......@@ -330,12 +331,7 @@ private void changeNameButtonActionPerformed(java.awt.event.ActionEvent evt) {//
}//GEN-LAST:event_changeNameButtonActionPerformed
private void deleteButonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_deleteButonActionPerformed
int minIdx = this.fileList.getMinSelectionIndex();
int maxIdx = this.fileList.getMaxSelectionIndex();
if (minIdx >= 0 && maxIdx >= minIdx) {
this.listModel.remove(minIdx, maxIdx);
}
this.listModel.remove(this.fileList.getSelectedIndices());
this.fileList.clearSelection();
enableNext = !this.listModel.getFiles().isEmpty();
......@@ -516,16 +512,26 @@ void add(File... files) {
}
/**
* Removes files in the list starting at minIdx going to maxIdx.
*
* @param minIdx The minimum index of items to be removed.
* @param maxIdx The maximum index to be removed.
* Removes the selected indices.
* @param selectedIndices The selected indices.
*/
void remove(int minIdx, int maxIdx) {
for (int i = maxIdx; i >= minIdx; i--) {
items.remove(i);
void remove(int[] selectedIndices) {
if (selectedIndices != null) {
Iterable<Integer> sortedIndices = (Iterable<Integer>) () -> Arrays.stream(selectedIndices)
.mapToObj(i -> i)
// reverse order to remove highest index to lowest index
.sorted((a,b) -> Integer.compare(b, a))
.iterator();
int prevIdxMax = items.size() - 1;
for (Integer idx: sortedIndices) {
if (idx != null && idx >= 0 && idx < this.items.size()) {
this.items.remove((int) idx);
}
}
this.fireContentsChanged(this, 0, prevIdxMax);
}
this.fireContentsChanged(this, 0, items.size() - 1);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment