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

xworker.javafx.control.TreeTableCellActions Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package xworker.javafx.control;

import javafx.scene.control.TableCell;
import javafx.scene.control.TreeTableCell;
import org.xmeta.ActionContext;
import org.xmeta.Thing;

public class TreeTableCellActions {
    public static void init(TreeTableCell node, Thing thing, ActionContext actionContext){
        IndexedCellActions.init(node, thing, actionContext);
    }

    public static TreeTableCell create(ActionContext actionContext){
        Thing self = actionContext.getObject("self");
        TreeTableCell node  = new ThingTreeTableCell(self, actionContext);
        init(node, self, actionContext);
        actionContext.g().put(self.getMetadata().getName(), node);

        actionContext.peek().put("parent", node);
        for(Thing child : self.getChilds()){
            child.doAction("create", actionContext);
        }
        return node;
    }

    public static class ThingTreeTableCell extends TreeTableCell{
        Thing thing;
        ActionContext actionContext;

        public ThingTreeTableCell(Thing thing, ActionContext actionContext){
            this.thing = thing;
            this.actionContext = actionContext;
        }

        @Override
        protected void updateItem(T item, boolean empty) {
            super.updateItem(item, empty);

            thing.doAction("updateItem", actionContext, "cell", this, "item", item, "empty", empty);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy