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

edu.cmu.tetradapp.app.NoteDisplayComp Maven / Gradle / Ivy

There is a newer version: 7.6.6
Show 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.app;

import edu.cmu.tetradapp.workbench.DisplayNodeUtils;

import javax.swing.*;
import java.awt.*;

/**
 * Provides a modified appearance for session nodes to be used for notes.
 *
 * @author josephramsey
 */
public class NoteDisplayComp extends JComponent implements SessionDisplayComp {

    /**
     * The colors
     */
    private static final Color BORDER_COLOR = new Color(148, 152, 177);
    private static final Color BACKGROUND_COLOR = new Color(255, 255, 219);
    /**
     * The Jlable that contains the name
     */
    private final JLabel name = new JLabel("Note");
    /**
     * States whether the component is selected or not.
     */
    private boolean selected;


    /**
     * Constructs the Node display.
     */
    public NoteDisplayComp() {
        buildComponents();
    }


    /**
     * Paints the component.
     */
    public void paint(Graphics g) {
        int width = getSize().width;
        int height = getSize().height;
        g.setColor(NoteDisplayComp.BACKGROUND_COLOR);
        g.fillRect(0, 0, width, height);

        int y = this.name.getSize().height;
        y += 2;
        g.setColor(NoteDisplayComp.BORDER_COLOR);
        while (y < height) {
            g.drawLine(0, y, width, y);
            y += 5;
        }
        // draw the border.
        g.setColor(NoteDisplayComp.BORDER_COLOR);
        g.drawRect(0, 0, width - 1, height - 1);

        super.paint(g);
    }


    /**
     * Sets the acronym of the component.
     */
    public void setAcronym(String acronym) {

    }

    /**
     * States whether this comp is selected.
     *
     * @return true iff the display is selected.
     */
    public boolean isSelected() {
        return this.selected;
    }

    /**
     * Sets the comp as selected.
     */
    public void setSelected(boolean selected) {
        this.selected = selected;
    }

    /**
     * Does nothing.
     */
    public void setHasModel(boolean b) {
        // Ignore.
    }


    public void setName(String name) {
        super.setName(name);
        this.name.setText(name);
        //buildComponents();
    }


    private void buildComponents() {
        removeAll();
        setLayout(new BorderLayout());
        setBackground(NoteDisplayComp.BACKGROUND_COLOR);
        setFont(DisplayNodeUtils.getFont());

        Box b = Box.createVerticalBox();
        b.add(Box.createVerticalStrut(2));

        Box b2 = Box.createHorizontalBox();
        b2.add(Box.createHorizontalStrut(5));
        b2.add(this.name);
        b2.add(Box.createHorizontalStrut(5));
        b2.add(Box.createHorizontalGlue());
        b.add(b2);

        b.add(Box.createVerticalStrut(65));

        add(b, BorderLayout.CENTER);
        revalidate();
        repaint();
    }


}







© 2015 - 2025 Weber Informatics LLC | Privacy Policy