/* * java-gnome, a UI library for writing GTK and GNOME programs from Java! * * Copyright © 2008-2011 Operational Dynamics Consulting, Pty Ltd * * The code in this file, and the program it is a part of, is made available * to you by its authors as open source software: you can redistribute it * and/or modify it under the terms of the GNU General Public License version * 2 ("GPL") as published by the Free Software Foundation. * * 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 GPL for more details. * * You should have received a copy of the GPL along with this program. If not, * see http://www.gnu.org/licenses/. The authors of this program may be * contacted through http://java-gnome.sourceforge.net/. * * Linking this library statically or dynamically with other modules is making * a combined work based on this library. Thus, the terms and conditions of * the GPL cover the whole combination. As a special exception (the * "Claspath Exception"), the copyright holders of this library give you * permission to link this library with independent modules to produce an * executable, regardless of the license terms of these independent modules, * and to copy and distribute the resulting executable under terms of your * choice, provided that you also meet, for each linked independent module, * the terms and conditions of the license of that module. An independent * module is a module which is not derived from or based on this library. If * you modify this library, you may extend the Classpath Exception to your * version of the library, but you are not obligated to do so. If you do not * wish to do so, delete this exception statement from your version. */ #include #include #include #include "bindings_java.h" #include "org_freedesktop_cairo_GdkCairoSupport.h" /** * This accesses gdk_cairo_create(), a utility function in GDK allowing you to * get the Cairo cairo_t for a given GdkWindow. We have exposed this in our * bindings as a constructor to Context. */ JNIEXPORT jlong JNICALL Java_org_freedesktop_cairo_GdkCairoSupport_gdk_1cairo_1create ( JNIEnv* env, jclass cls, jlong _window ) { GdkWindow* window; cairo_t* result; // convert window window = (GdkWindow*) _window; // call function result = gdk_cairo_create(window); // cleanup parameter window // and finally return (jlong) result; } JNIEXPORT void JNICALL Java_org_freedesktop_cairo_GdkCairoSupport_gdk_1cairo_1set_1source_1pixbuf ( JNIEnv* env, jclass cls, jlong _context, jlong _pixbuf, jdouble _x, jdouble _y ) { cairo_t* context; GdkPixbuf* pixbuf; double x; double y; // convert context context = (cairo_t*) _context; // convert pixbuf pixbuf = (GdkPixbuf*) _pixbuf; // convert x x = (double) _x; // convert x y = (double) _y; // call function gdk_cairo_set_source_pixbuf(context, pixbuf, x, y); // cleanup parameter context // cleanup parameter pixbuf // cleanup parameter x // cleanup parameter y } JNIEXPORT void JNICALL Java_org_freedesktop_cairo_GdkCairoSupport_gdk_1cairo_1set_1source_1rgba ( JNIEnv* env, jclass cls, jlong _context, jlong _rgba ) { cairo_t* context; GdkRGBA* rgba; // convert context context = (cairo_t*) _context; // convert rgba rgba = (GdkRGBA*) _rgba; // call function gdk_cairo_set_source_rgba(context, rgba); // cleanup parameter context // cleanup parameter pixbuf }