library.webkitgtk_structs.c Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.swt.gtk.linux.aarch64 Show documentation
Show all versions of org.eclipse.swt.gtk.linux.aarch64 Show documentation
Standard Widget Toolkit for GTK on aarch64
The newest version!
/*******************************************************************************
* Copyright (c) 2009, 2019 IBM Corporation and others. All rights reserved.
* The contents of this file are made available under the terms
* of the GNU Lesser General Public License (LGPL) Version 2.1 that
* accompanies this distribution (lgpl-v21.txt). The LGPL is also
* available at http://www.gnu.org/licenses/lgpl.html. If the version
* of the LGPL at http://www.gnu.org is different to the version of
* the LGPL accompanying this distribution and there is any conflict
* between the two license versions, the terms of the LGPL accompanying
* this distribution shall govern.
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/* Note: This file was auto-generated by org.eclipse.swt.tools.internal.JNIGenerator */
/* DO NOT EDIT - your changes will be lost. */
#include "swt.h"
#include "webkitgtk_structs.h"
#ifndef NO_GdkRectangle
typedef struct GdkRectangle_FID_CACHE {
int cached;
jclass clazz;
jfieldID x, y, width, height;
} GdkRectangle_FID_CACHE;
GdkRectangle_FID_CACHE GdkRectangleFc;
void cacheGdkRectangleFields(JNIEnv *env, jobject lpObject)
{
if (GdkRectangleFc.cached) return;
GdkRectangleFc.clazz = (*env)->GetObjectClass(env, lpObject);
GdkRectangleFc.x = (*env)->GetFieldID(env, GdkRectangleFc.clazz, "x", "I");
GdkRectangleFc.y = (*env)->GetFieldID(env, GdkRectangleFc.clazz, "y", "I");
GdkRectangleFc.width = (*env)->GetFieldID(env, GdkRectangleFc.clazz, "width", "I");
GdkRectangleFc.height = (*env)->GetFieldID(env, GdkRectangleFc.clazz, "height", "I");
GdkRectangleFc.cached = 1;
}
GdkRectangle *getGdkRectangleFields(JNIEnv *env, jobject lpObject, GdkRectangle *lpStruct)
{
if (!GdkRectangleFc.cached) cacheGdkRectangleFields(env, lpObject);
lpStruct->x = (gint)(*env)->GetIntField(env, lpObject, GdkRectangleFc.x);
lpStruct->y = (gint)(*env)->GetIntField(env, lpObject, GdkRectangleFc.y);
lpStruct->width = (gint)(*env)->GetIntField(env, lpObject, GdkRectangleFc.width);
lpStruct->height = (gint)(*env)->GetIntField(env, lpObject, GdkRectangleFc.height);
return lpStruct;
}
void setGdkRectangleFields(JNIEnv *env, jobject lpObject, GdkRectangle *lpStruct)
{
if (!GdkRectangleFc.cached) cacheGdkRectangleFields(env, lpObject);
(*env)->SetIntField(env, lpObject, GdkRectangleFc.x, (jint)lpStruct->x);
(*env)->SetIntField(env, lpObject, GdkRectangleFc.y, (jint)lpStruct->y);
(*env)->SetIntField(env, lpObject, GdkRectangleFc.width, (jint)lpStruct->width);
(*env)->SetIntField(env, lpObject, GdkRectangleFc.height, (jint)lpStruct->height);
}
#endif