⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 swtpaintcanvas.java

📁 java图形利器
💻 JAVA
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. * * Project Info:  http://www.jfree.org/jfreechart/index.html * * This library is free software; you can redistribute it and/or modify it  * under the terms of the GNU Lesser General Public License as published by  * the Free Software Foundation; either version 2.1 of the License, or  * (at your option) any later version. * * This library 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 Lesser General Public  * License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,  * USA.   * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] * * ------------------- * SwtPaintCanvas.java * ------------------- * (C) Copyright 2000-2005, by Object Refinery Limited. * * Original Author:  Henry Proudhon (henry.proudhon AT insa-lyon.fr); * Contributor(s): * * Changes * ------- * 4 Aug 2006 : New class (HP); */package org.jfree.experimental.swt;import org.eclipse.swt.SWT;import org.eclipse.swt.events.PaintEvent;import org.eclipse.swt.events.PaintListener;import org.eclipse.swt.graphics.Color;import org.eclipse.swt.widgets.Canvas;import org.eclipse.swt.widgets.Composite;/** * A paint canvas. */public class SWTPaintCanvas extends Canvas{    private Color myColor;        /**     * Creates a new instance.     *      * @param parent  the parent.     * @param style  the style.     * @param color  the color.     */    public SWTPaintCanvas(Composite parent, int style, Color color) {        this(parent, style);        this.setColor(color);    }        /**     * Creates a new instance.     *      * @param parent  the parent.     * @param style  the style.     */    public SWTPaintCanvas(Composite parent, int style) {        super(parent, style);        addPaintListener(new PaintListener() {            public void paintControl(PaintEvent e) {                e.gc.setForeground(e.gc.getDevice().getSystemColor(                        SWT.COLOR_BLACK));                e.gc.setBackground(myColor);                e.gc.fillRectangle(getClientArea());                e.gc.drawRectangle(getClientArea().x, getClientArea().y,                         getClientArea().width - 1, getClientArea().height - 1);            }        });    }        /**     * Sets the color.     *      * @param color  the color.     */    public void setColor(Color color) {        if (this.myColor != null) {            myColor.dispose();        }        //this.myColor = new Color( getDisplay(), color.getRGB() );        this.myColor = color;    }    /**     * Returns the color.     *      * @return The color.     */    public Color getColor() {        return myColor;    }        /**     * Overridden to do nothing.     *      * @param c  the color.     */    public void setBackground(Color c) {        return;    }    /**     * Overridden to do nothing.     *      * @param c  the color.     */    public void setForeground(Color c) {        return;    }        /**     * Frees resources.     */    public void dispose() {        myColor.dispose();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -