use of javafx.beans.binding.ObjectExpression in project POL-POM-5 by PlayOnLinux.
the class ApplicationsFeaturePanelSkin method createSidebar.
/**
* {@inheritDoc}
*/
@Override
public ObjectExpression<SidebarBase<?, ?, ?>> createSidebar() {
/*
* initialize the category lists by:
* 1. filtering by installer categories
* 2. sorting the remaining categories by their name
*/
final SortedList<CategoryDTO> sortedCategories = getControl().getCategories().filtered(category -> category.getType() == CategoryDTO.CategoryType.INSTALLERS).sorted(Comparator.comparing(CategoryDTO::getName));
final ApplicationSidebar sidebar = new ApplicationSidebar(sortedCategories, this.selectedListWidget);
sidebar.operatingSystemProperty().bind(getControl().operatingSystemProperty());
sidebar.fuzzySearchRatioProperty().bind(getControl().fuzzySearchRatioProperty());
getControl().searchTermProperty().bind(sidebar.searchTermProperty());
getControl().filterCategoryProperty().bind(sidebar.selectedItemProperty());
getControl().containCommercialApplicationsProperty().bind(sidebar.containCommercialApplicationsProperty());
getControl().containRequiresPatchApplicationsProperty().bind(sidebar.containRequiresPatchApplicationsProperty());
getControl().containTestingApplicationsProperty().bind(sidebar.containTestingApplicationsProperty());
getControl().containAllOSCompatibleApplicationsProperty().bind(sidebar.containAllOSCompatibleApplicationsProperty());
// set the default selection
sidebar.setSelectedListWidget(Optional.ofNullable(getControl().getJavaFxSettingsManager()).map(JavaFxSettingsManager::getAppsListType).orElse(ListWidgetType.ICONS_LIST));
// save changes to the list widget selection to the hard drive
sidebar.selectedListWidgetProperty().addListener((observable, oldValue, newValue) -> {
final JavaFxSettingsManager javaFxSettingsManager = getControl().getJavaFxSettingsManager();
if (newValue != null) {
javaFxSettingsManager.setAppsListType(newValue);
javaFxSettingsManager.save();
}
});
return new SimpleObjectProperty<>(sidebar);
}
Aggregations