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

📄 gdkgraphics2d.java

📁 gcc的组建
💻 JAVA
📖 第 1 页 / 共 4 页
字号:
/* GdkGraphics2D.java --   Copyright (C) 2003, 2004, 2005  Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package gnu.java.awt.peer.gtk;import gnu.classpath.Configuration;import gnu.java.awt.ClasspathToolkit;import java.awt.AlphaComposite;import java.awt.BasicStroke;import java.awt.Color;import java.awt.Composite;import java.awt.Dimension;import java.awt.Font;import java.awt.FontMetrics;import java.awt.GradientPaint;import java.awt.Graphics;import java.awt.Graphics2D;import java.awt.GraphicsConfiguration;import java.awt.Image;import java.awt.Paint;import java.awt.Rectangle;import java.awt.RenderingHints;import java.awt.Shape;import java.awt.Stroke;import java.awt.TexturePaint;import java.awt.Toolkit;import java.awt.font.FontRenderContext;import java.awt.font.GlyphVector;import java.awt.geom.AffineTransform;import java.awt.geom.Arc2D;import java.awt.geom.GeneralPath;import java.awt.geom.NoninvertibleTransformException;import java.awt.geom.PathIterator;import java.awt.geom.Point2D;import java.awt.geom.Rectangle2D;import java.awt.image.AffineTransformOp;import java.awt.image.BufferedImage;import java.awt.image.BufferedImageOp;import java.awt.image.ColorModel;import java.awt.image.CropImageFilter;import java.awt.image.DataBuffer;import java.awt.image.DataBufferInt;import java.awt.image.DirectColorModel;import java.awt.image.FilteredImageSource;import java.awt.image.ImageObserver;import java.awt.image.ImagingOpException;import java.awt.image.MultiPixelPackedSampleModel;import java.awt.image.Raster;import java.awt.image.RenderedImage;import java.awt.image.SampleModel;import java.awt.image.WritableRaster;import java.awt.image.renderable.RenderContext;import java.awt.image.renderable.RenderableImage;import java.text.AttributedCharacterIterator;import java.util.HashMap;import java.util.Map;import java.util.Stack;public class GdkGraphics2D extends Graphics2D{  //////////////////////////////////////  ////// State Management Methods //////  //////////////////////////////////////  static   {    if (! Configuration.GTK_CAIRO_ENABLED)      throw new Error("Graphics2D not implemented. "		      + "Cairo was not found or disabled at configure time");    if (Configuration.INIT_LOAD_LIBRARY)      System.loadLibrary("gtkpeer");    initStaticState();  }    static native void initStaticState();    private final int native_state = GtkGenericPeer.getUniqueInteger();    // These are package-private to avoid accessor methods.  Paint paint;  Stroke stroke;  Color fg;  Color bg;  Shape clip;  AffineTransform transform;  private GtkComponentPeer component;  // This is package-private to avoid an accessor method.  Font font;  private RenderingHints hints;  private BufferedImage bimage;  private boolean pixelConversionRequired;  private int[] pixelBuffer;  // This is package-private to avoid an accessor method.  Composite comp;  private Stack stateStack;  private native void initStateUnlocked(GtkComponentPeer component);  private native void initState(GtkComponentPeer component);  private native void initState(int width, int height);  private native void initState(int[] pixes, int width, int height);  private native void copyState(GdkGraphics2D g);  public native void dispose();  private native void cairoSurfaceSetFilter(int filter);  private native void cairoSurfaceSetFilterUnlocked(int filter);  native void connectSignals(GtkComponentPeer component);  public void finalize()  {    dispose();  }  public Graphics create()  {    return new GdkGraphics2D(this);  }  public Graphics create(int x, int y, int width, int height)  {    return new GdkGraphics2D(this, x, y, width, height);  }  private void fail_g2d ()  {    System.err.println ("Attempted to instantiate GdkGraphics2D"			+ " but Graphics2D not enabled.  Try again with"			+ " -Dgnu.java.awt.peer.gtk.Graphics=Graphics2D");    System.exit (1);  }  GdkGraphics2D(GdkGraphics2D g)  {    if (!GtkToolkit.useGraphics2D ())      fail_g2d ();    paint = g.paint;    stroke = g.stroke;    setRenderingHints(g.hints);    if (g.fg.getAlpha() != -1)      fg = new Color(g.fg.getRed(), g.fg.getGreen(), g.fg.getBlue(),                     g.fg.getAlpha());    else      fg = new Color(g.fg.getRGB());    if (g.bg.getAlpha() != -1)      bg = new Color(g.bg.getRed(), g.bg.getGreen(), g.bg.getBlue(),                     g.bg.getAlpha());    else      bg = new Color(g.bg.getRGB());    if (g.clip == null)      clip = null;    else      clip = new Rectangle(g.getClipBounds());    if (g.transform == null)      transform = new AffineTransform();    else      transform = new AffineTransform(g.transform);    font = g.font;    component = g.component;    copyState(g);    setColor(fg);    setBackground(bg);    setPaint(paint);    setStroke(stroke);    setTransform(transform);    setClip(clip);    stateStack = new Stack();  }  GdkGraphics2D(GdkGraphics2D g, int x, int y, int widht, int height)  {    this(g);    translate(x, y);    clipRect(0, 0, widht, height);  }  GdkGraphics2D(int width, int height)  {    if (!GtkToolkit.useGraphics2D ())      fail_g2d ();    initState(width, height);    setColor(Color.black);    setBackground(new Color(0, 0, 0, 0));    setPaint(getColor());    setFont(new Font("SansSerif", Font.PLAIN, 12));    setTransform(new AffineTransform());    setStroke(new BasicStroke());    setRenderingHints(getDefaultHints());    stateStack = new Stack();  }  GdkGraphics2D(GtkComponentPeer component)  {    if (!GtkToolkit.useGraphics2D ())      fail_g2d ();    this.component = component;        if (component.isRealized())      initComponentGraphics2D();    else      connectSignals(component);  }  void initComponentGraphics2D()  {    initState(component);    setColor(component.awtComponent.getForeground());    setBackground(component.awtComponent.getBackground());    setPaint(getColor());    setTransform(new AffineTransform());    setStroke(new BasicStroke());    setRenderingHints(getDefaultHints());    setFont(new Font("SansSerif", Font.PLAIN, 12));    stateStack = new Stack();  }  void initComponentGraphics2DUnlocked()  {    initStateUnlocked(component);    setColorUnlocked(component.awtComponent.getForeground());    setBackgroundUnlocked(component.awtComponent.getBackground());    setPaintUnlocked(getColorUnlocked());    setTransformUnlocked(new AffineTransform());    setStrokeUnlocked(new BasicStroke());    setRenderingHintsUnlocked(getDefaultHints());    setFontUnlocked(new Font("SansSerif", Font.PLAIN, 12));    stateStack = new Stack();  }  GdkGraphics2D(BufferedImage bimage)  {    this.bimage = bimage;    this.pixelBuffer = findSimpleIntegerArray(bimage.getColorModel(),                                              bimage.getRaster());    if (this.pixelBuffer == null)      {	this.pixelBuffer = new int[bimage.getRaster().getWidth() * bimage.getRaster()	                                                                 .getHeight()];	this.pixelConversionRequired = true;      }    else      {        this.pixelConversionRequired = false;      }    initState(this.pixelBuffer, bimage.getWidth(), bimage.getHeight());    setColor(Color.black);    setBackground(new Color(0, 0, 0, 0));    setPaint(getColor());    setFont(new Font("SansSerif", Font.PLAIN, 12));    setTransform(new AffineTransform());    setStroke(new BasicStroke());    setRenderingHints(getDefaultHints());    stateStack = new Stack();    // draw current buffered image to the pixmap associated     // with it, if the image is not equal to our paint buffer.    if (pixelConversionRequired)      drawImage(bimage, new AffineTransform(1, 0, 0, 1, 0, 0), bg, null);  }  ////////////////////////////////////  ////// Native Drawing Methods //////  ////////////////////////////////////  // GDK drawing methods  private native void gdkDrawDrawable(GdkGraphics2D other, int x, int y);  // drawing utility methods  private native void drawPixels(int[] pixels, int w, int h, int stride,                                 double[] i2u);  private native void setTexturePixelsUnlocked(int[] pixels, int w, int h, int stride);  private native void setTexturePixels(int[] pixels, int w, int h, int stride);  private native void setGradient(double x1, double y1, double x2, double y2,                                  int r1, int g1, int b1, int a1, int r2,                                  int g2, int b2, int a2, boolean cyclic);  private native void setGradientUnlocked(double x1, double y1, double x2, double y2,                                  int r1, int g1, int b1, int a1, int r2,                                  int g2, int b2, int a2, boolean cyclic);  // simple passthroughs to cairo  private native void cairoSave();  private native void cairoRestore();  private native void cairoSetMatrix(double[] m);  private native void cairoSetMatrixUnlocked(double[] m);  private native void cairoSetOperator(int cairoOperator);  private native void cairoSetRGBAColor(double red, double green,                                        double blue, double alpha);  private native void cairoSetRGBAColorUnlocked(double red, double green,                                        double blue, double alpha);  private native void cairoSetFillRule(int cairoFillRule);  private native void cairoSetLineWidth(double width);  private native void cairoSetLineWidthUnlocked(double width);  private native void cairoSetLineCap(int cairoLineCap);  private native void cairoSetLineCapUnlocked(int cairoLineCap);  private native void cairoSetLineJoin(int cairoLineJoin);  private native void cairoSetLineJoinUnlocked(int cairoLineJoin);  private native void cairoSetDash(double[] dashes, int ndash, double offset);  private native void cairoSetDashUnlocked(double[] dashes, int ndash, double offset);  private native void cairoSetMiterLimit(double limit);  private native void cairoSetMiterLimitUnlocked(double limit);  private native void cairoNewPath();  private native void cairoMoveTo(double x, double y);  private native void cairoLineTo(double x, double y);  private native void cairoCurveTo(double x1, double y1, double x2, double y2,                                   double x3, double y3);  private native void cairoRelMoveTo(double dx, double dy);  private native void cairoRelLineTo(double dx, double dy);  private native void cairoRelCurveTo(double dx1, double dy1, double dx2,                                      double dy2, double dx3, double dy3);  private native void cairoRectangle(double x, double y, double width,                                     double height);  private native void cairoClosePath();  private native void cairoStroke();  private native void cairoFill();  private native void cairoClip();  /////////////////////////////////////////////  ////// General Drawing Support Methods //////  /////////////////////////////////////////////  private class DrawState  {    private Paint paint;    private Stroke stroke;    private Color fg;    private Color bg;    private Shape clip;    private AffineTransform transform;    private Font font;    private Composite comp;    DrawState(GdkGraphics2D g)    {      this.paint = g.paint;      this.stroke = g.stroke;      this.fg = g.fg;      this.bg = g.bg;      this.clip = g.clip;      if (g.transform != null)	this.transform = (AffineTransform) g.transform.clone();      this.font = g.font;      this.comp = g.comp;    }    public void restore(GdkGraphics2D g)    {      g.paint = this.paint;      g.stroke = this.stroke;      g.fg = this.fg;      g.bg = this.bg;      g.clip = this.clip;      g.transform = this.transform;      g.font = this.font;      g.comp = this.comp;    }  }  private void stateSave()  {    stateStack.push(new DrawState(this));    cairoSave();  }

⌨️ 快捷键说明

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