📄 gdkgraphics2d.java
字号:
/* GdkGraphics2D.java Copyright (C) 2003 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., 59 Temple Place, Suite 330, Boston, MA02111-1307 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 java.awt.*;import java.awt.geom.*;import java.awt.font.*;import java.awt.color.*;import java.awt.image.*;import java.awt.image.renderable.*;import java.util.HashMap;import java.util.Map;import java.text.AttributedCharacterIterator;import java.util.Map;import java.util.Stack;import java.lang.Integer;import gnu.java.awt.ClasspathToolkit;import gnu.java.awt.peer.ClasspathFontPeer;import gnu.classpath.Configuration;public class GdkGraphics2D extends Graphics2D{ ////////////////////////////////////// ////// State Management Methods ////// ////////////////////////////////////// static { if (Configuration.INIT_LOAD_LIBRARY) { System.loadLibrary("gtkpeer"); } if (GtkToolkit.useGraphics2D ()) initStaticState (); } native static void initStaticState (); private final int native_state = GtkGenericPeer.getUniqueInteger(); private Paint paint; private Stroke stroke; private Color fg; private Color bg; private Shape clip; private AffineTransform transform; private GtkComponentPeer component; private Font font; private RenderingHints hints; private Stack stateStack; native private int[] initState (GtkComponentPeer component); native private void initState (int width, int height); native private void copyState (GdkGraphics2D g); native public void dispose (); 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 (width, height); } GdkGraphics2D (GdkGraphics2D g) { paint = g.paint; stroke = g.stroke; hints = 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); setClip (clip); setTransform (transform); stateStack = new Stack(); } GdkGraphics2D (int width, int height) { initState (width, height); setColor(Color.black); setBackground (Color.black); setPaint (getColor()); setFont (new Font("SansSerif", Font.PLAIN, 12)); setTransform (new AffineTransform ()); setStroke (new BasicStroke ()); setRenderingHints (new HashMap ()); stateStack = new Stack(); } GdkGraphics2D (GtkComponentPeer component) { this.component = component; int rgb[] = initState (component); setColor (new Color (rgb[0], rgb[1], rgb[2])); setBackground (new Color (rgb[3], rgb[4], rgb[5])); setPaint (getColor()); setFont (new Font("SansSerif", Font.PLAIN, 12)); setTransform (new AffineTransform ()); setStroke (new BasicStroke ()); setRenderingHints (new HashMap ()); stateStack = new Stack (); } //////////////////////////////////// ////// 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 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); // simple passthroughs to cairo private native void cairoSave (); private native void cairoRestore (); private native void cairoSetMatrix (double m[]); private native void cairoSetFont (GdkClasspathFontPeer peer); private native void cairoShowGlyphs (int codes[], float positions[]); private native void cairoSetOperator (int cairoOperator); private native void cairoSetRGBColor (double red, double green, double blue); private native void cairoSetAlpha (double alpha); private native void cairoSetFillRule (int cairoFillRule); private native void cairoSetLineWidth (double width); private native void cairoSetLineCap (int cairoLineCap); private native void cairoSetLineJoin (int cairoLineJoin); private native void cairoSetDash (double dashes[], int ndash, double offset); private native void cairoSetMiterLimit (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; 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; } 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; } } private void stateSave () { stateStack.push (new DrawState (this)); cairoSave (); } private void stateRestore () { ((DrawState)(stateStack.pop ())).restore (this); cairoRestore (); } double x; double y; private void setPos (double nx, double ny) { x = nx; y = ny; } private void walkPath(PathIterator p) { double coords[] = new double[6]; cairoSetFillRule (p.getWindingRule ()); for ( ; ! p.isDone (); p.next()) { int seg = p.currentSegment (coords); switch(seg) { case PathIterator.SEG_MOVETO: setPos(coords[0], coords[1]); cairoMoveTo (coords[0], coords[1]); break; case PathIterator.SEG_LINETO: setPos(coords[0], coords[1]); cairoLineTo (coords[0], coords[1]); break; case PathIterator.SEG_QUADTO: // splitting a quadratic bezier into a cubic: // see: http://pfaedit.sourceforge.net/bezier.html double x1 = x + (2.0/3.0) * (coords[0] - x); double y1 = y + (2.0/3.0) * (coords[1] - y); double x2 = x1 + (1.0/3.0) * (coords[2] - x); double y2 = y1 + (1.0/3.0) * (coords[3] - y); setPos(coords[2], coords[3]); cairoCurveTo (x1, y1, x2, y2, coords[2], coords[3]); break; case PathIterator.SEG_CUBICTO: setPos(coords[4], coords[5]); cairoCurveTo (coords[0], coords[1], coords[2], coords[3], coords[4], coords[5]); break; case PathIterator.SEG_CLOSE: cairoClosePath (); break; } } } private Map getDefaultHints() { HashMap defaultHints = new HashMap (); defaultHints.put (RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_DEFAULT); defaultHints.put (RenderingHints.KEY_STROKE_CONTROL, RenderingHints.VALUE_STROKE_DEFAULT); defaultHints.put (RenderingHints.KEY_FRACTIONALMETRICS, RenderingHints.VALUE_FRACTIONALMETRICS_OFF); defaultHints.put (RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF); defaultHints.put (RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_DEFAULT); return defaultHints; } ////////////////////////////////////////////////// ////// Implementation of Graphics2D Methods ////// ////////////////////////////////////////////////// public void draw (Shape s) { if (stroke != null && !(stroke instanceof BasicStroke)) { fill (stroke.createStrokedShape (s)); return; } stateSave (); cairoNewPath (); boolean normalize; normalize = hints.containsValue (RenderingHints.VALUE_STROKE_NORMALIZE) || hints.containsValue (RenderingHints.VALUE_STROKE_DEFAULT); if (normalize) translate (0.5,0.5); if (s instanceof Rectangle2D) { Rectangle2D r = (Rectangle2D)s; cairoRectangle (r.getX (), r.getY (), r.getWidth (), r.getHeight ()); } else walkPath (s.getPathIterator (null)); cairoStroke (); if (normalize) translate (-0.5,-0.5); stateRestore (); } public void fill (Shape s) { stateSave(); cairoNewPath (); if (s instanceof Rectangle2D) { Rectangle2D r = (Rectangle2D)s; cairoRectangle (r.getX (), r.getY (), r.getWidth (), r.getHeight ()); } else walkPath (s.getPathIterator (null)); cairoFill (); stateRestore (); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -