1 /*
   2  * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #include <jni.h>
  27 #include "gtk2_interface.h"
  28 #include "gnome_interface.h"
  29 
  30 int init(){
  31     return (gtk2_load() && gtk2_show_uri_load()) || gnome_load();
  32 }
  33 
  34 /*
  35  * Class:     sun_awt_X11_XDesktopPeer
  36  * Method:    init
  37  * Signature: ()Z
  38  */
  39 JNIEXPORT jboolean JNICALL Java_sun_awt_X11_XDesktopPeer_init
  40   (JNIEnv *env, jclass cls)
  41 {
  42     int init_ok = init();
  43     return init_ok ? JNI_TRUE : JNI_FALSE;
  44 }
  45 
  46 /*
  47  * Class:     sun_awt_X11_XDesktopPeer
  48  * Method:    gnome_url_show
  49  * Signature: (Ljava/lang/[B;)Z
  50  */
  51 JNIEXPORT jboolean JNICALL Java_sun_awt_X11_XDesktopPeer_gnome_1url_1show
  52   (JNIEnv *env, jobject obj, jbyteArray url_j)
  53 {
  54     gboolean success;
  55     const gchar* url_c;
  56 
  57     url_c = (char*)(*env)->GetByteArrayElements(env, url_j, NULL);
  58 
  59     if (fp_gtk_show_uri != NULL) {
  60         fp_gdk_threads_enter();
  61         success = fp_gtk_show_uri(NULL, url_c, GDK_CURRENT_TIME, NULL);
  62         fp_gdk_threads_leave();
  63     } else if (gnome_url_show != NULL) {
  64         // call gnome_url_show(const char* , GError**)
  65         success = (*gnome_url_show)(url_c, NULL);
  66     }
  67 
  68 
  69     (*env)->ReleaseByteArrayElements(env, url_j, (signed char*)url_c, 0);
  70 
  71     return success ? JNI_TRUE : JNI_FALSE;
  72 }