Merge from the pain train
[official-gcc.git] / libjava / jni / gtk-peer / gnu_java_awt_peer_gtk_GtkGenericPeer.c
blob49ccffcf660455a1904e633a966e5e795a88c052
1 /* gtkgenericpeer.c -- Native implementation of GtkGenericPeer
2 Copyright (C) 1998, 1999, 2002, 2004 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)
9 any later version.
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., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
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
24 combination.
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. */
39 #include "gtkpeer.h"
40 #include "gnu_java_awt_peer_gtk_GtkGenericPeer.h"
42 JNIEXPORT void JNICALL
43 Java_gnu_java_awt_peer_gtk_GtkGenericPeer_dispose
44 (JNIEnv *env, jobject obj)
46 void *ptr;
48 ptr = NSA_GET_PTR (env, obj);
50 gdk_threads_enter ();
52 /* For now the native state for any object must be a widget.
53 However, a subclass could override dispose() if required. */
54 gtk_widget_destroy (GTK_WIDGET (ptr));
56 gdk_threads_leave ();
58 /* Remove entries from state tables */
59 NSA_DEL_GLOBAL_REF (env, obj);
60 NSA_DEL_PTR (env, obj);
62 /*
63 * Wake up the main thread, to make sure it re-checks the window
64 * destruction condition.
67 g_main_context_wakeup (NULL);
70 JNIEXPORT void JNICALL
71 Java_gnu_java_awt_peer_gtk_GtkGenericPeer_gtkWidgetModifyFont
72 (JNIEnv *env, jobject obj, jstring name, jint style, jint size)
74 const char *font_name;
75 void *ptr;
76 PangoFontDescription *font_desc;
78 ptr = NSA_GET_PTR (env, obj);
80 font_name = (*env)->GetStringUTFChars (env, name, NULL);
82 gdk_threads_enter();
84 font_desc = pango_font_description_from_string (font_name);
85 pango_font_description_set_size (font_desc, size * dpi_conversion_factor);
87 if (style & AWT_STYLE_BOLD)
88 pango_font_description_set_weight (font_desc, PANGO_WEIGHT_BOLD);
90 if (style & AWT_STYLE_ITALIC)
91 pango_font_description_set_style (font_desc, PANGO_STYLE_OBLIQUE);
93 gtk_widget_modify_font (GTK_WIDGET(ptr), font_desc);
95 pango_font_description_free (font_desc);
97 gdk_threads_leave();
99 (*env)->ReleaseStringUTFChars (env, name, font_name);