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

edu.cmu.tetradapp.editor.Tier Maven / Gradle / Ivy

The newest version!
///////////////////////////////////////////////////////////////////////////////
// For information as to what this class does, see the Javadoc, below.       //
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,       //
// 2007, 2008, 2009, 2010, 2014, 2015, 2022 by Peter Spirtes, Richard        //
// Scheines, Joseph Ramsey, and Clark Glymour.                               //
//                                                                           //
// This program is free software; you can redistribute it and/or modify      //
// it under the terms of the GNU General Public License as published by      //
// the Free Software Foundation; either version 2 of the License, or         //
// (at your option) any later version.                                       //
//                                                                           //
// This program is distributed in the hope that it will be useful,           //
// but WITHOUT ANY WARRANTY; without even the implied warranty of            //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             //
// GNU General Public License for more details.                              //
//                                                                           //
// You should have received a copy of the GNU General Public License         //
// along with this program; if not, write to the Free Software               //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA //
///////////////////////////////////////////////////////////////////////////////

package edu.cmu.tetradapp.editor;

import edu.cmu.tetrad.data.Knowledge;

import javax.swing.*;
import java.awt.*;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

/**
 * The actual area which displays a knowledge constraint
 *
 * @author Shane Harwood
 */
class Tier extends JPanel {

    private static Knowledge know;
    private final TierList knowList;    //knowlist constraint is contained in
    private final int num;
    private final String[] tierNames;
    private final JPanel view = new JPanel();
    private final JScrollPane jsp;

    /**
     * A panel with a tier name, and all vars in that tier.
     *
     * @param kn        a {@link edu.cmu.tetradapp.editor.TierList} object
     * @param thisTier  a int
     * @param tierNames an array of {@link java.lang.String} objects
     */
    public Tier(TierList kn, int thisTier, String[] tierNames) {

        this.jsp = new JScrollPane(ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER,
                ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);

        this.knowList = kn;

        this.num = thisTier;

        this.tierNames = tierNames;

        setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
        this.jsp.setViewportView(this.view);
    }

    /**
     * 

setKnowledge.

* * @param k a {@link edu.cmu.tetrad.data.Knowledge} object */ public static void setKnowledge(Knowledge k) { Tier.know = k; } /** * tell tier what info it should hold and represent, used for constant updating of tiers */ public void loadInfo() { removeAll(); this.view.removeAll(); add(new JLabel("Tier " + this.num)); add(this.jsp); List t = Tier.know.getTier(this.num); this.view.setLayout(new BoxLayout(this.view, BoxLayout.X_AXIS)); Iterator it = t.iterator(); String temp; while (it.hasNext()) { temp = (String) it.next(); String[] names = new String[this.tierNames.length + 1]; names[0] = temp; System.arraycopy(this.tierNames, 0, names, 1, this.tierNames.length); JComboBox cBox = new JComboBox(names); cBox.setMaximumSize(new Dimension(80, 50)); this.view.add(cBox); cBox.addActionListener(e -> { JComboBox cb = (JComboBox) e.getSource(); int newTier = cb.getSelectedIndex() - 2; String s = (String) cb.getItemAt(0); if (newTier == -2) { return; } //know.unspecifyTier(s); Tier.know.removeFromTiers(s); if (newTier >= 0) { Tier.know.addToTier(newTier, s); } Tier.this.knowList.refreshInfo(); }); } } /** *

setUnspecified.

* * @param varNames a {@link java.util.List} object */ public void setUnspecified(List varNames) { removeAll(); this.view.removeAll(); add(new JLabel("Unspecified")); add(this.jsp); List vNames = new LinkedList<>(varNames); System.out.println("edit unspecified list"); System.out.println("vNames Contains: " + vNames); for (int i = 0; i < Tier.know.getNumTiers(); i++) { System.out.println("Tier " + i); List t = Tier.know.getTier(i); System.out.println("Tier contains: " + t); Iterator it = t.iterator(); String temp; while (it.hasNext()) { temp = (String) it.next(); System.out.println("Try removing: " + temp); vNames.remove(temp); } } System.out.println("vNames now Contains: " + vNames); this.view.setLayout(new BoxLayout(this.view, BoxLayout.X_AXIS)); Iterator it = vNames.iterator(); String temp; while (it.hasNext()) { temp = (String) it.next(); String[] names = new String[this.tierNames.length + 1]; names[0] = temp; System.arraycopy(this.tierNames, 0, names, 1, this.tierNames.length); JComboBox cBox = new JComboBox(names); cBox.setMaximumSize(new Dimension(80, 50)); this.view.add(cBox); cBox.addActionListener(e -> { JComboBox cb = (JComboBox) e.getSource(); int newTier = cb.getSelectedIndex() - 2; String s = (String) cb.getItemAt(0); if (newTier == -2) { return; } //know.unspecifyTier(s); Tier.know.removeFromTiers(s); if (newTier >= 0) { Tier.know.addToTier(newTier, s); } Tier.this.knowList.refreshInfo(); }); } } // ======= The following make sure constraint is the proper size ======// /** *

getPreferredSize.

* * @return a {@link java.awt.Dimension} object */ public Dimension getPreferredSize() { return new Dimension(1000, 60); } /** *

getMinimumSize.

* * @return a {@link java.awt.Dimension} object */ public Dimension getMinimumSize() { return new Dimension(250, 60); } /** *

getMaximumSize.

* * @return a {@link java.awt.Dimension} object */ public Dimension getMaximumSize() { return new Dimension(2000, 60); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy