我正在尝试编写自定义TableViewSelectionModel
以与JavaFX中的TableView
一起使用。我已经实现了所有抽象方法,并且正在更新所选项目和选定的单元格列表。但是,当我单击另一行时,表中显示的实际选择不会改变。
这是一个简化示例,它显示了这种行为:
import java.util.*;
import javafx.scene.control.*;
import javafx.scene.control.TableView.TableViewSelectionModel;
import javafx.collections.*;
import javafx.beans.property.ReadOnlyListWrapper;
public class MySelectionModel<S> extends TableViewSelectionModel<S>{
Set<Integer> selection = new HashSet<>();
final ObservableList<TablePosition<S, ?>> selectedCells = FXCollections.<TablePosition<S, ?>>observableArrayList();
final ObservableList<S> selectedItems = FXCollections.<S>observableArrayList();
final ObservableList<Integer> selectedIndices = FXCollections.<Integer>observableArrayList();
public MySelectionModel(TableView<S> tableview){
super(tableview);
setCellSelectionEnabled(false);
}
public ObservableList<S> getSelectedItems(){
return new ReadOnlyListWrapper<S>(selectedItems);
}
public void clearSelection(int row, TableColumn<S, ?> tableColumn){
selection.remove(Integer.valueOf(row));
updateSelection();
}
public void clearAndSelect(int row, TableColumn<S, ?> tableColumn){
selection = Collections.singleton(row);
updateSelection();
}
public void select(int row, TableColumn<S, ?> tableColumn){
selection.add(Integer.valueOf(row));
updateSelection();
}
public boolean isSelected(int row, TableColumn<S, ?> tableColumn){
return selection.contains(Integer.valueOf(row));
}
public ObservableList<TablePosition> getSelectedCells(){
return new ReadOnlyListWrapper<TablePosition>((ObservableList<TablePosition>)(Object)selectedCells);
}
public ObservableList<Integer> getSelectedIndices(){
return new ReadOnlyListWrapper<Integer>(selectedIndices);
}
public void selectBelowCell(){}
public void selectAboveCell(){}
public void selectRightCell(){}
public void selectLeftCell(){}
public void updateSelection(){
List<TablePosition<S, ?>> positions = new ArrayList<>();
List<S> items = new ArrayList<>();
List<Integer> indices = new ArrayList<>();
TableView<S> tableView = getTableView();
for(Integer i : selection){
positions.add(new TablePosition<S, Object>(tableView, i.intValue(), null));
items.add(getTableView().getItems().get(i.intValue()));
indices.add(i);
}
selectedCells.setAll(positions);
selectedItems.setAll(items);
selectedIndices.setAll(indices);
}
}
TableView
就是这样设置的:
TableView<ObservableList<MyData>> table = new TableView<>();
table.setSelectionModel(new MySelectionModel(table));
table.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
我已确认通过在两个支持ListChangeListener
上添加ObservableList
并显示Change
来正确设置新索引。输出是我所期望的,例如。
Selected Cells {[TablePosition [row:8,column:null,tableView:TableView @ 11924c25 [styleClass = table-view]]]替换为[TablePosition [row:12,column:null,tableView:TableView @ 11924c25 [ styleClass = table-view]]] at 0}
所选项{[[MyCustomTableView $ Cell @ 1c988ebb,MyCustomTableView $ Cell @ 6b80b2be]]由[[MyCustomTableView $ Cell @ 4a17d76d,MyCustomTableView $ Cell @ 6e48d6d]]替换为0}
当TableView
更改其选择时,TableViewSelectionModel
更新其选择时是否需要我遗漏的任何内容?
答案 0 :(得分:1)
除了你已经拥有的方法之外,你需要覆盖的方法似乎是
public void select(int row) ;
您可以通过委派现有的select
方法轻松实现:
@Override
public void select(int row) {
select(row, null);
}
我还建议覆盖以下内容:
@Override
public void clearAndSelect(int row) {
clearAndSelect(row, null);
}
@Override
public void selectRange(int start, int end) {
IntStream.range(start, end).forEach(selection::add);
updateSelection();
}
@Override
public boolean isSelected(int row) {
return isSelected(row, null);
}
另请注意,您有一个错误。 Collections.singleton(...)
会返回一个不可修改的列表,因此,如果您选择一行,然后尝试向所选内容添加项目,则会获得UnsupportedOperationException
。您的clearAndSelect
需要实现为
public void clearAndSelect(int row, TableColumn<S, ?> tableColumn){
selection.clear();
selection.add(row);
updateSelection();
}