2

I modeled a TreeView<Playlist> such that the nodes that have children, have a Folder icon as graphic, and the other ones have a playlist icon. The styles almost works, but when expanding/collapsing nodes, the graphic icons get broken.

When a node is clicked, it always shows the correct style, but when expanding/collapsing, or when new nodes are added, the TreeView act like this:

treeview-strange-behaviour

Here is part of the code where is defined the TreeCell in the TreeView

public class PlaylistTreeView extends TreeView<Playlist> {

    public PlaylistTreeView() {
    ...

    setShowRoot(false);
    setCellFactory(treeView -> new PlaylistTreeCell());

    ...
    }

    private class PlaylistTreeCell extends TreeCell<Playlist> {

        @Override
        public void updateItem(Playlist p, boolean empty) {
            super.updateItem(p, empty);
            if(p == null || empty) {
                textProperty().unbind();
                setText("");
                setGraphic(null);
            }
            else {
                if(p.isFolder())
                    setId("playlist-folder-tree-cell");
                else
                    setId("playlist-tree-cell");
                textProperty().bind(p.nameProperty());
            }
        }
    }
}

And these are the only styles that affect those components by css:

.tree-cell, .list-cell {
    -fx-background-color: rgb(243, 243, 243);
}

#playlist-tree-cell {
    -fx-graphic: url('../icons/playlist-black-icon.png');
}

#playlist-tree-cell:selected {
    -fx-graphic: url('../icons/playlist-white-icon.png');
}

#playlist-folder-tree-cell {
    -fx-graphic: url('../icons/playlist-folder-black-icon.png');    
}

#playlist-folder-tree-cell:selected {
    -fx-graphic: url('../icons/playlist-folder-white-icon.png');
}

.list-cell:selected, .tree-cell:selected {  
    -fx-background-color: black;
    -fx-text-fill: white;
}

What am I missing here?

transgressoft
  • 155
  • 2
  • 13

1 Answers1

2

I solved it using css pseudo classes.

public class PlaylistTreeView extends TreeView<Playlist> {

    private PseudoClass playlist = PseudoClass.getPseudoClass("playlist");
    private PseudoClass playlistSelected = PseudoClass.getPseudoClass("playlist-selected");
    private PseudoClass folder = PseudoClass.getPseudoClass("folder");
    private PseudoClass folderSelected = PseudoClass.getPseudoClass("folder-selected");

    public PlaylistTreeView() {
        setShowRoot(false);
        setCellFactory(treeView -> new PlaylistTreeCell());
    }

    private class PlaylistTreeCell extends TreeCell<Playlist> {

        public PlaylistTreeCell() {
            super();

            ChangeListener<Boolean> isFolderListener = (obs, oldPlaylist, newPlaylist) -> {
                boolean isFolder = newPlaylist.booleanValue();
                boolean isSelected = selectedProperty().get();
                updatePseudoClassesStates(isFolder, isSelected);
            };

            ChangeListener<Boolean> isSelectedListener = (obs, oldValue, newValue) -> {
                boolean isFolder = itemProperty().getValue().isFolder();
                boolean isSelected = newValue.booleanValue();
                updatePseudoClassesStates(isFolder, isSelected);
            };

            itemProperty().addListener((obs, oldPlaylist, newPlaylist) -> {

                if(oldPlaylist != null) {
                    textProperty().unbind();
                    setText("");
                    oldPlaylist.folderProperty().removeListener(isFolderListener);
                    selectedProperty().removeListener(isSelectedListener);
                }

                if(newPlaylist != null) {
                    textProperty().bind(newPlaylist.nameProperty());
                    newPlaylist.folderProperty().addListener(isFolderListener);
                    selectedProperty().addListener(isSelectedListener);

                    updatePseudoClassesStates(newPlaylist.isFolder(), selectedProperty().get());
                }
                else {
                    pseudoClassStateChanged(folder, false);
                    pseudoClassStateChanged(folderSelected, false);
                    pseudoClassStateChanged(playlist, false);
                    pseudoClassStateChanged(playlistSelected, false);
                }
            });
        }

        private void updatePseudoClassesStates(boolean isFolder, boolean isSelected) {
            pseudoClassStateChanged(folder, isFolder && !isSelected);
            pseudoClassStateChanged(folderSelected, isFolder && isSelected);
            pseudoClassStateChanged(playlist, !isFolder && !isSelected);
            pseudoClassStateChanged(playlistSelected, !isFolder && isSelected);
        }
}

style.css file:

.tree-cell, .list-cell {
    -fx-background-color: rgb(243, 243, 243);
}

.tree-cell:empty {
    -fx-graphic: none;
}

.tree-cell:playlist {
    -fx-graphic: url('../playlist-black-icon.png');
}

.tree-cell:playlist-selected {
    -fx-graphic: url('../playlist-white-icon.png');
}

.tree-cell:folder {
    -fx-graphic: url('../playlist-folder-black-icon.png');
}

.tree-cell:folder-selected {
    -fx-graphic: url('../playlist-folder-white-icon.png');
}

.tree-cell:playlist-selected, .tree-cell:folder-selected {
    -fx-background-color: black;
    -fx-text-fill: white;
}

enter image description here

transgressoft
  • 155
  • 2
  • 13