/* gnu_java_awt_peer_gtk_ComponentGraphics.c Copyright (C) 2006, 2007 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the 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, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 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 GNU General Public License cover the whole combination. As a special 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 this 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 "jcl.h" #include "gtkpeer.h" #include #include #include #include #include #include #include #if HAVE_XRENDER #include #include #endif #include "gnu_java_awt_peer_gtk_ComponentGraphics.h" #include "cairographics2d.h" static short flush_scheduled = 0; static gboolean flush (gpointer data __attribute__((unused))) { gdk_threads_enter(); gdk_display_flush (gdk_display_get_default ()); flush_scheduled = 0; gdk_threads_leave(); return FALSE; } /* The minimum time period between calls to XFlush, in milliseconds. */ #define MINIMUM_FLUSH_PERIOD 20 /* schedule_flush must be called with the GDK lock held. */ static void schedule_flush () { if (!flush_scheduled) { g_timeout_add (MINIMUM_FLUSH_PERIOD, flush, NULL); flush_scheduled = 1; } } #if GTK_MAJOR_VERSION == 2 void cp_gtk_grab_current_drawable(GtkWidget *widget, GdkDrawable **draw, GdkWindow **win) { g_assert (widget != NULL); g_assert (draw != NULL); g_assert (win != NULL); *win = gtk_widget_get_window(widget); *draw = *win; gdk_window_get_internal_paint_info (*win, draw, 0, 0); } #elif GTK_MAJOR_VERSION == 3 void cp_gtk_grab_current_drawable(GtkWidget *widget, GdkWindow **win) { g_assert (widget != NULL); g_assert (win != NULL); *win = gtk_widget_get_window(widget); } #endif /** * Returns whether the XRender extension is supported */ JNIEXPORT jboolean JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_hasXRender (JNIEnv *env __attribute__ ((unused)), jclass cls __attribute__ ((unused))) { #if HAVE_XRENDER int ev = 0, err = 0; if( XRenderQueryExtension (gdk_x11_get_default_xdisplay (), &ev, &err) ) return JNI_TRUE; #endif return JNI_FALSE; } #if GTK_MAJOR_VERSION == 2 JNIEXPORT jlong JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_initState (JNIEnv *env, jobject obj __attribute__ ((unused)), jobject peer) { GdkDrawable *drawable; GtkWidget *widget; cairo_t *cr; void *ptr; gdk_threads_enter(); ptr = gtkpeer_get_widget (env, peer); g_assert (ptr != NULL); widget = GTK_WIDGET (ptr); g_assert (widget != NULL); drawable = gtk_widget_get_window(widget); g_assert (drawable != NULL); cr = gdk_cairo_create(drawable); g_assert(cr != NULL); gdk_threads_leave(); return PTR_TO_JLONG(cr); } #elif GTK_MAJOR_VERSION == 3 JNIEXPORT jlong JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_initState (JNIEnv *env, jobject obj __attribute__ ((unused)), jobject peer) { GdkWindow *drawable; GtkWidget *widget; cairo_t *cr; void *ptr; gdk_threads_enter(); ptr = gtkpeer_get_widget (env, peer); g_assert (ptr != NULL); widget = GTK_WIDGET (ptr); g_assert (widget != NULL); drawable = gtk_widget_get_window(widget); g_assert (drawable != NULL); cr = gdk_cairo_create(drawable); g_assert(cr != NULL); gdk_threads_leave(); return PTR_TO_JLONG(cr); } #endif JNIEXPORT jlong JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_initFromVolatile (JNIEnv *env __attribute__ ((unused)), jobject obj __attribute__ ((unused)), jlong ptr) { GdkWindow *drawable; gdk_threads_enter(); drawable = JLONG_TO_PTR(GdkWindow, ptr); g_assert (drawable != NULL); cairo_t *cr; cr = gdk_cairo_create (drawable); g_assert(cr != NULL); gdk_threads_leave(); return PTR_TO_JLONG(cr); } JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_start_1gdk_1drawing (JNIEnv *env __attribute__ ((unused)), jobject obj __attribute__ ((unused))) { gdk_threads_enter(); } JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_end_1gdk_1drawing (JNIEnv *env __attribute__ ((unused)), jobject obj __attribute__ ((unused))) { schedule_flush (); gdk_threads_leave(); } #if GTK_MAJOR_VERSION == 2 JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_copyAreaNative (JNIEnv *env, jobject obj __attribute__((unused)), jobject peer, jint x, jint y, jint w, jint h, jint dx, jint dy) { GdkPixbuf *pixbuf; GdkDrawable *drawable; GdkWindow *win; GtkWidget *widget = NULL; void *ptr = NULL; gdk_threads_enter(); ptr = gtkpeer_get_widget (env, peer); g_assert (ptr != NULL); widget = GTK_WIDGET (ptr); g_assert (widget != NULL); cp_gtk_grab_current_drawable (widget, &drawable, &win); g_assert (drawable != NULL); pixbuf = gdk_pixbuf_new( GDK_COLORSPACE_RGB, TRUE, 8, w, h ); gdk_pixbuf_get_from_drawable( pixbuf, drawable, NULL, x, y, 0, 0, w, h ); cairo_t *cr = gdk_cairo_create(drawable); gdk_cairo_set_source_pixbuf (cr, pixbuf, x + dx, y + dy); cairo_paint (cr); cairo_destroy (cr); gdk_threads_leave(); } #elif GTK_MAJOR_VERSION == 3 JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_copyAreaNative (JNIEnv *env, jobject obj __attribute__((unused)), jobject peer, jint x, jint y, jint w, jint h, jint dx, jint dy) { GdkPixbuf *pixbuf; GdkWindow *win; GtkWidget *widget = NULL; void *ptr = NULL; gdk_threads_enter(); ptr = gtkpeer_get_widget (env, peer); g_assert (ptr != NULL); widget = GTK_WIDGET (ptr); g_assert (widget != NULL); cp_gtk_grab_current_drawable (widget,&win); pixbuf = gdk_pixbuf_new( GDK_COLORSPACE_RGB, TRUE, 8, w, h ); pixbuf = gdk_pixbuf_get_from_window( win,x, y, w, h ); cairo_t *cr = gdk_cairo_create(win); gdk_cairo_set_source_pixbuf (cr, pixbuf, x + dx, y + dy); cairo_paint (cr); cairo_destroy (cr); gdk_threads_leave(); } #endif #if GTK_MAJOR_VERSION == 3 JNIEXPORT jobject JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_nativeGrab (JNIEnv *env, jclass cls __attribute__((unused)), jobject peer ) { GdkPixbuf *pixbuf; GdkWindow *win; gint w,h; GtkWidget *widget = NULL; void *ptr = NULL; gdk_threads_enter(); ptr = gtkpeer_get_widget (env, peer); g_assert (ptr != NULL); widget = GTK_WIDGET (ptr); g_assert (widget != NULL); cp_gtk_grab_current_drawable (widget, &win); w = gdk_window_get_width(win); h = gdk_window_get_height(win); pixbuf = gdk_pixbuf_new( GDK_COLORSPACE_RGB, TRUE, 8, w, h ); pixbuf = gdk_pixbuf_get_from_window( win, 0, 0, w, h ); g_object_ref( pixbuf ); cairo_t *cr = gdk_cairo_create (win); gdk_cairo_set_source_pixbuf (cr, pixbuf, 0, 0); cairo_paint (cr); cairo_destroy (cr); gdk_threads_leave(); return JCL_NewRawDataObject (env, pixbuf); } #elif GTK_MAJOR_VERSION == 2 JNIEXPORT jobject JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_nativeGrab (JNIEnv *env, jclass cls __attribute__((unused)), jobject peer ) { GdkPixbuf *pixbuf; GdkDrawable *drawable; GdkWindow *win; gint w,h; GtkWidget *widget = NULL; void *ptr = NULL; gdk_threads_enter(); ptr = gtkpeer_get_widget (env, peer); g_assert (ptr != NULL); widget = GTK_WIDGET (ptr); g_assert (widget != NULL); cp_gtk_grab_current_drawable (widget, &drawable, &win); g_assert (drawable != NULL); w = gdk_window_get_width(drawable); h = gdk_window_get_height(drawable); pixbuf = gdk_pixbuf_new( GDK_COLORSPACE_RGB, TRUE, 8, w, h ); gdk_pixbuf_get_from_drawable( pixbuf, drawable, NULL, 0, 0, 0, 0, w, h ); g_object_ref( pixbuf ); cairo_t *cr = gdk_cairo_create (drawable); gdk_cairo_set_source_pixbuf (cr, pixbuf, 0, 0); cairo_paint (cr); cairo_destroy (cr); gdk_threads_leave(); return JCL_NewRawDataObject (env, pixbuf); } #endif #if GTK_MAJOR_VERSION == 2 JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_drawVolatile (JNIEnv *env, jobject obj __attribute__ ((unused)), jobject peer, jlong img, jint x, jint y, jint w, jint h, jint cx, jint cy, jint cw, jint ch) { GdkPixmap *pixmap; GtkWidget *widget = NULL; GdkRectangle clip; void *ptr; gdk_threads_enter(); ptr = gtkpeer_get_widget (env, peer); g_assert (ptr != NULL); widget = GTK_WIDGET (ptr); g_assert (widget != NULL); pixmap = JLONG_TO_PTR(GdkPixmap, img); clip.x = cx; clip.y = cy; clip.width = cw; clip.height = ch; w = w; h = h; cairo_t *cr = gdk_cairo_create (gtk_widget_get_window(widget)); gdk_cairo_rectangle (cr,&clip); cairo_clip (cr); cairo_push_group (cr); gdk_cairo_set_source_pixmap (cr, pixmap, x, y); cairo_paint (cr); cairo_pop_group_to_source (cr); cairo_paint (cr); cairo_destroy (cr); schedule_flush (); gdk_threads_leave(); } #elif GTK_MAJOR_VERSION == 3 JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_ComponentGraphics_drawVolatile (JNIEnv *env, jobject obj __attribute__ ((unused)), jobject peer, jlong img, jint x, jint y, jint w, jint h, jint cx, jint cy, jint cw, jint ch) { GdkPixbuf *pixbuf; GtkWidget *widget = NULL; GdkRectangle clip; void *ptr; gdk_threads_enter(); ptr = gtkpeer_get_widget (env, peer); g_assert (ptr != NULL); widget = GTK_WIDGET (ptr); g_assert (widget != NULL); pixbuf = JLONG_TO_PTR(GdkPixbuf, img); clip.x = cx; clip.y = cy; clip.width = cw; clip.height = ch; w = w; h = h; cairo_t *cr = gdk_cairo_create (gtk_widget_get_window(widget)); gdk_cairo_rectangle (cr,&clip); cairo_clip (cr); cairo_push_group (cr); gdk_cairo_set_source_pixbuf (cr, pixbuf, x, y); cairo_paint (cr); cairo_pop_group_to_source (cr); cairo_paint (cr); cairo_destroy (cr); schedule_flush (); gdk_threads_leave(); } #endif