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

com.scudata.ide.spl.control.CornerPanel Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.ide.spl.control;

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;

import javax.swing.JPanel;

import com.scudata.ide.spl.GCSpl;

/**
 * ???????
 *
 */
public class CornerPanel extends JPanel {
	private static final long serialVersionUID = 1L;
	/**
	 * ????ؼ?
	 */
	private SplControl control;
	/**
	 * ?Ƿ???Ա༭
	 */
	private boolean editable = true;

	/**
	 * ???캯??
	 * 
	 * @param control
	 *            ????ؼ?
	 */
	public CornerPanel(SplControl control) {
		this(control, true);
	}

	/**
	 * ???캯??
	 * 
	 * @param control
	 *            ????ؼ?
	 * @param editable
	 *            ?Ƿ???Ա༭
	 */
	public CornerPanel(SplControl control, boolean editable) {
		this.control = control;
		this.editable = editable;
		int w = RowHeaderPanel.getW(control);
		int h = (int) (GCSpl.DEFAULT_ROW_HEIGHT * control.scale);
		setPreferredSize(new Dimension(w + 1, h + 1));
	}

	/**
	 * ???????
	 */
	public void paint(Graphics g) {
		int w = RowHeaderPanel.getW(control);
		int h = (int) (GCSpl.DEFAULT_ROW_HEIGHT * control.scale);
		g.clearRect(0, 0, w + 1, h + 1);
		Color c = Color.lightGray;
		if (control.m_cornerSelected) {
			c = new Color(0x99, 0x99, 0x66);
		}
		if (editable) {
			ControlUtils.gradientPaint(g, 0, 0, w, h, c);
		} else {
			g.clearRect(0, 0, w, h);
		}
		g.setColor(new Color(236, 236, 236));
		g.drawLine(0, 0, w, 0);
		g.drawLine(0, 0, 0, h);
		g.setColor(Color.darkGray);
		g.drawLine(w, h, 0, h);
		g.drawLine(w, h, w, 0);
		g.dispose();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy