1 /* gnu_java_awt_peer_gtk_VolatileImage.c
2 Copyright (C) 2006 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
41 #include <gdk/gdktypes.h>
42 #include <gdk/gdkprivate.h>
44 #include <gdk-pixbuf/gdk-pixbuf.h>
45 #include <gdk-pixbuf/gdk-pixdata.h>
47 #include "gnu_java_awt_peer_gtk_GtkVolatileImage.h"
48 #include "cairographics2d.h"
52 * Creates a cairo surface, ARGB32, native ordering, premultiplied alpha.
54 JNIEXPORT jlong JNICALL
55 Java_gnu_java_awt_peer_gtk_GtkVolatileImage_init (JNIEnv
*env
,
56 jobject obj
__attribute__ ((__unused__
)),
58 jint width
, jint height
)
60 GtkWidget
*widget
= NULL
;
68 ptr
= NSA_GET_PTR (env
, peer
);
69 g_assert (ptr
!= NULL
);
71 widget
= GTK_WIDGET (ptr
);
72 g_assert (widget
!= NULL
);
73 pixmap
= gdk_pixmap_new( widget
->window
, width
, height
, -1 );
76 pixmap
= gdk_pixmap_new( NULL
, width
, height
,
77 gdk_rgb_get_visual()->depth
);
81 g_assert( pixmap
!= NULL
);
83 return PTR_TO_JLONG( pixmap
);
89 JNIEXPORT
void JNICALL
90 Java_gnu_java_awt_peer_gtk_GtkVolatileImage_destroy
91 (JNIEnv
*env
__attribute__((unused
)), jobject obj
__attribute__((unused
)),
94 GdkPixmap
* pixmap
= JLONG_TO_PTR(GdkPixmap
, pointer
);
98 g_object_unref( pixmap
);
104 * Gets all pixels in an array
106 JNIEXPORT jintArray JNICALL
107 Java_gnu_java_awt_peer_gtk_GtkVolatileImage_nativeGetPixels
108 (JNIEnv
*env
, jobject obj
, jlong pointer
)
110 /* jint *pixeldata, *jpixdata; */
115 int width
, height
, depth
, size
;
120 cls
= (*env
)->GetObjectClass (env
, obj
);
121 field
= (*env
)->GetFieldID (env
, cls
, "width", "I");
122 g_assert (field
!= 0);
123 width
= (*env
)->GetIntField (env
, obj
, field
);
125 field
= (*env
)->GetFieldID (env
, cls
, "height", "I");
126 g_assert (field
!= 0);
127 height
= (*env
)->GetIntField (env
, obj
, field
);
129 pixmap
= JLONG_TO_PTR(GdkPixmap
, pointer
);
130 g_assert(pixmap
!= NULL
);
134 /* get depth in bytes */
135 depth
= gdk_drawable_get_depth( pixmap
) >> 3;
136 size
= width
* height
;
137 jpixels
= (*env
)->NewIntArray ( env
, size
);
138 jpixdata
= (*env
)->GetIntArrayElements (env
, jpixels
, NULL
);
140 pixbuf
= gdk_pixbuf_new( GDK_COLORSPACE_RGB
, TRUE
, 8, width
, height
);
141 gdk_pixbuf_get_from_drawable( pixbuf
, pixmap
, NULL
, 0, 0, 0, 0, width
, height
);
145 pixels
= gdk_pixbuf_get_pixels(pixbuf
);
146 memcpy (jpixdata
, pixels
, size
* sizeof(jint
));
149 (*env
)->ReleaseIntArrayElements (env
, jpixels
, jpixdata
, 0);
159 JNIEXPORT
void JNICALL
160 Java_gnu_java_awt_peer_gtk_GtkVolatileImage_nativeCopyArea
161 (JNIEnv
*env
__attribute__((unused
)), jobject obj
__attribute__((unused
)),
162 jlong pointer
, jint x
, jint y
, jint w
, jint h
, jint dx
, jint dy
)
165 GdkPixmap
* pixmap
= JLONG_TO_PTR(GdkPixmap
, pointer
);
167 g_assert (pixmap
!= NULL
);
171 pixbuf
= gdk_pixbuf_new( GDK_COLORSPACE_RGB
, TRUE
, 8, w
, h
);
172 gdk_pixbuf_get_from_drawable( pixbuf
, pixmap
, NULL
, x
, y
, 0, 0, w
, h
);
173 gdk_draw_pixbuf (pixmap
, NULL
, pixbuf
,
174 0, 0, x
+ dx
, y
+ dy
,
176 GDK_RGB_DITHER_NORMAL
, 0, 0);
180 JNIEXPORT
void JNICALL
181 Java_gnu_java_awt_peer_gtk_GtkVolatileImage_nativeDrawVolatile
182 (JNIEnv
*env
__attribute__((unused
)), jobject obj
__attribute__((unused
)),
183 jlong pointer
, jlong srcptr
, jint x
, jint y
, jint w
, jint h
)
185 GdkPixmap
*dst
, *src
;
188 src
= JLONG_TO_PTR(GdkPixmap
, srcptr
);
189 dst
= JLONG_TO_PTR(GdkPixmap
, pointer
);
190 g_assert (src
!= NULL
);
191 g_assert (dst
!= NULL
);
195 gc
= gdk_gc_new( dst
);
196 gdk_draw_drawable(dst
,
202 g_object_unref( gc
);