Search in sources :

Example 1 with NodeBase

use of replete.gui.controls.simpletree.NodeBase in project n2a by frothga.

the class OutputParameterPanel method dragGestureRecognized.

public void dragGestureRecognized(DragGestureEvent event) {
    Cursor cursor = null;
    SimpleTree list = (SimpleTree) event.getComponent();
    TreePath[] paths = list.getSelectionPaths();
    if (paths == null) {
        return;
    }
    List<ParameterBundle> bundles = new ArrayList<ParameterBundle>();
    for (TreePath path : paths) {
        List<ParameterDomain> domains = new ArrayList<ParameterDomain>();
        for (int p = 0; p < path.getPathCount(); p++) {
            Object u = ((TNode) path.getPathComponent(p)).getObject();
            if (u instanceof NodeSubdomain) {
                domains.add(((NodeSubdomain) u).getSubdomain());
            }
        }
        NodeBase uLeaf = ((TNode) path.getLastPathComponent()).getObject();
        if (uLeaf instanceof NodeParameter) {
            NodeParameter p = (NodeParameter) uLeaf;
            bundles.add(new ParameterBundle(domains, p.getParameter()));
        } else {
            // TODO: add all children?
            return;
        }
    }
    if (event.getDragAction() == DnDConstants.ACTION_LINK) {
        cursor = DragCursors.getGrabhandcursor();
    }
    event.startDrag(cursor, new TransferableParameterBundles(bundles));
}
Also used : ArrayList(java.util.ArrayList) TransferableParameterBundles(gov.sandia.umf.platform.ui.ensemble.TransferableParameterBundles) ParameterBundle(gov.sandia.n2a.parms.ParameterBundle) Cursor(java.awt.Cursor) SimpleTree(replete.gui.controls.simpletree.SimpleTree) NodeSubdomain(gov.sandia.umf.platform.ui.ensemble.tree.NodeSubdomain) NodeBase(replete.gui.controls.simpletree.NodeBase) TNode(replete.gui.controls.simpletree.TNode) TreePath(javax.swing.tree.TreePath) NodeParameter(gov.sandia.umf.platform.ui.ensemble.tree.NodeParameter) ParameterDomain(gov.sandia.n2a.parms.ParameterDomain)

Example 2 with NodeBase

use of replete.gui.controls.simpletree.NodeBase in project n2a by frothga.

the class FixedParameterSpacePanel method getSelectedParamsAsBundles.

private List<ParameterBundle> getSelectedParamsAsBundles(TreePath[] paths) {
    List<ParameterBundle> bundles = new ArrayList<ParameterBundle>();
    for (TreePath path : paths) {
        List<ParameterDomain> domains = new ArrayList<ParameterDomain>();
        if (tabParamDomains.getSelectedIndex() == 0) {
            domains.add(new ParameterDomain("Model"));
        } else {
            domains.add(new ParameterDomain("Simulator"));
        }
        for (int p = 0; p < path.getPathCount(); p++) {
            Object u = ((TNode) path.getPathComponent(p)).getObject();
            if (u instanceof NodeSubdomain) {
                domains.add(((NodeSubdomain) u).getSubdomain());
            }
        }
        NodeBase uLeaf = ((TNode) path.getLastPathComponent()).getObject();
        if (uLeaf instanceof NodeParameter) {
            NodeParameter p = (NodeParameter) uLeaf;
            bundles.add(new ParameterBundle(domains, p.getParameter()));
        } else {
            // TODO: add all children?
            return null;
        }
    }
    return bundles;
}
Also used : NodeSubdomain(gov.sandia.umf.platform.ui.ensemble.tree.NodeSubdomain) NodeBase(replete.gui.controls.simpletree.NodeBase) TNode(replete.gui.controls.simpletree.TNode) TreePath(javax.swing.tree.TreePath) NodeParameter(gov.sandia.umf.platform.ui.ensemble.tree.NodeParameter) ArrayList(java.util.ArrayList) ParameterDomain(gov.sandia.n2a.parms.ParameterDomain) ParameterBundle(gov.sandia.n2a.parms.ParameterBundle)

Aggregations

ParameterBundle (gov.sandia.n2a.parms.ParameterBundle)2 ParameterDomain (gov.sandia.n2a.parms.ParameterDomain)2 NodeParameter (gov.sandia.umf.platform.ui.ensemble.tree.NodeParameter)2 NodeSubdomain (gov.sandia.umf.platform.ui.ensemble.tree.NodeSubdomain)2 ArrayList (java.util.ArrayList)2 TreePath (javax.swing.tree.TreePath)2 NodeBase (replete.gui.controls.simpletree.NodeBase)2 TNode (replete.gui.controls.simpletree.TNode)2 TransferableParameterBundles (gov.sandia.umf.platform.ui.ensemble.TransferableParameterBundles)1 Cursor (java.awt.Cursor)1 SimpleTree (replete.gui.controls.simpletree.SimpleTree)1