/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dlfcn.h>
#include <jni.h>
#include <sizecalc.h>
#include "sun_awt_UNIXToolkit.h"
#ifndef HEADLESS
#include "awt.h"
#include "gtk2_interface.h"
#endif /* !HEADLESS */
/*
* Class: sun_awt_UNIXToolkit
* Method: check_gtk
* Signature: ()Z
*/
{
#ifndef HEADLESS
return (jboolean)gtk2_check_version();
#else
return JNI_FALSE;
#endif /* !HEADLESS */
}
/*
* Class: sun_awt_UNIXToolkit
* Method: load_gtk
* Signature: ()Z
*/
{
#ifndef HEADLESS
#else
return JNI_FALSE;
#endif /* !HEADLESS */
}
/*
* Class: sun_awt_UNIXToolkit
* Method: unload_gtk
* Signature: ()Z
*/
{
#ifndef HEADLESS
return (jboolean)gtk2_unload();
#else
return JNI_FALSE;
#endif /* !HEADLESS */
}
{
if (this_class == NULL) {
"loadIconCallback", "([BIIIIIZ)V");
}
{
/* Copy the data array into a Java structure so we can pass it back. */
(jbyte *)pixbuf_data);
/* Release the pixbuf. */
(*fp_g_object_unref)(pixbuf);
/* Call the callback method to create the image on the Java side. */
}
return result;
}
/*
* Class: sun_awt_UNIXToolkit
* Method: load_gtk_icon
*
* This method assumes that GTK libs are present.
*/
{
#ifndef HEADLESS
int len;
{
return JNI_FALSE;
}
sizeof(char), len + 1);
if (filename_str == NULL) {
return JNI_FALSE;
}
/* Release the strings we've allocated. */
#else /* HEADLESS */
return JNI_FALSE;
#endif /* !HEADLESS */
}
/*
* Class: sun_awt_UNIXToolkit
* Method: load_stock_icon
*
* This method assumes that GTK libs are present.
*/
{
#ifndef HEADLESS
int len;
{
return JNI_FALSE;
}
sizeof(char), len + 1);
if (stock_id_str == NULL) {
return JNI_FALSE;
}
/* Detail isn't required so check for NULL. */
{
sizeof(char), len + 1);
if (detail_str == NULL) {
return JNI_FALSE;
}
}
/* Release the strings we've allocated. */
if (detail_str != NULL)
{
}
#else /* HEADLESS */
return JNI_FALSE;
#endif /* !HEADLESS */
}
/*
* Class: sun_awt_UNIXToolkit
* Method: nativeSync
* Signature: ()V
*/
{
#ifndef HEADLESS
AWT_LOCK();
AWT_UNLOCK();
#endif /* !HEADLESS */
}
/*
* Class: sun_awt_SunToolkit
* Method: closeSplashScreen
* Signature: ()V
*/
{
typedef void (*SplashClose_t)();
if (!hSplashLib) {
return;
}
"SplashClose");
if (splashClose) {
splashClose();
}
}
/*
* Class: sun_awt_UNIXToolkit
* Method: gtkCheckVersionImpl
*/
{
char *ret;
return TRUE;
}
return FALSE;
}