All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.massisframework.sweethome3d.plugins.components.fx.ComponentInfoController Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package com.massisframework.sweethome3d.plugins.components.fx;

import java.util.HashMap;
import java.util.Map;

import com.massisframework.sweethome3d.javafx.AbstractJFXController;
import com.massisframework.sweethome3d.javafx.FXHome;
import com.massisframework.sweethome3d.javafx.FXHomeObject;
import com.massisframework.sweethome3d.javafx.JFXPanelFactory;
import com.massisframework.sweethome3d.javafx.properties.MetadataObject;

import javafx.collections.ListChangeListener;
import javafx.fxml.FXML;
import javafx.scene.control.ScrollPane;
import javafx.scene.control.TitledPane;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.VBox;

public class ComponentInfoController extends AbstractJFXController {
	@FXML
	private VBox componentsAccordion;
	@FXML
	private ScrollPane componentsScrollPane;
	private Map sectionControllers;
	private FXHome home;
	private FXHomeObject currentObj;
	private ListChangeListener changeListener;
	private ListChangeListener> selectionListener;

	public ComponentInfoController()
	{
		this.sectionControllers = new HashMap<>();
	}

	@FXML
	public void initialize()
	{
		this.changeListener = (ListChangeListener) c -> {
			// Y si iteramos por todos y los ponemos como toca?
			while (c.next())
			{
				c.getRemoved().forEach(s -> {
					removePane(s);
				});
				c.getAddedSubList().forEach(s -> {
					addPane(s);
				});
				if (c.wasUpdated())
				{

				}
			}

		};
		this.selectionListener = (ListChangeListener>) c -> {

			if (c.getList().size() == 1)
			{
				setFXHomeObject(c.getList().get(0));
			} else
			{
				clear();
			}
		};
//		AnchorPane.setLeftAnchor(componentsScrollPane, 0.0);
//		AnchorPane.setRightAnchor(componentsScrollPane, 0.0);
		AnchorPane.setLeftAnchor(componentsAccordion, 0.0);
		AnchorPane.setRightAnchor(componentsAccordion, 0.0);

	}

	public void setFXHome(FXHome home)
	{
		this.home = home;
		home.selectedItemsProperty().addListener(this.selectionListener);
	}

	private void clear()
	{
		this.sectionControllers.clear();
		this.componentsAccordion.getChildren().clear();
		if (this.currentObj != null)
		{
			this.currentObj.getMetadata().sectionsProperty()
					.removeListener(this.changeListener);
		}
		this.currentObj = null;
	}

	private void setFXHomeObject(FXHomeObject obj)
	{
		this.clear();
		this.currentObj = obj;
		this.currentObj.getMetadata().sectionsProperty()
				.forEach(s -> addPane(s));
		this.currentObj.getMetadata().sectionsProperty()
				.addListener(this.changeListener);

	}

	private void addPane(MetadataObject section)
	{
		ComponentInfoTableController controller = this.sectionControllers
				.get(section);
		if (controller == null)
		{
			try
			{
				ComponentInfoTableController c = (ComponentInfoTableController) JFXPanelFactory
						.loadController(getClass()
								.getResource("ComponentInfoTitledPane.fxml"));
				c.setSection(section);
				this.sectionControllers.put(section, c);
				this.componentsAccordion.getChildren()
						.add((TitledPane) c.getRoot());

			} catch (Exception e)
			{
				e.printStackTrace();
				throw new RuntimeException(e);
			}
		}
	}

	private void removePane(MetadataObject s)
	{
		ComponentInfoTableController controller = this.sectionControllers
				.remove(s);
		if (controller != null)
		{
			this.componentsAccordion.getChildren()
					.remove(controller.getRoot());
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy