Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/PromptService.java7
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/wpf/library/make_wpf.mak59
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/wpf/library/os.cpp12217
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/Platform.java17
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/COM.java24
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/ICONINFO.java20
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/OS.java1377
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/POINT.java17
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Printing/carbon/org/eclipse/swt/printing/Printer.java8
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/PrintDialog.java208
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/Printer.java317
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Program/carbon/org/eclipse/swt/program/Program.java18
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h4
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java3
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Program/wpf/org/eclipse/swt/program/Program.java311
16 files changed, 18 insertions, 14593 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/PromptService.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/PromptService.java
index 0c0bede7f7..9c32223b5c 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/PromptService.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/PromptService.java
@@ -112,6 +112,13 @@ Browser getBrowser(int /*long*/ aDOMWindow) {
nsIWindowWatcher windowWatcher = new nsIWindowWatcher(result[0]);
result[0] = 0;
+ /* the chrome will only be answered for the top-level nsIDOMWindow */
+ nsIDOMWindow window = new nsIDOMWindow (aDOMWindow);
+ rc = window.GetTop (result);
+ if (rc != XPCOM.NS_OK) Browser.error (rc);
+ if (result[0] == 0) Browser.error (XPCOM.NS_NOINTERFACE);
+ aDOMWindow = result[0];
+ result[0] = 0;
rc = windowWatcher.GetChromeForWindow(aDOMWindow, result);
if (rc != XPCOM.NS_OK) Browser.error(rc);
if (result[0] == 0) Browser.error(XPCOM.NS_NOINTERFACE);
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/library/make_wpf.mak b/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/library/make_wpf.mak
deleted file mode 100644
index 59748616fc..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/library/make_wpf.mak
+++ /dev/null
@@ -1,59 +0,0 @@
-#*******************************************************************************
-# Copyright (c) 2000, 2007 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-#*******************************************************************************
-
-# Makefile for SWT libraries on Windows
-
-# assumes JAVA_HOME is set in the environment from which nmake is run
-
-!include <make_common.mak>
-
-SWT_PREFIX = swt
-WS_PREFIX = wpf
-SWT_VERSION = $(maj_ver)$(min_ver)
-SWT_LIB = $(SWT_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).dll
-SWT_COM_LIB = $(SWT_PREFIX)-com-$(WS_PREFIX)-$(SWT_VERSION).dll
-SWT_C_OBJS = swt.obj c.obj c_stats.obj
-SWT_CPP_OBJS = os.obj os_custom.obj os_stats.obj os_structs.obj
-SWT_COM_OBJS = com.obj swt.obj com_stats.obj
-
-# Uncomment for Native Stats tool
-#NATIVE_STATS = -DNATIVE_STATS
-
-# Uncomment for try/catch exceptions
-TRYCATCH = -DTRYCATCH
-
-WPF_HOME = C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0
-DOTNET_HOME = C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
-CFLAGS = -c -W2 -D_WIN32_DCOM -O2 -DVISTA -DSWT_VERSION=$(SWT_VERSION) -DNO_getenv $(NATIVE_STATS) $(TRYCATCH) /I"$(JAVA_HOME)\include" /I"$(JAVA_HOME)\include\win32" /I.
-CPPFLAGS = -clr /FU"$(WPF_HOME)\PresentationCore.dll" /FU"$(WPF_HOME)\PresentationFramework.dll" /FU$(DOTNET_HOME)\System.Data.dll /FU$(DOTNET_HOME)\System.dll /FU$(DOTNET_HOME)\System.Xml.dll /FU"$(WPF_HOME)\UIAutomationProvider.dll" /FU"$(WPF_HOME)\UIAutomationTypes.dll" /FU"$(WPF_HOME)\WindowsBase.dll" /FU$(DOTNET_HOME)\System.Drawing.dll /FU$(DOTNET_HOME)\System.Windows.Forms.dll
-LFLAGS = -DLL -NODEFAULTLIB:"LIBCMT.LIB" -CLRTHREADATTRIBUTE:STA user32.lib gdi32.lib
-COMLFLAGS = -DLL ole32.lib
-
-all: $(SWT_LIB) $(SWT_COM_LIB)
-
-.c.obj:
- cl $(CFLAGS) $*.c
-
-.cpp.obj:
- cl $(CPPFLAGS) $(CFLAGS) $*.cpp
-
-$(SWT_LIB): $(SWT_C_OBJS) $(SWT_CPP_OBJS)
- link $(LFLAGS) -OUT:$(SWT_LIB) $(SWT_C_OBJS) $(SWT_CPP_OBJS)
- mt.exe -manifest $(SWT_LIB).manifest -outputresource:$(SWT_LIB);2
-
-$(SWT_COM_LIB): $(SWT_COM_OBJS)
- link $(COMLFLAGS) -OUT:$(SWT_COM_LIB) $(SWT_COM_OBJS)
-
-install: all
- copy *.dll $(OUTPUT_DIR)
-
-clean:
- del *.obj *.res *.dll *.lib *.exp *.manifest
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/library/os.cpp b/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/library/os.cpp
deleted file mode 100644
index 0b5030b14a..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/library/os.cpp
+++ /dev/null
@@ -1,12217 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-
-#include "swt.h"
-#include "os_structs.h"
-#include "os_stats.h"
-
-#define OS_NATIVE(func) Java_org_eclipse_swt_internal_wpf_OS_##func
-
-#ifndef NO_AccessText_1AccessKey
-extern "C" JNIEXPORT jchar JNICALL OS_NATIVE(AccessText_1AccessKey)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jchar JNICALL OS_NATIVE(AccessText_1AccessKey)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jchar rc = 0;
- OS_NATIVE_ENTER(env, that, AccessText_1AccessKey_FUNC);
- rc = (jchar)((AccessText^)TO_OBJECT(arg0))->AccessKey;
- OS_NATIVE_EXIT(env, that, AccessText_1AccessKey_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_AccessText_1Text
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(AccessText_1Text)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(AccessText_1Text)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, AccessText_1Text_FUNC);
- ((AccessText^)TO_OBJECT(arg0))->Text = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, AccessText_1Text_FUNC);
-}
-#endif
-
-#ifndef NO_ApplicationCommands_1Cut
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ApplicationCommands_1Cut)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ApplicationCommands_1Cut)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ApplicationCommands_1Cut_FUNC);
- rc = (jint)TO_HANDLE(ApplicationCommands::Cut);
- OS_NATIVE_EXIT(env, that, ApplicationCommands_1Cut_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ApplicationCommands_1Paste
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ApplicationCommands_1Paste)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ApplicationCommands_1Paste)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ApplicationCommands_1Paste_FUNC);
- rc = (jint)TO_HANDLE(ApplicationCommands::Paste);
- OS_NATIVE_EXIT(env, that, ApplicationCommands_1Paste_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ApplicationCommands_1Redo
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ApplicationCommands_1Redo)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ApplicationCommands_1Redo)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ApplicationCommands_1Redo_FUNC);
- rc = (jint)TO_HANDLE(ApplicationCommands::Redo);
- OS_NATIVE_EXIT(env, that, ApplicationCommands_1Redo_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ApplicationCommands_1Undo
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ApplicationCommands_1Undo)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ApplicationCommands_1Undo)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ApplicationCommands_1Undo_FUNC);
- rc = (jint)TO_HANDLE(ApplicationCommands::Undo);
- OS_NATIVE_EXIT(env, that, ApplicationCommands_1Undo_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Application_1Dispatcher
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Application_1Dispatcher)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Application_1Dispatcher)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Application_1Dispatcher_FUNC);
- rc = (jint)TO_HANDLE(((Application ^)TO_OBJECT(arg0))->Dispatcher);
- OS_NATIVE_EXIT(env, that, Application_1Dispatcher_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Application_1Run
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Application_1Run)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Application_1Run)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Application_1Run_FUNC);
- ((Application^)TO_OBJECT(arg0))->Run();
- OS_NATIVE_EXIT(env, that, Application_1Run_FUNC);
-}
-#endif
-
-#ifndef NO_Application_1Shutdown
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Application_1Shutdown)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Application_1Shutdown)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Application_1Shutdown_FUNC);
- ((Application^)TO_OBJECT(arg0))->Shutdown();
- OS_NATIVE_EXIT(env, that, Application_1Shutdown_FUNC);
-}
-#endif
-
-#ifndef NO_Application_1ShutdownMode
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Application_1ShutdownMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Application_1ShutdownMode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Application_1ShutdownMode_FUNC);
- ((Application^)TO_OBJECT(arg0))->ShutdownMode = ((ShutdownMode)arg1);
- OS_NATIVE_EXIT(env, that, Application_1ShutdownMode_FUNC);
-}
-#endif
-
-#ifndef NO_Application_1Windows
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Application_1Windows)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Application_1Windows)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Application_1Windows_FUNC);
- rc = (jint)TO_HANDLE(((Application^)TO_OBJECT(arg0))->Windows);
- OS_NATIVE_EXIT(env, that, Application_1Windows_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ArrayList_1Clear
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ArrayList_1Clear)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(ArrayList_1Clear)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, ArrayList_1Clear_FUNC);
- ((ArrayList^)TO_OBJECT(arg0))->Clear();
- OS_NATIVE_EXIT(env, that, ArrayList_1Clear_FUNC);
-}
-#endif
-
-#ifndef NO_ArrayList_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ArrayList_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ArrayList_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ArrayList_1Count_FUNC);
- rc = (jint)((ArrayList^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, ArrayList_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ArrayList_1Insert
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ArrayList_1Insert)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(ArrayList_1Insert)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, ArrayList_1Insert_FUNC);
- ((ArrayList^)TO_OBJECT(arg0))->Insert(arg1, (Object^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, ArrayList_1Insert_FUNC);
-}
-#endif
-
-#ifndef NO_ArrayList_1RemoveAt
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ArrayList_1RemoveAt)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ArrayList_1RemoveAt)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ArrayList_1RemoveAt_FUNC);
- ((ArrayList^)TO_OBJECT(arg0))->RemoveAt(arg1);
- OS_NATIVE_EXIT(env, that, ArrayList_1RemoveAt_FUNC);
-}
-#endif
-
-#ifndef NO_ArrayList_1default__II
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ArrayList_1default__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(ArrayList_1default__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ArrayList_1default__II_FUNC);
- rc = (jint)TO_HANDLE(((ArrayList^)TO_OBJECT(arg0))->default[arg1]);
- OS_NATIVE_EXIT(env, that, ArrayList_1default__II_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ArrayList_1default__III
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ArrayList_1default__III)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(ArrayList_1default__III)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, ArrayList_1default__III_FUNC);
- ((ArrayList^)TO_OBJECT(arg0))->default[arg1] = ((Object^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, ArrayList_1default__III_FUNC);
-}
-#endif
-
-#ifndef NO_BindingExpression_1UpdateTarget
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(BindingExpression_1UpdateTarget)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(BindingExpression_1UpdateTarget)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, BindingExpression_1UpdateTarget_FUNC);
- ((BindingExpression^)TO_OBJECT(arg0))->UpdateTarget();
- OS_NATIVE_EXIT(env, that, BindingExpression_1UpdateTarget_FUNC);
-}
-#endif
-
-#ifndef NO_Binding_1Converter
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Binding_1Converter)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Binding_1Converter)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Binding_1Converter_FUNC);
- ((Binding^)TO_OBJECT(arg0))->Converter = ((IValueConverter^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Binding_1Converter_FUNC);
-}
-#endif
-
-#ifndef NO_Binding_1ConverterParameter
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Binding_1ConverterParameter)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Binding_1ConverterParameter)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Binding_1ConverterParameter_FUNC);
- ((Binding^)TO_OBJECT(arg0))->ConverterParameter = (arg1);
- OS_NATIVE_EXIT(env, that, Binding_1ConverterParameter_FUNC);
-}
-#endif
-
-#ifndef NO_BitmapImage_1BeginInit
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(BitmapImage_1BeginInit)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(BitmapImage_1BeginInit)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, BitmapImage_1BeginInit_FUNC);
- ((BitmapImage^)TO_OBJECT(arg0))->BeginInit();
- OS_NATIVE_EXIT(env, that, BitmapImage_1BeginInit_FUNC);
-}
-#endif
-
-#ifndef NO_BitmapImage_1CreateOptions
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(BitmapImage_1CreateOptions)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(BitmapImage_1CreateOptions)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, BitmapImage_1CreateOptions_FUNC);
- ((BitmapImage^)TO_OBJECT(arg0))->CreateOptions = ((BitmapCreateOptions)arg1);
- OS_NATIVE_EXIT(env, that, BitmapImage_1CreateOptions_FUNC);
-}
-#endif
-
-#ifndef NO_BitmapImage_1EndInit
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(BitmapImage_1EndInit)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(BitmapImage_1EndInit)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, BitmapImage_1EndInit_FUNC);
- ((BitmapImage^)TO_OBJECT(arg0))->EndInit();
- OS_NATIVE_EXIT(env, that, BitmapImage_1EndInit_FUNC);
-}
-#endif
-
-#ifndef NO_BitmapImage_1UriSource
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(BitmapImage_1UriSource)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(BitmapImage_1UriSource)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, BitmapImage_1UriSource_FUNC);
- ((BitmapImage^)TO_OBJECT(arg0))->UriSource = ((Uri^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, BitmapImage_1UriSource_FUNC);
-}
-#endif
-
-#ifndef NO_BitmapPalette_1Colors
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(BitmapPalette_1Colors)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(BitmapPalette_1Colors)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, BitmapPalette_1Colors_FUNC);
- rc = (jint)TO_HANDLE(((BitmapPalette^)TO_OBJECT(arg0))->Colors);
- OS_NATIVE_EXIT(env, that, BitmapPalette_1Colors_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_BitmapSource_1Clone
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1Clone)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1Clone)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, BitmapSource_1Clone_FUNC);
- rc = (jint)TO_HANDLE(((BitmapSource^)TO_OBJECT(arg0))->Clone());
- OS_NATIVE_EXIT(env, that, BitmapSource_1Clone_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_BitmapSource_1CopyPixels
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(BitmapSource_1CopyPixels)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3, jint arg4);
-JNIEXPORT void JNICALL OS_NATIVE(BitmapSource_1CopyPixels)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3, jint arg4)
-{
- jbyte *lparg2=NULL;
- OS_NATIVE_ENTER(env, that, BitmapSource_1CopyPixels_FUNC);
- if (arg2) if ((lparg2 = env->GetByteArrayElements(arg2, NULL)) == NULL) goto fail;
- ((BitmapSource^)TO_OBJECT(arg0))->CopyPixels((Int32Rect)TO_OBJECT(arg1), (IntPtr)lparg2, arg3, arg4);
-fail:
- if (arg2 && lparg2) env->ReleaseByteArrayElements(arg2, lparg2, 0);
- OS_NATIVE_EXIT(env, that, BitmapSource_1CopyPixels_FUNC);
-}
-#endif
-
-#ifndef NO_BitmapSource_1Create
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1Create)(JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2, jdouble arg3, jint arg4, jint arg5, jbyteArray arg6, jint arg7, jint arg8);
-JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1Create)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2, jdouble arg3, jint arg4, jint arg5, jbyteArray arg6, jint arg7, jint arg8)
-{
- jbyte *lparg6=NULL;
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, BitmapSource_1Create_FUNC);
- if (arg6) if ((lparg6 = env->GetByteArrayElements(arg6, NULL)) == NULL) goto fail;
- rc = (jint)TO_HANDLE(BitmapSource::Create(arg0, arg1, arg2, arg3, (PixelFormat)TO_OBJECT(arg4), (BitmapPalette^)TO_OBJECT(arg5), (IntPtr)lparg6, arg7, arg8));
-fail:
- if (arg6 && lparg6) env->ReleaseByteArrayElements(arg6, lparg6, 0);
- OS_NATIVE_EXIT(env, that, BitmapSource_1Create_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_BitmapSource_1Format
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1Format)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1Format)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, BitmapSource_1Format_FUNC);
- rc = (jint)TO_HANDLE(((BitmapSource^)TO_OBJECT(arg0))->Format);
- OS_NATIVE_EXIT(env, that, BitmapSource_1Format_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_BitmapSource_1Palette
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1Palette)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1Palette)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, BitmapSource_1Palette_FUNC);
- rc = (jint)TO_HANDLE(((BitmapSource^)TO_OBJECT(arg0))->Palette);
- OS_NATIVE_EXIT(env, that, BitmapSource_1Palette_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_BitmapSource_1PixelHeight
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1PixelHeight)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1PixelHeight)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, BitmapSource_1PixelHeight_FUNC);
- rc = (jint)((BitmapSource^)TO_OBJECT(arg0))->PixelHeight;
- OS_NATIVE_EXIT(env, that, BitmapSource_1PixelHeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_BitmapSource_1PixelWidth
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1PixelWidth)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(BitmapSource_1PixelWidth)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, BitmapSource_1PixelWidth_FUNC);
- rc = (jint)((BitmapSource^)TO_OBJECT(arg0))->PixelWidth;
- OS_NATIVE_EXIT(env, that, BitmapSource_1PixelWidth_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Border_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Border_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Border_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Border_1typeid_FUNC);
- rc = (jint)TO_HANDLE(Border::typeid);
- OS_NATIVE_EXIT(env, that, Border_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Brush_1Opacity
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Brush_1Opacity)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Brush_1Opacity)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Brush_1Opacity_FUNC);
- ((Brush^)TO_OBJECT(arg0))->Opacity = (arg1);
- OS_NATIVE_EXIT(env, that, Brush_1Opacity_FUNC);
-}
-#endif
-
-#ifndef NO_Brushes_1Black
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1Black)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1Black)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Brushes_1Black_FUNC);
- rc = (jint)TO_HANDLE(Brushes::Black);
- OS_NATIVE_EXIT(env, that, Brushes_1Black_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Brushes_1LightSkyBlue
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1LightSkyBlue)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1LightSkyBlue)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Brushes_1LightSkyBlue_FUNC);
- rc = (jint)TO_HANDLE(Brushes::LightSkyBlue);
- OS_NATIVE_EXIT(env, that, Brushes_1LightSkyBlue_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Brushes_1Navy
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1Navy)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1Navy)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Brushes_1Navy_FUNC);
- rc = (jint)TO_HANDLE(Brushes::Navy);
- OS_NATIVE_EXIT(env, that, Brushes_1Navy_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Brushes_1Transparent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1Transparent)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1Transparent)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Brushes_1Transparent_FUNC);
- rc = (jint)TO_HANDLE(Brushes::Transparent);
- OS_NATIVE_EXIT(env, that, Brushes_1Transparent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Brushes_1White
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1White)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Brushes_1White)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Brushes_1White_FUNC);
- rc = (jint)TO_HANDLE(Brushes::White);
- OS_NATIVE_EXIT(env, that, Brushes_1White_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ButtonBase_1Click
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ButtonBase_1Click)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ButtonBase_1Click)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ButtonBase_1Click_FUNC);
- ((ButtonBase^)TO_OBJECT(arg0))->Click += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ButtonBase_1Click_FUNC);
-}
-#endif
-
-#ifndef NO_Button_1IsDefault__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Button_1IsDefault__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Button_1IsDefault__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Button_1IsDefault__I_FUNC);
- rc = (jboolean)((Button^)TO_OBJECT(arg0))->IsDefault;
- OS_NATIVE_EXIT(env, that, Button_1IsDefault__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Button_1IsDefault__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Button_1IsDefault__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Button_1IsDefault__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Button_1IsDefault__IZ_FUNC);
- ((Button^)TO_OBJECT(arg0))->IsDefault = (arg1);
- OS_NATIVE_EXIT(env, that, Button_1IsDefault__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_CancelEventArgs_1Cancel
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(CancelEventArgs_1Cancel)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(CancelEventArgs_1Cancel)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, CancelEventArgs_1Cancel_FUNC);
- ((CancelEventArgs^)TO_OBJECT(arg0))->Cancel = (arg1);
- OS_NATIVE_EXIT(env, that, CancelEventArgs_1Cancel_FUNC);
-}
-#endif
-
-#ifndef NO_Canvas_1GetLeft
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Canvas_1GetLeft)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Canvas_1GetLeft)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Canvas_1GetLeft_FUNC);
- rc = (jdouble)Canvas::GetLeft((UIElement^)TO_OBJECT(arg0));
- OS_NATIVE_EXIT(env, that, Canvas_1GetLeft_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Canvas_1GetTop
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Canvas_1GetTop)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Canvas_1GetTop)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Canvas_1GetTop_FUNC);
- rc = (jdouble)Canvas::GetTop((UIElement^)TO_OBJECT(arg0));
- OS_NATIVE_EXIT(env, that, Canvas_1GetTop_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Canvas_1SetLeft
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Canvas_1SetLeft)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Canvas_1SetLeft)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Canvas_1SetLeft_FUNC);
- Canvas::SetLeft((UIElement^)TO_OBJECT(arg0), arg1);
- OS_NATIVE_EXIT(env, that, Canvas_1SetLeft_FUNC);
-}
-#endif
-
-#ifndef NO_Canvas_1SetTop
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Canvas_1SetTop)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Canvas_1SetTop)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Canvas_1SetTop_FUNC);
- Canvas::SetTop((UIElement^)TO_OBJECT(arg0), arg1);
- OS_NATIVE_EXIT(env, that, Canvas_1SetTop_FUNC);
-}
-#endif
-
-#ifndef NO_CharacterHit_1FirstCharacterIndex
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(CharacterHit_1FirstCharacterIndex)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(CharacterHit_1FirstCharacterIndex)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, CharacterHit_1FirstCharacterIndex_FUNC);
- rc = (jint)((CharacterHit^)TO_OBJECT(arg0))->FirstCharacterIndex;
- OS_NATIVE_EXIT(env, that, CharacterHit_1FirstCharacterIndex_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_CharacterHit_1TrailingLength
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(CharacterHit_1TrailingLength)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(CharacterHit_1TrailingLength)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, CharacterHit_1TrailingLength_FUNC);
- rc = (jint)((CharacterHit^)TO_OBJECT(arg0))->TrailingLength;
- OS_NATIVE_EXIT(env, that, CharacterHit_1TrailingLength_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_CheckBox_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(CheckBox_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(CheckBox_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, CheckBox_1typeid_FUNC);
- rc = (jint)TO_HANDLE(CheckBox::typeid);
- OS_NATIVE_EXIT(env, that, CheckBox_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Clipboard_1GetText
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Clipboard_1GetText)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Clipboard_1GetText)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Clipboard_1GetText_FUNC);
- rc = (jint)TO_HANDLE(Clipboard::GetText());
- OS_NATIVE_EXIT(env, that, Clipboard_1GetText_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ColorDialog_1AnyColor
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ColorDialog_1AnyColor)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ColorDialog_1AnyColor)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ColorDialog_1AnyColor_FUNC);
- ((System::Windows::Forms::ColorDialog^)TO_OBJECT(arg0))->AnyColor = (arg1);
- OS_NATIVE_EXIT(env, that, ColorDialog_1AnyColor_FUNC);
-}
-#endif
-
-#ifndef NO_ColorDialog_1Color__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ColorDialog_1Color__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ColorDialog_1Color__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ColorDialog_1Color__I_FUNC);
- rc = (jint)TO_HANDLE(((System::Windows::Forms::ColorDialog^)TO_OBJECT(arg0))->Color);
- OS_NATIVE_EXIT(env, that, ColorDialog_1Color__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ColorDialog_1Color__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ColorDialog_1Color__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ColorDialog_1Color__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ColorDialog_1Color__II_FUNC);
- ((System::Windows::Forms::ColorDialog^)TO_OBJECT(arg0))->Color = ((System::Drawing::Color)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ColorDialog_1Color__II_FUNC);
-}
-#endif
-
-#ifndef NO_ColorDialog_1CustomColors__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ColorDialog_1CustomColors__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ColorDialog_1CustomColors__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ColorDialog_1CustomColors__I_FUNC);
- rc = (jint)TO_HANDLE(((System::Windows::Forms::ColorDialog^)TO_OBJECT(arg0))->CustomColors);
- OS_NATIVE_EXIT(env, that, ColorDialog_1CustomColors__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ColorDialog_1CustomColors__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ColorDialog_1CustomColors__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ColorDialog_1CustomColors__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ColorDialog_1CustomColors__II_FUNC);
- ((System::Windows::Forms::ColorDialog^)TO_OBJECT(arg0))->CustomColors = ((array<int>^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ColorDialog_1CustomColors__II_FUNC);
-}
-#endif
-
-#ifndef NO_ColorList_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ColorList_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ColorList_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ColorList_1Add_FUNC);
- ((System::Collections::Generic::List<Color>^)TO_OBJECT(arg0))->Add((Color)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ColorList_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_ColorList_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ColorList_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ColorList_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ColorList_1Count_FUNC);
- rc = (jint)((System::Collections::Generic::IList<Color>^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, ColorList_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ColorList_1Current
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ColorList_1Current)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ColorList_1Current)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ColorList_1Current_FUNC);
- rc = (jint)TO_HANDLE(((System::Collections::Generic::IEnumerator<Color>^)TO_OBJECT(arg0))->Current);
- OS_NATIVE_EXIT(env, that, ColorList_1Current_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ColorList_1GetEnumerator
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ColorList_1GetEnumerator)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ColorList_1GetEnumerator)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ColorList_1GetEnumerator_FUNC);
- rc = (jint)TO_HANDLE(((System::Collections::Generic::IEnumerable<Color>^)TO_OBJECT(arg0))->GetEnumerator());
- OS_NATIVE_EXIT(env, that, ColorList_1GetEnumerator_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Color_1A
-extern "C" JNIEXPORT jbyte JNICALL OS_NATIVE(Color_1A)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jbyte JNICALL OS_NATIVE(Color_1A)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jbyte rc = 0;
- OS_NATIVE_ENTER(env, that, Color_1A_FUNC);
- rc = (jbyte)((Color^)TO_OBJECT(arg0))->A;
- OS_NATIVE_EXIT(env, that, Color_1A_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Color_1B
-extern "C" JNIEXPORT jbyte JNICALL OS_NATIVE(Color_1B)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jbyte JNICALL OS_NATIVE(Color_1B)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jbyte rc = 0;
- OS_NATIVE_ENTER(env, that, Color_1B_FUNC);
- rc = (jbyte)((Color^)TO_OBJECT(arg0))->B;
- OS_NATIVE_EXIT(env, that, Color_1B_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Color_1FromArgb
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Color_1FromArgb)(JNIEnv *env, jclass that, jbyte arg0, jbyte arg1, jbyte arg2, jbyte arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(Color_1FromArgb)
- (JNIEnv *env, jclass that, jbyte arg0, jbyte arg1, jbyte arg2, jbyte arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Color_1FromArgb_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Color::FromArgb(arg0, arg1, arg2, arg3));
- OS_NATIVE_EXIT(env, that, Color_1FromArgb_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Color_1G
-extern "C" JNIEXPORT jbyte JNICALL OS_NATIVE(Color_1G)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jbyte JNICALL OS_NATIVE(Color_1G)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jbyte rc = 0;
- OS_NATIVE_ENTER(env, that, Color_1G_FUNC);
- rc = (jbyte)((Color^)TO_OBJECT(arg0))->G;
- OS_NATIVE_EXIT(env, that, Color_1G_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Color_1R
-extern "C" JNIEXPORT jbyte JNICALL OS_NATIVE(Color_1R)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jbyte JNICALL OS_NATIVE(Color_1R)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jbyte rc = 0;
- OS_NATIVE_ENTER(env, that, Color_1R_FUNC);
- rc = (jbyte)((Color^)TO_OBJECT(arg0))->R;
- OS_NATIVE_EXIT(env, that, Color_1R_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Black
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Black)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Black)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Black_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Black);
- OS_NATIVE_EXIT(env, that, Colors_1Black_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Blue
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Blue)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Blue)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Blue_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Blue);
- OS_NATIVE_EXIT(env, that, Colors_1Blue_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Cyan
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Cyan)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Cyan)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Cyan_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Cyan);
- OS_NATIVE_EXIT(env, that, Colors_1Cyan_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1DarkGray
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1DarkGray)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1DarkGray)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1DarkGray_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::DarkGray);
- OS_NATIVE_EXIT(env, that, Colors_1DarkGray_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Green
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Green)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Green)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Green_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Green);
- OS_NATIVE_EXIT(env, that, Colors_1Green_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1LightSkyBlue
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1LightSkyBlue)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1LightSkyBlue)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1LightSkyBlue_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::LightSkyBlue);
- OS_NATIVE_EXIT(env, that, Colors_1LightSkyBlue_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Lime
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Lime)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Lime)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Lime_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Lime);
- OS_NATIVE_EXIT(env, that, Colors_1Lime_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Magenta
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Magenta)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Magenta)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Magenta_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Magenta);
- OS_NATIVE_EXIT(env, that, Colors_1Magenta_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Maroon
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Maroon)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Maroon)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Maroon_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Maroon);
- OS_NATIVE_EXIT(env, that, Colors_1Maroon_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Navy
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Navy)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Navy)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Navy_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Navy);
- OS_NATIVE_EXIT(env, that, Colors_1Navy_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Olive
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Olive)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Olive)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Olive_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Olive);
- OS_NATIVE_EXIT(env, that, Colors_1Olive_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Purple
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Purple)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Purple)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Purple_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Purple);
- OS_NATIVE_EXIT(env, that, Colors_1Purple_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Red
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Red)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Red)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Red_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Red);
- OS_NATIVE_EXIT(env, that, Colors_1Red_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Silver
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Silver)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Silver)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Silver_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Silver);
- OS_NATIVE_EXIT(env, that, Colors_1Silver_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Teal
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Teal)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Teal)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Teal_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Teal);
- OS_NATIVE_EXIT(env, that, Colors_1Teal_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Transparent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Transparent)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Transparent)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Transparent_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Transparent);
- OS_NATIVE_EXIT(env, that, Colors_1Transparent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1White
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1White)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1White)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1White_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::White);
- OS_NATIVE_EXIT(env, that, Colors_1White_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Colors_1Yellow
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Yellow)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Colors_1Yellow)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Colors_1Yellow_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(Colors::Yellow);
- OS_NATIVE_EXIT(env, that, Colors_1Yellow_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ColumnDefinitionCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ColumnDefinitionCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ColumnDefinitionCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ColumnDefinitionCollection_1Add_FUNC);
- ((ColumnDefinitionCollection^)TO_OBJECT(arg0))->Add((ColumnDefinition^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ColumnDefinitionCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_ColumnDefinition_1Width
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ColumnDefinition_1Width)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ColumnDefinition_1Width)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ColumnDefinition_1Width_FUNC);
- ((ColumnDefinition^)TO_OBJECT(arg0))->Width = ((GridLength)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ColumnDefinition_1Width_FUNC);
-}
-#endif
-
-#ifndef NO_ComboBox_1IsDropDownOpen__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(ComboBox_1IsDropDownOpen__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(ComboBox_1IsDropDownOpen__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, ComboBox_1IsDropDownOpen__I_FUNC);
- rc = (jboolean)((ComboBox^)TO_OBJECT(arg0))->IsDropDownOpen;
- OS_NATIVE_EXIT(env, that, ComboBox_1IsDropDownOpen__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ComboBox_1IsDropDownOpen__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ComboBox_1IsDropDownOpen__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ComboBox_1IsDropDownOpen__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ComboBox_1IsDropDownOpen__IZ_FUNC);
- ((ComboBox^)TO_OBJECT(arg0))->IsDropDownOpen = (arg1);
- OS_NATIVE_EXIT(env, that, ComboBox_1IsDropDownOpen__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_ComboBox_1IsEditable
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ComboBox_1IsEditable)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ComboBox_1IsEditable)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ComboBox_1IsEditable_FUNC);
- ((ComboBox^)TO_OBJECT(arg0))->IsEditable = (arg1);
- OS_NATIVE_EXIT(env, that, ComboBox_1IsEditable_FUNC);
-}
-#endif
-
-#ifndef NO_ComboBox_1SelectionBoxItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ComboBox_1SelectionBoxItem)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ComboBox_1SelectionBoxItem)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ComboBox_1SelectionBoxItem_FUNC);
- rc = (jint)TO_HANDLE(((ComboBox^)TO_OBJECT(arg0))->SelectionBoxItem);
- OS_NATIVE_EXIT(env, that, ComboBox_1SelectionBoxItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_CommandManager_1AddPreviewExecutedHandler
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(CommandManager_1AddPreviewExecutedHandler)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(CommandManager_1AddPreviewExecutedHandler)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, CommandManager_1AddPreviewExecutedHandler_FUNC);
- CommandManager::AddPreviewExecutedHandler((UIElement^)TO_OBJECT(arg0), (ExecutedRoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, CommandManager_1AddPreviewExecutedHandler_FUNC);
-}
-#endif
-
-#ifndef NO_CommonDialog_1ShowDialog
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(CommonDialog_1ShowDialog)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jboolean JNICALL OS_NATIVE(CommonDialog_1ShowDialog)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, CommonDialog_1ShowDialog_FUNC);
- rc = (jboolean)((CommonDialog^)TO_OBJECT(arg0))->ShowDialog((Window^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, CommonDialog_1ShowDialog_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_CompositeCollection_1IndexOf
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(CompositeCollection_1IndexOf)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(CompositeCollection_1IndexOf)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, CompositeCollection_1IndexOf_FUNC);
- rc = (jint)((CompositeCollection^)TO_OBJECT(arg0))->IndexOf((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, CompositeCollection_1IndexOf_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_CompositeCollection_1Insert
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(CompositeCollection_1Insert)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(CompositeCollection_1Insert)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, CompositeCollection_1Insert_FUNC);
- ((CompositeCollection^)TO_OBJECT(arg0))->Insert(arg1, (Object^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, CompositeCollection_1Insert_FUNC);
-}
-#endif
-
-#ifndef NO_CompositeCollection_1Remove
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(CompositeCollection_1Remove)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(CompositeCollection_1Remove)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, CompositeCollection_1Remove_FUNC);
- ((CompositeCollection^)TO_OBJECT(arg0))->Remove((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, CompositeCollection_1Remove_FUNC);
-}
-#endif
-
-#ifndef NO_CompositeCollection_1RemoveAt
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(CompositeCollection_1RemoveAt)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(CompositeCollection_1RemoveAt)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, CompositeCollection_1RemoveAt_FUNC);
- ((CompositeCollection^)TO_OBJECT(arg0))->RemoveAt(arg1);
- OS_NATIVE_EXIT(env, that, CompositeCollection_1RemoveAt_FUNC);
-}
-#endif
-
-#ifndef NO_Console_1Beep
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Console_1Beep)(JNIEnv *env, jclass that);
-JNIEXPORT void JNICALL OS_NATIVE(Console_1Beep)
- (JNIEnv *env, jclass that)
-{
- OS_NATIVE_ENTER(env, that, Console_1Beep_FUNC);
- Console::Beep();
- OS_NATIVE_EXIT(env, that, Console_1Beep_FUNC);
-}
-#endif
-
-#ifndef NO_ContainerVisual_1Clip__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ContainerVisual_1Clip__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ContainerVisual_1Clip__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ContainerVisual_1Clip__I_FUNC);
- rc = (jint)TO_HANDLE(((ContainerVisual^)TO_OBJECT(arg0))->Clip);
- OS_NATIVE_EXIT(env, that, ContainerVisual_1Clip__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ContainerVisual_1Clip__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ContainerVisual_1Clip__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ContainerVisual_1Clip__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ContainerVisual_1Clip__II_FUNC);
- ((ContainerVisual^)TO_OBJECT(arg0))->Clip = ((Geometry^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ContainerVisual_1Clip__II_FUNC);
-}
-#endif
-
-#ifndef NO_ContentControl_1Content__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ContentControl_1Content__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ContentControl_1Content__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ContentControl_1Content__I_FUNC);
- rc = (jint)TO_HANDLE(((ContentControl^)TO_OBJECT(arg0))->Content);
- OS_NATIVE_EXIT(env, that, ContentControl_1Content__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ContentControl_1Content__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ContentControl_1Content__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ContentControl_1Content__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ContentControl_1Content__II_FUNC);
- ((ContentControl^)TO_OBJECT(arg0))->Content = ((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ContentControl_1Content__II_FUNC);
-}
-#endif
-
-#ifndef NO_ContentPresenter_1Content
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ContentPresenter_1Content)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ContentPresenter_1Content)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ContentPresenter_1Content_FUNC);
- rc = (jint)TO_HANDLE(((ContentPresenter^)TO_OBJECT(arg0))->Content);
- OS_NATIVE_EXIT(env, that, ContentPresenter_1Content_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ContentPresenter_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ContentPresenter_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ContentPresenter_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ContentPresenter_1typeid_FUNC);
- rc = (jint)TO_HANDLE(ContentPresenter::typeid);
- OS_NATIVE_EXIT(env, that, ContentPresenter_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ContextMenuEventArgs_1CursorLeft
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(ContextMenuEventArgs_1CursorLeft)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(ContextMenuEventArgs_1CursorLeft)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, ContextMenuEventArgs_1CursorLeft_FUNC);
- rc = (jdouble)((ContextMenuEventArgs^)TO_OBJECT(arg0))->CursorLeft;
- OS_NATIVE_EXIT(env, that, ContextMenuEventArgs_1CursorLeft_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ContextMenuEventArgs_1CursorTop
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(ContextMenuEventArgs_1CursorTop)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(ContextMenuEventArgs_1CursorTop)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, ContextMenuEventArgs_1CursorTop_FUNC);
- rc = (jdouble)((ContextMenuEventArgs^)TO_OBJECT(arg0))->CursorTop;
- OS_NATIVE_EXIT(env, that, ContextMenuEventArgs_1CursorTop_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ContextMenu_1Closed
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1Closed)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1Closed)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ContextMenu_1Closed_FUNC);
- ((ContextMenu^)TO_OBJECT(arg0))->Closed += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ContextMenu_1Closed_FUNC);
-}
-#endif
-
-#ifndef NO_ContextMenu_1HorizontalOffset
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1HorizontalOffset)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1HorizontalOffset)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ContextMenu_1HorizontalOffset_FUNC);
- ((ContextMenu^)TO_OBJECT(arg0))->HorizontalOffset = (arg1);
- OS_NATIVE_EXIT(env, that, ContextMenu_1HorizontalOffset_FUNC);
-}
-#endif
-
-#ifndef NO_ContextMenu_1IsOpen
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1IsOpen)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1IsOpen)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ContextMenu_1IsOpen_FUNC);
- ((ContextMenu^)TO_OBJECT(arg0))->IsOpen = (arg1);
- OS_NATIVE_EXIT(env, that, ContextMenu_1IsOpen_FUNC);
-}
-#endif
-
-#ifndef NO_ContextMenu_1Opened
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1Opened)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1Opened)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ContextMenu_1Opened_FUNC);
- ((ContextMenu^)TO_OBJECT(arg0))->Opened += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ContextMenu_1Opened_FUNC);
-}
-#endif
-
-#ifndef NO_ContextMenu_1Placement
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1Placement)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1Placement)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ContextMenu_1Placement_FUNC);
- ((ContextMenu^)TO_OBJECT(arg0))->Placement = ((PlacementMode)arg1);
- OS_NATIVE_EXIT(env, that, ContextMenu_1Placement_FUNC);
-}
-#endif
-
-#ifndef NO_ContextMenu_1VerticalOffset
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1VerticalOffset)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ContextMenu_1VerticalOffset)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ContextMenu_1VerticalOffset_FUNC);
- ((ContextMenu^)TO_OBJECT(arg0))->VerticalOffset = (arg1);
- OS_NATIVE_EXIT(env, that, ContextMenu_1VerticalOffset_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1Background
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1Background)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1Background)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1Background_FUNC);
- ((Control^)TO_OBJECT(arg0))->Background = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Control_1Background_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1BackgroundProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1BackgroundProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1BackgroundProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1BackgroundProperty_FUNC);
- rc = (jint)TO_HANDLE(Control::BackgroundProperty);
- OS_NATIVE_EXIT(env, that, Control_1BackgroundProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1FontFamily
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1FontFamily)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1FontFamily)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1FontFamily_FUNC);
- ((Control^)TO_OBJECT(arg0))->FontFamily = ((FontFamily^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Control_1FontFamily_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1FontFamilyProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontFamilyProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontFamilyProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1FontFamilyProperty_FUNC);
- rc = (jint)TO_HANDLE(Control::FontFamilyProperty);
- OS_NATIVE_EXIT(env, that, Control_1FontFamilyProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1FontSize
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1FontSize)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1FontSize)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1FontSize_FUNC);
- ((Control^)TO_OBJECT(arg0))->FontSize = (arg1);
- OS_NATIVE_EXIT(env, that, Control_1FontSize_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1FontSizeProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontSizeProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontSizeProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1FontSizeProperty_FUNC);
- rc = (jint)TO_HANDLE(Control::FontSizeProperty);
- OS_NATIVE_EXIT(env, that, Control_1FontSizeProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1FontStretch
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1FontStretch)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1FontStretch)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1FontStretch_FUNC);
- ((Control^)TO_OBJECT(arg0))->FontStretch = ((FontStretch)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Control_1FontStretch_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1FontStretchProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontStretchProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontStretchProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1FontStretchProperty_FUNC);
- rc = (jint)TO_HANDLE(Control::FontStretchProperty);
- OS_NATIVE_EXIT(env, that, Control_1FontStretchProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1FontStyle
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1FontStyle)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1FontStyle)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1FontStyle_FUNC);
- ((Control^)TO_OBJECT(arg0))->FontStyle = ((FontStyle)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Control_1FontStyle_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1FontStyleProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontStyleProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontStyleProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1FontStyleProperty_FUNC);
- rc = (jint)TO_HANDLE(Control::FontStyleProperty);
- OS_NATIVE_EXIT(env, that, Control_1FontStyleProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1FontWeight
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1FontWeight)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1FontWeight)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1FontWeight_FUNC);
- ((Control^)TO_OBJECT(arg0))->FontWeight = ((FontWeight)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Control_1FontWeight_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1FontWeightProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontWeightProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1FontWeightProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1FontWeightProperty_FUNC);
- rc = (jint)TO_HANDLE(Control::FontWeightProperty);
- OS_NATIVE_EXIT(env, that, Control_1FontWeightProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1Foreground
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1Foreground)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1Foreground)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1Foreground_FUNC);
- ((Control^)TO_OBJECT(arg0))->Foreground = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Control_1Foreground_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1ForegroundProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1ForegroundProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1ForegroundProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1ForegroundProperty_FUNC);
- rc = (jint)TO_HANDLE(Control::ForegroundProperty);
- OS_NATIVE_EXIT(env, that, Control_1ForegroundProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1HorizontalContentAlignment__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1HorizontalContentAlignment__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1HorizontalContentAlignment__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1HorizontalContentAlignment__I_FUNC);
- rc = (jint)((Control ^)TO_OBJECT(arg0))->HorizontalContentAlignment;
- OS_NATIVE_EXIT(env, that, Control_1HorizontalContentAlignment__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1HorizontalContentAlignment__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1HorizontalContentAlignment__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1HorizontalContentAlignment__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1HorizontalContentAlignment__II_FUNC);
- ((Control ^)TO_OBJECT(arg0))->HorizontalContentAlignment = ((HorizontalAlignment)arg1);
- OS_NATIVE_EXIT(env, that, Control_1HorizontalContentAlignment__II_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1MouseDoubleClick
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1MouseDoubleClick)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1MouseDoubleClick)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1MouseDoubleClick_FUNC);
- ((Control^)TO_OBJECT(arg0))->MouseDoubleClick += ((MouseButtonEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Control_1MouseDoubleClick_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1Template__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Control_1Template__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Control_1Template__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Control_1Template__I_FUNC);
- rc = (jint)TO_HANDLE(((Control^)TO_OBJECT(arg0))->Template);
- OS_NATIVE_EXIT(env, that, Control_1Template__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Control_1Template__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1Template__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1Template__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1Template__II_FUNC);
- ((Control^)TO_OBJECT(arg0))->Template = ((ControlTemplate^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Control_1Template__II_FUNC);
-}
-#endif
-
-#ifndef NO_Control_1VerticalContentAlignment
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Control_1VerticalContentAlignment)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Control_1VerticalContentAlignment)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Control_1VerticalContentAlignment_FUNC);
- ((Control^)TO_OBJECT(arg0))->VerticalContentAlignment = ((VerticalAlignment)arg1);
- OS_NATIVE_EXIT(env, that, Control_1VerticalContentAlignment_FUNC);
-}
-#endif
-
-#ifndef NO_CreateCursor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(CreateCursor)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jbyteArray arg5, jbyteArray arg6);
-JNIEXPORT jint JNICALL OS_NATIVE(CreateCursor)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jbyteArray arg5, jbyteArray arg6)
-{
- jbyte *lparg5=NULL;
- jbyte *lparg6=NULL;
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, CreateCursor_FUNC);
-#ifdef JNI_VERSION_1_2
- if (IS_JNI_1_2) {
- if (arg5) if ((lparg5 = (jbyte*)env->GetPrimitiveArrayCritical(arg5, NULL)) == NULL) goto fail;
- if (arg6) if ((lparg6 = (jbyte*)env->GetPrimitiveArrayCritical(arg6, NULL)) == NULL) goto fail;
- } else
-#endif
- {
- if (arg5) if ((lparg5 = env->GetByteArrayElements(arg5, NULL)) == NULL) goto fail;
- if (arg6) if ((lparg6 = env->GetByteArrayElements(arg6, NULL)) == NULL) goto fail;
- }
- rc = (jint)CreateCursor((HINSTANCE)arg0, arg1, arg2, arg3, arg4, (CONST VOID *)lparg5, (CONST VOID *)lparg6);
-fail:
-#ifdef JNI_VERSION_1_2
- if (IS_JNI_1_2) {
- if (arg6 && lparg6) env->ReleasePrimitiveArrayCritical(arg6, lparg6, JNI_ABORT);
- if (arg5 && lparg5) env->ReleasePrimitiveArrayCritical(arg5, lparg5, JNI_ABORT);
- } else
-#endif
- {
- if (arg6 && lparg6) env->ReleaseByteArrayElements(arg6, lparg6, JNI_ABORT);
- if (arg5 && lparg5) env->ReleaseByteArrayElements(arg5, lparg5, JNI_ABORT);
- }
- OS_NATIVE_EXIT(env, that, CreateCursor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_CreateIconIndirect
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(CreateIconIndirect)(JNIEnv *env, jclass that, jobject arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(CreateIconIndirect)
- (JNIEnv *env, jclass that, jobject arg0)
-{
- ICONINFO _arg0, *lparg0=NULL;
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, CreateIconIndirect_FUNC);
- if (arg0) if ((lparg0 = getICONINFOFields(env, arg0, &_arg0)) == NULL) goto fail;
- rc = (jint)CreateIconIndirect(lparg0);
-fail:
- if (arg0 && lparg0) setICONINFOFields(env, arg0, lparg0);
- OS_NATIVE_EXIT(env, that, CreateIconIndirect_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_CultureInfo_1CurrentUICulture
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(CultureInfo_1CurrentUICulture)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(CultureInfo_1CurrentUICulture)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, CultureInfo_1CurrentUICulture_FUNC);
- rc = (jint)TO_HANDLE(CultureInfo::CurrentUICulture);
- OS_NATIVE_EXIT(env, that, CultureInfo_1CurrentUICulture_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_CursorInteropHelper_1Create
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(CursorInteropHelper_1Create)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(CursorInteropHelper_1Create)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, CursorInteropHelper_1Create_FUNC);
- rc = (jint)TO_HANDLE(System::Windows::Interop::CursorInteropHelper::Create((SafeHandle^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, CursorInteropHelper_1Create_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1AppStarting
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1AppStarting)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1AppStarting)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1AppStarting_FUNC);
- rc = (jint)TO_HANDLE(Cursors::AppStarting);
- OS_NATIVE_EXIT(env, that, Cursors_1AppStarting_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1Arrow
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Arrow)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Arrow)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1Arrow_FUNC);
- rc = (jint)TO_HANDLE(Cursors::Arrow);
- OS_NATIVE_EXIT(env, that, Cursors_1Arrow_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1Cross
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Cross)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Cross)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1Cross_FUNC);
- rc = (jint)TO_HANDLE(Cursors::Cross);
- OS_NATIVE_EXIT(env, that, Cursors_1Cross_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1Hand
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Hand)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Hand)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1Hand_FUNC);
- rc = (jint)TO_HANDLE(Cursors::Hand);
- OS_NATIVE_EXIT(env, that, Cursors_1Hand_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1Help
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Help)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Help)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1Help_FUNC);
- rc = (jint)TO_HANDLE(Cursors::Help);
- OS_NATIVE_EXIT(env, that, Cursors_1Help_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1IBeam
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1IBeam)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1IBeam)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1IBeam_FUNC);
- rc = (jint)TO_HANDLE(Cursors::IBeam);
- OS_NATIVE_EXIT(env, that, Cursors_1IBeam_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1No
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1No)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1No)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1No_FUNC);
- rc = (jint)TO_HANDLE(Cursors::No);
- OS_NATIVE_EXIT(env, that, Cursors_1No_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1ScrollE
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollE)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollE)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1ScrollE_FUNC);
- rc = (jint)TO_HANDLE(Cursors::ScrollE);
- OS_NATIVE_EXIT(env, that, Cursors_1ScrollE_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1ScrollN
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollN)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollN)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1ScrollN_FUNC);
- rc = (jint)TO_HANDLE(Cursors::ScrollN);
- OS_NATIVE_EXIT(env, that, Cursors_1ScrollN_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1ScrollNE
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollNE)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollNE)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1ScrollNE_FUNC);
- rc = (jint)TO_HANDLE(Cursors::ScrollNE);
- OS_NATIVE_EXIT(env, that, Cursors_1ScrollNE_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1ScrollNW
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollNW)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollNW)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1ScrollNW_FUNC);
- rc = (jint)TO_HANDLE(Cursors::ScrollNW);
- OS_NATIVE_EXIT(env, that, Cursors_1ScrollNW_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1ScrollS
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollS)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollS)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1ScrollS_FUNC);
- rc = (jint)TO_HANDLE(Cursors::ScrollS);
- OS_NATIVE_EXIT(env, that, Cursors_1ScrollS_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1ScrollSE
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollSE)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollSE)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1ScrollSE_FUNC);
- rc = (jint)TO_HANDLE(Cursors::ScrollSE);
- OS_NATIVE_EXIT(env, that, Cursors_1ScrollSE_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1ScrollSW
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollSW)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollSW)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1ScrollSW_FUNC);
- rc = (jint)TO_HANDLE(Cursors::ScrollSW);
- OS_NATIVE_EXIT(env, that, Cursors_1ScrollSW_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1ScrollW
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollW)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1ScrollW)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1ScrollW_FUNC);
- rc = (jint)TO_HANDLE(Cursors::ScrollW);
- OS_NATIVE_EXIT(env, that, Cursors_1ScrollW_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1SizeAll
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeAll)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeAll)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1SizeAll_FUNC);
- rc = (jint)TO_HANDLE(Cursors::SizeAll);
- OS_NATIVE_EXIT(env, that, Cursors_1SizeAll_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1SizeNESW
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeNESW)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeNESW)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1SizeNESW_FUNC);
- rc = (jint)TO_HANDLE(Cursors::SizeNESW);
- OS_NATIVE_EXIT(env, that, Cursors_1SizeNESW_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1SizeNS
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeNS)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeNS)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1SizeNS_FUNC);
- rc = (jint)TO_HANDLE(Cursors::SizeNS);
- OS_NATIVE_EXIT(env, that, Cursors_1SizeNS_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1SizeNWSE
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeNWSE)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeNWSE)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1SizeNWSE_FUNC);
- rc = (jint)TO_HANDLE(Cursors::SizeNWSE);
- OS_NATIVE_EXIT(env, that, Cursors_1SizeNWSE_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1SizeWE
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeWE)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1SizeWE)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1SizeWE_FUNC);
- rc = (jint)TO_HANDLE(Cursors::SizeWE);
- OS_NATIVE_EXIT(env, that, Cursors_1SizeWE_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1UpArrow
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1UpArrow)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1UpArrow)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1UpArrow_FUNC);
- rc = (jint)TO_HANDLE(Cursors::UpArrow);
- OS_NATIVE_EXIT(env, that, Cursors_1UpArrow_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Cursors_1Wait
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Wait)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Cursors_1Wait)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Cursors_1Wait_FUNC);
- rc = (jint)TO_HANDLE(Cursors::Wait);
- OS_NATIVE_EXIT(env, that, Cursors_1Wait_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DashStyles_1Dash
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1Dash)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1Dash)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DashStyles_1Dash_FUNC);
- rc = (jint)TO_HANDLE(DashStyles::Dash);
- OS_NATIVE_EXIT(env, that, DashStyles_1Dash_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DashStyles_1DashDot
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1DashDot)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1DashDot)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DashStyles_1DashDot_FUNC);
- rc = (jint)TO_HANDLE(DashStyles::DashDot);
- OS_NATIVE_EXIT(env, that, DashStyles_1DashDot_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DashStyles_1DashDotDot
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1DashDotDot)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1DashDotDot)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DashStyles_1DashDotDot_FUNC);
- rc = (jint)TO_HANDLE(DashStyles::DashDotDot);
- OS_NATIVE_EXIT(env, that, DashStyles_1DashDotDot_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DashStyles_1Dot
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1Dot)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1Dot)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DashStyles_1Dot_FUNC);
- rc = (jint)TO_HANDLE(DashStyles::Dot);
- OS_NATIVE_EXIT(env, that, DashStyles_1Dot_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DashStyles_1Solid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1Solid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(DashStyles_1Solid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DashStyles_1Solid_FUNC);
- rc = (jint)TO_HANDLE(DashStyles::Solid);
- OS_NATIVE_EXIT(env, that, DashStyles_1Solid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DeleteGlobalRef
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DeleteGlobalRef)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(DeleteGlobalRef)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, DeleteGlobalRef_FUNC);
- env->DeleteGlobalRef((jobject)arg0);
- OS_NATIVE_EXIT(env, that, DeleteGlobalRef_FUNC);
-}
-#endif
-
-#ifndef NO_DeleteObject
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(DeleteObject)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(DeleteObject)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, DeleteObject_FUNC);
- rc = (jboolean)DeleteObject((HGDIOBJ)arg0);
- OS_NATIVE_EXIT(env, that, DeleteObject_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DependencyObject_1ClearValue
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DependencyObject_1ClearValue)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DependencyObject_1ClearValue)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DependencyObject_1ClearValue_FUNC);
- ((DependencyObject^)TO_OBJECT(arg0))->ClearValue((DependencyProperty^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DependencyObject_1ClearValue_FUNC);
-}
-#endif
-
-#ifndef NO_DependencyObject_1SetValue
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DependencyObject_1SetValue)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(DependencyObject_1SetValue)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, DependencyObject_1SetValue_FUNC);
- ((DependencyObject^)TO_OBJECT(arg0))->SetValue((DependencyProperty^)TO_OBJECT(arg1), (Object^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, DependencyObject_1SetValue_FUNC);
-}
-#endif
-
-#ifndef NO_DestroyIcon
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(DestroyIcon)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(DestroyIcon)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, DestroyIcon_FUNC);
- rc = (jboolean)DestroyIcon((HICON)arg0);
- OS_NATIVE_EXIT(env, that, DestroyIcon_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DispatcherFrame_1Continue
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherFrame_1Continue)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherFrame_1Continue)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, DispatcherFrame_1Continue_FUNC);
- ((DispatcherFrame^)TO_OBJECT(arg0))->Continue = (arg1);
- OS_NATIVE_EXIT(env, that, DispatcherFrame_1Continue_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherHookEventArgs_1Operation
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DispatcherHookEventArgs_1Operation)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(DispatcherHookEventArgs_1Operation)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DispatcherHookEventArgs_1Operation_FUNC);
- rc = (jint)TO_HANDLE(((DispatcherHookEventArgs ^)TO_OBJECT(arg0))->Operation);
- OS_NATIVE_EXIT(env, that, DispatcherHookEventArgs_1Operation_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DispatcherHooks_1DispatcherInactive
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherHooks_1DispatcherInactive)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherHooks_1DispatcherInactive)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DispatcherHooks_1DispatcherInactive_FUNC);
- ((DispatcherHooks ^)TO_OBJECT(arg0))->DispatcherInactive += ((EventHandler ^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DispatcherHooks_1DispatcherInactive_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherHooks_1OperationAborted
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherHooks_1OperationAborted)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherHooks_1OperationAborted)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DispatcherHooks_1OperationAborted_FUNC);
- ((DispatcherHooks ^)TO_OBJECT(arg0))->OperationAborted += ((DispatcherHookEventHandler ^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DispatcherHooks_1OperationAborted_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherHooks_1OperationCompleted
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherHooks_1OperationCompleted)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherHooks_1OperationCompleted)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DispatcherHooks_1OperationCompleted_FUNC);
- ((DispatcherHooks ^)TO_OBJECT(arg0))->OperationCompleted += ((DispatcherHookEventHandler ^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DispatcherHooks_1OperationCompleted_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherHooks_1OperationPosted
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherHooks_1OperationPosted)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherHooks_1OperationPosted)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DispatcherHooks_1OperationPosted_FUNC);
- ((DispatcherHooks ^)TO_OBJECT(arg0))->OperationPosted += ((DispatcherHookEventHandler ^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DispatcherHooks_1OperationPosted_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherOperation_1Priority
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DispatcherOperation_1Priority)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(DispatcherOperation_1Priority)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DispatcherOperation_1Priority_FUNC);
- rc = (jint)((DispatcherOperation ^)TO_OBJECT(arg0))->Priority;
- OS_NATIVE_EXIT(env, that, DispatcherOperation_1Priority_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DispatcherTimer_1Interval
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Interval)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Interval)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DispatcherTimer_1Interval_FUNC);
- ((DispatcherTimer^)TO_OBJECT(arg0))->Interval = ((TimeSpan)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DispatcherTimer_1Interval_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherTimer_1Start
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Start)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Start)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, DispatcherTimer_1Start_FUNC);
- ((DispatcherTimer^)TO_OBJECT(arg0))->Start();
- OS_NATIVE_EXIT(env, that, DispatcherTimer_1Start_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherTimer_1Stop
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Stop)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Stop)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, DispatcherTimer_1Stop_FUNC);
- ((DispatcherTimer^)TO_OBJECT(arg0))->Stop();
- OS_NATIVE_EXIT(env, that, DispatcherTimer_1Stop_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherTimer_1Tag__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DispatcherTimer_1Tag__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(DispatcherTimer_1Tag__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DispatcherTimer_1Tag__I_FUNC);
- rc = (jint)((DispatcherTimer^)TO_OBJECT(arg0))->Tag;
- OS_NATIVE_EXIT(env, that, DispatcherTimer_1Tag__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DispatcherTimer_1Tag__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Tag__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Tag__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DispatcherTimer_1Tag__II_FUNC);
- ((DispatcherTimer^)TO_OBJECT(arg0))->Tag = (arg1);
- OS_NATIVE_EXIT(env, that, DispatcherTimer_1Tag__II_FUNC);
-}
-#endif
-
-#ifndef NO_DispatcherTimer_1Tick
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Tick)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DispatcherTimer_1Tick)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DispatcherTimer_1Tick_FUNC);
- ((DispatcherTimer^)TO_OBJECT(arg0))->Tick += ((EventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DispatcherTimer_1Tick_FUNC);
-}
-#endif
-
-#ifndef NO_Dispatcher_1BeginInvoke
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Dispatcher_1BeginInvoke)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT jint JNICALL OS_NATIVE(Dispatcher_1BeginInvoke)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Dispatcher_1BeginInvoke_FUNC);
- rc = (jint)TO_HANDLE(((Dispatcher ^)TO_OBJECT(arg0))->BeginInvoke((DispatcherPriority)arg1, (Delegate ^)TO_OBJECT(arg2)));
- OS_NATIVE_EXIT(env, that, Dispatcher_1BeginInvoke_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Dispatcher_1Hooks
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Dispatcher_1Hooks)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Dispatcher_1Hooks)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Dispatcher_1Hooks_FUNC);
- rc = (jint)TO_HANDLE(((Dispatcher ^)TO_OBJECT(arg0))->Hooks);
- OS_NATIVE_EXIT(env, that, Dispatcher_1Hooks_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Dispatcher_1PushFrame
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Dispatcher_1PushFrame)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Dispatcher_1PushFrame)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Dispatcher_1PushFrame_FUNC);
- Dispatcher::PushFrame((DispatcherFrame ^)TO_OBJECT(arg0));
- OS_NATIVE_EXIT(env, that, Dispatcher_1PushFrame_FUNC);
-}
-#endif
-
-#ifndef NO_DockPanel_1DockProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DockPanel_1DockProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(DockPanel_1DockProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DockPanel_1DockProperty_FUNC);
- rc = (jint)TO_HANDLE(DockPanel::DockProperty);
- OS_NATIVE_EXIT(env, that, DockPanel_1DockProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DockPanel_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DockPanel_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(DockPanel_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DockPanel_1typeid_FUNC);
- rc = (jint)TO_HANDLE(DockPanel::typeid);
- OS_NATIVE_EXIT(env, that, DockPanel_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DoubleAnimationUsingKeyFrames_1KeyFrames
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DoubleAnimationUsingKeyFrames_1KeyFrames)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(DoubleAnimationUsingKeyFrames_1KeyFrames)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DoubleAnimationUsingKeyFrames_1KeyFrames_FUNC);
- rc = (jint)TO_HANDLE(((DoubleAnimationUsingKeyFrames^)TO_OBJECT(arg0))->KeyFrames);
- OS_NATIVE_EXIT(env, that, DoubleAnimationUsingKeyFrames_1KeyFrames_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DoubleCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DoubleCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DoubleCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, DoubleCollection_1Add_FUNC);
- ((DoubleCollection^)TO_OBJECT(arg0))->Add(arg1);
- OS_NATIVE_EXIT(env, that, DoubleCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_DoubleKeyFrameCollection_1Add
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DoubleKeyFrameCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(DoubleKeyFrameCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DoubleKeyFrameCollection_1Add_FUNC);
- rc = (jint)((DoubleKeyFrameCollection^)TO_OBJECT(arg0))->Add((DoubleKeyFrame^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DoubleKeyFrameCollection_1Add_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DrawingColor_1FromArgb
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DrawingColor_1FromArgb)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(DrawingColor_1FromArgb)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DrawingColor_1FromArgb_FUNC);
- rc = (jint)TO_HANDLE(System::Drawing::Color::FromArgb(arg0, arg1, arg2, arg3));
- OS_NATIVE_EXIT(env, that, DrawingColor_1FromArgb_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DrawingColor_1ToArgb
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DrawingColor_1ToArgb)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(DrawingColor_1ToArgb)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DrawingColor_1ToArgb_FUNC);
- rc = (jint)((System::Drawing::Color^)TO_OBJECT(arg0))->ToArgb();
- OS_NATIVE_EXIT(env, that, DrawingColor_1ToArgb_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DrawingContext_1Close
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1Close)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1Close)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1Close_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->Close();
- OS_NATIVE_EXIT(env, that, DrawingContext_1Close_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1DrawEllipse
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawEllipse)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jdouble arg4, jdouble arg5);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawEllipse)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jdouble arg4, jdouble arg5)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1DrawEllipse_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->DrawEllipse((Brush^)TO_OBJECT(arg1), (Pen^)TO_OBJECT(arg2), (Point)TO_OBJECT(arg3), arg4, arg5);
- OS_NATIVE_EXIT(env, that, DrawingContext_1DrawEllipse_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1DrawGeometry
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawGeometry)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawGeometry)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1DrawGeometry_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->DrawGeometry((Brush^)TO_OBJECT(arg1), (Pen^)TO_OBJECT(arg2), (Geometry^)TO_OBJECT(arg3));
- OS_NATIVE_EXIT(env, that, DrawingContext_1DrawGeometry_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1DrawImage
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawImage)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawImage)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1DrawImage_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->DrawImage((ImageSource^)TO_OBJECT(arg1), (Rect)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, DrawingContext_1DrawImage_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1DrawLine
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawLine)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawLine)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1DrawLine_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->DrawLine((Pen^)TO_OBJECT(arg1), (Point)TO_OBJECT(arg2), (Point)TO_OBJECT(arg3));
- OS_NATIVE_EXIT(env, that, DrawingContext_1DrawLine_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1DrawRectangle
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawRectangle)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawRectangle)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1DrawRectangle_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->DrawRectangle((Brush^)TO_OBJECT(arg1), (Pen^)TO_OBJECT(arg2), (Rect)TO_OBJECT(arg3));
- OS_NATIVE_EXIT(env, that, DrawingContext_1DrawRectangle_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1DrawRoundedRectangle
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawRoundedRectangle)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jdouble arg4, jdouble arg5);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawRoundedRectangle)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jdouble arg4, jdouble arg5)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1DrawRoundedRectangle_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->DrawRoundedRectangle((Brush^)TO_OBJECT(arg1), (Pen^)TO_OBJECT(arg2), (Rect)TO_OBJECT(arg3), arg4, arg5);
- OS_NATIVE_EXIT(env, that, DrawingContext_1DrawRoundedRectangle_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1DrawText
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawText)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1DrawText)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1DrawText_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->DrawText((FormattedText^)TO_OBJECT(arg1), (Point)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, DrawingContext_1DrawText_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1Pop
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1Pop)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1Pop)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1Pop_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->Pop();
- OS_NATIVE_EXIT(env, that, DrawingContext_1Pop_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1PushClip
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1PushClip)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1PushClip)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1PushClip_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->PushClip((Geometry^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DrawingContext_1PushClip_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1PushOpacity
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1PushOpacity)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1PushOpacity)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1PushOpacity_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->PushOpacity(arg1);
- OS_NATIVE_EXIT(env, that, DrawingContext_1PushOpacity_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingContext_1PushTransform
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1PushTransform)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(DrawingContext_1PushTransform)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, DrawingContext_1PushTransform_FUNC);
- ((DrawingContext^)TO_OBJECT(arg0))->PushTransform((Transform^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, DrawingContext_1PushTransform_FUNC);
-}
-#endif
-
-#ifndef NO_DrawingVisual_1RenderOpen
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DrawingVisual_1RenderOpen)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(DrawingVisual_1RenderOpen)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DrawingVisual_1RenderOpen_FUNC);
- rc = (jint)TO_HANDLE(((DrawingVisual^)TO_OBJECT(arg0))->RenderOpen());
- OS_NATIVE_EXIT(env, that, DrawingVisual_1RenderOpen_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_DrawingVisual_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(DrawingVisual_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(DrawingVisual_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, DrawingVisual_1typeid_FUNC);
- rc = (jint)TO_HANDLE(DrawingVisual::typeid);
- OS_NATIVE_EXIT(env, that, DrawingVisual_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_EditingCommands_1Backspace
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(EditingCommands_1Backspace)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(EditingCommands_1Backspace)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, EditingCommands_1Backspace_FUNC);
- rc = (jint)TO_HANDLE(EditingCommands::Backspace);
- OS_NATIVE_EXIT(env, that, EditingCommands_1Backspace_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_EditingCommands_1Delete
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(EditingCommands_1Delete)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(EditingCommands_1Delete)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, EditingCommands_1Delete_FUNC);
- rc = (jint)TO_HANDLE(EditingCommands::Delete);
- OS_NATIVE_EXIT(env, that, EditingCommands_1Delete_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_EditingCommands_1DeleteNextWord
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(EditingCommands_1DeleteNextWord)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(EditingCommands_1DeleteNextWord)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, EditingCommands_1DeleteNextWord_FUNC);
- rc = (jint)TO_HANDLE(EditingCommands::DeleteNextWord);
- OS_NATIVE_EXIT(env, that, EditingCommands_1DeleteNextWord_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_EditingCommands_1DeletePreviousWord
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(EditingCommands_1DeletePreviousWord)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(EditingCommands_1DeletePreviousWord)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, EditingCommands_1DeletePreviousWord_FUNC);
- rc = (jint)TO_HANDLE(EditingCommands::DeletePreviousWord);
- OS_NATIVE_EXIT(env, that, EditingCommands_1DeletePreviousWord_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Environment_1ExpandEnvironmentVariables
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Environment_1ExpandEnvironmentVariables)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Environment_1ExpandEnvironmentVariables)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Environment_1ExpandEnvironmentVariables_FUNC);
- rc = (jint)TO_HANDLE(Environment::ExpandEnvironmentVariables((String^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, Environment_1ExpandEnvironmentVariables_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ExecutedRoutedEventArgs_1Command
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ExecutedRoutedEventArgs_1Command)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ExecutedRoutedEventArgs_1Command)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ExecutedRoutedEventArgs_1Command_FUNC);
- rc = (jint)TO_HANDLE(((ExecutedRoutedEventArgs^)TO_OBJECT(arg0))->Command);
- OS_NATIVE_EXIT(env, that, ExecutedRoutedEventArgs_1Command_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ExecutedRoutedEventArgs_1Handled
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ExecutedRoutedEventArgs_1Handled)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ExecutedRoutedEventArgs_1Handled)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ExecutedRoutedEventArgs_1Handled_FUNC);
- ((ExecutedRoutedEventArgs^)TO_OBJECT(arg0))->Handled = (arg1);
- OS_NATIVE_EXIT(env, that, ExecutedRoutedEventArgs_1Handled_FUNC);
-}
-#endif
-
-#ifndef NO_Expander_1Collapsed
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Expander_1Collapsed)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Expander_1Collapsed)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Expander_1Collapsed_FUNC);
- ((Expander^)TO_OBJECT(arg0))->Collapsed += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Expander_1Collapsed_FUNC);
-}
-#endif
-
-#ifndef NO_Expander_1Expanded
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Expander_1Expanded)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Expander_1Expanded)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Expander_1Expanded_FUNC);
- ((Expander^)TO_OBJECT(arg0))->Expanded += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Expander_1Expanded_FUNC);
-}
-#endif
-
-#ifndef NO_Expander_1IsExpanded__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Expander_1IsExpanded__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Expander_1IsExpanded__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Expander_1IsExpanded__I_FUNC);
- rc = (jboolean)((Expander^)TO_OBJECT(arg0))->IsExpanded;
- OS_NATIVE_EXIT(env, that, Expander_1IsExpanded__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Expander_1IsExpanded__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Expander_1IsExpanded__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Expander_1IsExpanded__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Expander_1IsExpanded__IZ_FUNC);
- ((Expander^)TO_OBJECT(arg0))->IsExpanded = (arg1);
- OS_NATIVE_EXIT(env, that, Expander_1IsExpanded__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_FileDialog_1FileName
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FileDialog_1FileName)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FileDialog_1FileName)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FileDialog_1FileName_FUNC);
- ((FileDialog^)TO_OBJECT(arg0))->FileName = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FileDialog_1FileName_FUNC);
-}
-#endif
-
-#ifndef NO_FileDialog_1FileNames
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FileDialog_1FileNames)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FileDialog_1FileNames)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FileDialog_1FileNames_FUNC);
- rc = (jint)TO_HANDLE(((FileDialog^)TO_OBJECT(arg0))->FileNames);
- OS_NATIVE_EXIT(env, that, FileDialog_1FileNames_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FileDialog_1Filter
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FileDialog_1Filter)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FileDialog_1Filter)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FileDialog_1Filter_FUNC);
- ((FileDialog^)TO_OBJECT(arg0))->Filter = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FileDialog_1Filter_FUNC);
-}
-#endif
-
-#ifndef NO_FileDialog_1InitialDirectory
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FileDialog_1InitialDirectory)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FileDialog_1InitialDirectory)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FileDialog_1InitialDirectory_FUNC);
- ((FileDialog^)TO_OBJECT(arg0))->InitialDirectory = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FileDialog_1InitialDirectory_FUNC);
-}
-#endif
-
-#ifndef NO_FileDialog_1Title
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FileDialog_1Title)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FileDialog_1Title)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FileDialog_1Title_FUNC);
- ((FileDialog^)TO_OBJECT(arg0))->Title = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FileDialog_1Title_FUNC);
-}
-#endif
-
-#ifndef NO_FileInfo_1DirectoryName
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FileInfo_1DirectoryName)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FileInfo_1DirectoryName)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FileInfo_1DirectoryName_FUNC);
- rc = (jint)TO_HANDLE(((System::IO::FileInfo^)TO_OBJECT(arg0))->DirectoryName);
- OS_NATIVE_EXIT(env, that, FileInfo_1DirectoryName_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FileInfo_1Name
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FileInfo_1Name)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FileInfo_1Name)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FileInfo_1Name_FUNC);
- rc = (jint)TO_HANDLE(((System::IO::FileInfo^)TO_OBJECT(arg0))->Name);
- OS_NATIVE_EXIT(env, that, FileInfo_1Name_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontFamily_1GetTypefaces
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontFamily_1GetTypefaces)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FontFamily_1GetTypefaces)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontFamily_1GetTypefaces_FUNC);
- rc = (jint)TO_HANDLE(((FontFamily^)TO_OBJECT(arg0))->GetTypefaces());
- OS_NATIVE_EXIT(env, that, FontFamily_1GetTypefaces_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontFamily_1Source
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontFamily_1Source)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FontFamily_1Source)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontFamily_1Source_FUNC);
- rc = (jint)TO_HANDLE(((FontFamily^)TO_OBJECT(arg0))->Source);
- OS_NATIVE_EXIT(env, that, FontFamily_1Source_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontStretch_1FromOpenTypeStretch
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontStretch_1FromOpenTypeStretch)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FontStretch_1FromOpenTypeStretch)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontStretch_1FromOpenTypeStretch_FUNC);
- rc = (jint)TO_HANDLE(FontStretch::FromOpenTypeStretch(arg0));
- OS_NATIVE_EXIT(env, that, FontStretch_1FromOpenTypeStretch_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontStretch_1ToOpenTypeStretch
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontStretch_1ToOpenTypeStretch)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FontStretch_1ToOpenTypeStretch)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontStretch_1ToOpenTypeStretch_FUNC);
- rc = (jint)((FontStretch^)TO_OBJECT(arg0))->ToOpenTypeStretch();
- OS_NATIVE_EXIT(env, that, FontStretch_1ToOpenTypeStretch_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontStretches_1Normal
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontStretches_1Normal)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FontStretches_1Normal)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontStretches_1Normal_FUNC);
- rc = (jint)TO_HANDLE(FontStretches::Normal);
- OS_NATIVE_EXIT(env, that, FontStretches_1Normal_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontStyles_1Italic
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontStyles_1Italic)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FontStyles_1Italic)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontStyles_1Italic_FUNC);
- rc = (jint)TO_HANDLE(FontStyles::Italic);
- OS_NATIVE_EXIT(env, that, FontStyles_1Italic_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontStyles_1Normal
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontStyles_1Normal)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FontStyles_1Normal)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontStyles_1Normal_FUNC);
- rc = (jint)TO_HANDLE(FontStyles::Normal);
- OS_NATIVE_EXIT(env, that, FontStyles_1Normal_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontStyles_1Oblique
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontStyles_1Oblique)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FontStyles_1Oblique)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontStyles_1Oblique_FUNC);
- rc = (jint)TO_HANDLE(FontStyles::Oblique);
- OS_NATIVE_EXIT(env, that, FontStyles_1Oblique_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontWeight_1FromOpenTypeWeight
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontWeight_1FromOpenTypeWeight)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FontWeight_1FromOpenTypeWeight)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontWeight_1FromOpenTypeWeight_FUNC);
- rc = (jint)TO_HANDLE(FontWeight::FromOpenTypeWeight(arg0));
- OS_NATIVE_EXIT(env, that, FontWeight_1FromOpenTypeWeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontWeight_1ToOpenTypeWeight
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontWeight_1ToOpenTypeWeight)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FontWeight_1ToOpenTypeWeight)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontWeight_1ToOpenTypeWeight_FUNC);
- rc = (jint)((FontWeight^)TO_OBJECT(arg0))->ToOpenTypeWeight();
- OS_NATIVE_EXIT(env, that, FontWeight_1ToOpenTypeWeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontWeights_1Bold
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontWeights_1Bold)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FontWeights_1Bold)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontWeights_1Bold_FUNC);
- rc = (jint)TO_HANDLE(FontWeights::Bold);
- OS_NATIVE_EXIT(env, that, FontWeights_1Bold_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FontWeights_1Normal
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FontWeights_1Normal)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FontWeights_1Normal)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FontWeights_1Normal_FUNC);
- rc = (jint)TO_HANDLE(FontWeights::Normal);
- OS_NATIVE_EXIT(env, that, FontWeights_1Normal_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Fonts_1SystemTypefaces
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Fonts_1SystemTypefaces)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Fonts_1SystemTypefaces)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Fonts_1SystemTypefaces_FUNC);
- rc = (jint)TO_HANDLE(Fonts::SystemTypefaces);
- OS_NATIVE_EXIT(env, that, Fonts_1SystemTypefaces_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FormattedText_1Baseline
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FormattedText_1Baseline)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FormattedText_1Baseline)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FormattedText_1Baseline_FUNC);
- rc = (jdouble)((FormattedText^)TO_OBJECT(arg0))->Baseline;
- OS_NATIVE_EXIT(env, that, FormattedText_1Baseline_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FormattedText_1BuildGeometry
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FormattedText_1BuildGeometry)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(FormattedText_1BuildGeometry)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FormattedText_1BuildGeometry_FUNC);
- rc = (jint)TO_HANDLE(((FormattedText^)TO_OBJECT(arg0))->BuildGeometry((Point)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, FormattedText_1BuildGeometry_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FormattedText_1BuildHighlightGeometry
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FormattedText_1BuildHighlightGeometry)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(FormattedText_1BuildHighlightGeometry)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FormattedText_1BuildHighlightGeometry_FUNC);
- rc = (jint)TO_HANDLE(((FormattedText^)TO_OBJECT(arg0))->BuildHighlightGeometry((Point)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, FormattedText_1BuildHighlightGeometry_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FormattedText_1Height
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FormattedText_1Height)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FormattedText_1Height)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FormattedText_1Height_FUNC);
- rc = (jdouble)((FormattedText^)TO_OBJECT(arg0))->Height;
- OS_NATIVE_EXIT(env, that, FormattedText_1Height_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FormattedText_1WidthIncludingTrailingWhitespace
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FormattedText_1WidthIncludingTrailingWhitespace)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FormattedText_1WidthIncludingTrailingWhitespace)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FormattedText_1WidthIncludingTrailingWhitespace_FUNC);
- rc = (jdouble)((FormattedText^)TO_OBJECT(arg0))->WidthIncludingTrailingWhitespace;
- OS_NATIVE_EXIT(env, that, FormattedText_1WidthIncludingTrailingWhitespace_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FormsCommonDialog_1ShowDialog
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FormsCommonDialog_1ShowDialog)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FormsCommonDialog_1ShowDialog)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FormsCommonDialog_1ShowDialog_FUNC);
- rc = (jint)((System::Windows::Forms::CommonDialog^)TO_OBJECT(arg0))->ShowDialog();
- OS_NATIVE_EXIT(env, that, FormsCommonDialog_1ShowDialog_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkContentElement_1Parent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkContentElement_1Parent)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkContentElement_1Parent)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkContentElement_1Parent_FUNC);
- rc = (jint)TO_HANDLE(((FrameworkContentElement^)TO_OBJECT(arg0))->Parent);
- OS_NATIVE_EXIT(env, that, FrameworkContentElement_1Parent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkContentElement_1Tag__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkContentElement_1Tag__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkContentElement_1Tag__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkContentElement_1Tag__I_FUNC);
- rc = (jint)((FrameworkContentElement^)TO_OBJECT(arg0))->Tag;
- OS_NATIVE_EXIT(env, that, FrameworkContentElement_1Tag__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkContentElement_1Tag__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkContentElement_1Tag__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkContentElement_1Tag__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkContentElement_1Tag__II_FUNC);
- ((FrameworkContentElement^)TO_OBJECT(arg0))->Tag = (arg1);
- OS_NATIVE_EXIT(env, that, FrameworkContentElement_1Tag__II_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkContentElement_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkContentElement_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkContentElement_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkContentElement_1typeid_FUNC);
- rc = (jint)TO_HANDLE(FrameworkContentElement::typeid);
- OS_NATIVE_EXIT(env, that, FrameworkContentElement_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1AppendChild
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1AppendChild)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1AppendChild)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1AppendChild_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->AppendChild((FrameworkElementFactory^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1AppendChild_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1SetBinding
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetBinding)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetBinding)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1SetBinding_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->SetBinding((DependencyProperty^)TO_OBJECT(arg1), (BindingBase^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1SetBinding_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1SetValue__III
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValue__III)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValue__III)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1SetValue__III_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->SetValue((DependencyProperty^)TO_OBJECT(arg1), (Object^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1SetValue__III_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1SetValue__IIZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValue__IIZ)(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValue__IIZ)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1SetValue__IIZ_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->SetValue((DependencyProperty^)TO_OBJECT(arg1), (Boolean)arg2);
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1SetValue__IIZ_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1SetValueDock
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueDock)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueDock)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1SetValueDock_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->SetValue((DependencyProperty^)TO_OBJECT(arg1), (Dock)arg2);
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1SetValueDock_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1SetValueOrientation
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueOrientation)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueOrientation)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1SetValueOrientation_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->SetValue((DependencyProperty^)TO_OBJECT(arg1), (Orientation)arg2);
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1SetValueOrientation_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1SetValueStretch
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueStretch)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueStretch)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1SetValueStretch_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->SetValue((DependencyProperty^)TO_OBJECT(arg1), (Stretch)arg2);
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1SetValueStretch_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1SetValueVerticalAlignment
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueVerticalAlignment)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueVerticalAlignment)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1SetValueVerticalAlignment_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->SetValue((DependencyProperty^)TO_OBJECT(arg1), (VerticalAlignment)arg2);
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1SetValueVerticalAlignment_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElementFactory_1SetValueVisibility
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueVisibility)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyte arg2);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElementFactory_1SetValueVisibility)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jbyte arg2)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElementFactory_1SetValueVisibility_FUNC);
- ((FrameworkElementFactory^)TO_OBJECT(arg0))->SetValue((DependencyProperty^)TO_OBJECT(arg1), (Visibility)arg2);
- OS_NATIVE_EXIT(env, that, FrameworkElementFactory_1SetValueVisibility_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ActualHeight
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1ActualHeight)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1ActualHeight)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ActualHeight_FUNC);
- rc = (jdouble)((FrameworkElement^)TO_OBJECT(arg0))->ActualHeight;
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ActualHeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ActualHeightProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1ActualHeightProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1ActualHeightProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ActualHeightProperty_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::ActualHeightProperty);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ActualHeightProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ActualWidth
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1ActualWidth)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1ActualWidth)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ActualWidth_FUNC);
- rc = (jdouble)((FrameworkElement^)TO_OBJECT(arg0))->ActualWidth;
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ActualWidth_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ActualWidthProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1ActualWidthProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1ActualWidthProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ActualWidthProperty_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::ActualWidthProperty);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ActualWidthProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1BeginInit
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1BeginInit)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1BeginInit)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1BeginInit_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->BeginInit();
- OS_NATIVE_EXIT(env, that, FrameworkElement_1BeginInit_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1BringIntoView
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1BringIntoView)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1BringIntoView)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1BringIntoView_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->BringIntoView();
- OS_NATIVE_EXIT(env, that, FrameworkElement_1BringIntoView_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ContextMenu
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1ContextMenu)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1ContextMenu)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ContextMenu_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->ContextMenu = ((ContextMenu^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ContextMenu_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ContextMenuClosing
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1ContextMenuClosing)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1ContextMenuClosing)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ContextMenuClosing_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->ContextMenuClosing += ((ContextMenuEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ContextMenuClosing_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ContextMenuOpening
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1ContextMenuOpening)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1ContextMenuOpening)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ContextMenuOpening_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->ContextMenuOpening += ((ContextMenuEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ContextMenuOpening_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Cursor
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Cursor)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Cursor)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Cursor_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->Cursor = ((Cursor^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Cursor_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1CursorProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1CursorProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1CursorProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1CursorProperty_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::CursorProperty);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1CursorProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1GetBindingExpression
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1GetBindingExpression)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1GetBindingExpression)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1GetBindingExpression_FUNC);
- rc = (jint)TO_HANDLE(((FrameworkElement^)TO_OBJECT(arg0))->GetBindingExpression((DependencyProperty^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1GetBindingExpression_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Height__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1Height__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1Height__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Height__I_FUNC);
- rc = (jdouble)((FrameworkElement^)TO_OBJECT(arg0))->Height;
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Height__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Height__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Height__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Height__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Height__ID_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->Height = (arg1);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Height__ID_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1HeightProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1HeightProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1HeightProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1HeightProperty_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::HeightProperty);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1HeightProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1HorizontalAlignment
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1HorizontalAlignment)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1HorizontalAlignment)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1HorizontalAlignment_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->HorizontalAlignment = ((HorizontalAlignment)arg1);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1HorizontalAlignment_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1IsLoaded
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(FrameworkElement_1IsLoaded)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(FrameworkElement_1IsLoaded)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1IsLoaded_FUNC);
- rc = (jboolean)((FrameworkElement^)TO_OBJECT(arg0))->IsLoaded;
- OS_NATIVE_EXIT(env, that, FrameworkElement_1IsLoaded_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Loaded
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Loaded)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Loaded)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Loaded_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->Loaded += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Loaded_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Margin
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Margin)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Margin)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Margin_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->Margin = ((Thickness)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Margin_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1MarginProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1MarginProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1MarginProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1MarginProperty_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::MarginProperty);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1MarginProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1MinHeight__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1MinHeight__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1MinHeight__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1MinHeight__I_FUNC);
- rc = (jdouble)((FrameworkElement^)TO_OBJECT(arg0))->MinHeight;
- OS_NATIVE_EXIT(env, that, FrameworkElement_1MinHeight__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1MinHeight__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1MinHeight__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1MinHeight__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1MinHeight__ID_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->MinHeight = (arg1);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1MinHeight__ID_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1MinWidth__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1MinWidth__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1MinWidth__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1MinWidth__I_FUNC);
- rc = (jdouble)((FrameworkElement^)TO_OBJECT(arg0))->MinWidth;
- OS_NATIVE_EXIT(env, that, FrameworkElement_1MinWidth__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1MinWidth__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1MinWidth__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1MinWidth__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1MinWidth__ID_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->MinWidth = (arg1);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1MinWidth__ID_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Name
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1Name)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1Name)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Name_FUNC);
- rc = (jint)TO_HANDLE(((FrameworkElement^)TO_OBJECT(arg0))->Name);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Name_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1NameProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1NameProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1NameProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1NameProperty_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::NameProperty);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1NameProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Parent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1Parent)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1Parent)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Parent_FUNC);
- rc = (jint)TO_HANDLE(((FrameworkElement^)TO_OBJECT(arg0))->Parent);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Parent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1SizeChanged
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1SizeChanged)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1SizeChanged)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1SizeChanged_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->SizeChanged += ((SizeChangedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1SizeChanged_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Tag__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1Tag__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1Tag__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Tag__I_FUNC);
- rc = (jint)TO_HANDLE(((FrameworkElement^)TO_OBJECT(arg0))->Tag);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Tag__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Tag__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Tag__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Tag__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Tag__II_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->Tag = ((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Tag__II_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ToolTip__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1ToolTip__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1ToolTip__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ToolTip__I_FUNC);
- rc = (jint)TO_HANDLE(((FrameworkElement^)TO_OBJECT(arg0))->ToolTip);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ToolTip__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1ToolTip__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1ToolTip__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1ToolTip__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1ToolTip__II_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->ToolTip = ((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkElement_1ToolTip__II_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1VerticalAlignment
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1VerticalAlignment)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1VerticalAlignment)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1VerticalAlignment_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->VerticalAlignment = ((VerticalAlignment)arg1);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1VerticalAlignment_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1VerticalAlignmentProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1VerticalAlignmentProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1VerticalAlignmentProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1VerticalAlignmentProperty_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::VerticalAlignmentProperty);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1VerticalAlignmentProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Width__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1Width__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(FrameworkElement_1Width__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Width__I_FUNC);
- rc = (jdouble)((FrameworkElement^)TO_OBJECT(arg0))->Width;
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Width__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1Width__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Width__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkElement_1Width__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkElement_1Width__ID_FUNC);
- ((FrameworkElement^)TO_OBJECT(arg0))->Width = (arg1);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1Width__ID_FUNC);
-}
-#endif
-
-#ifndef NO_FrameworkElement_1WidthProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1WidthProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1WidthProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1WidthProperty_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::WidthProperty);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1WidthProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkElement_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkElement_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkElement_1typeid_FUNC);
- rc = (jint)TO_HANDLE(FrameworkElement::typeid);
- OS_NATIVE_EXIT(env, that, FrameworkElement_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkTemplate_1FindName
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(FrameworkTemplate_1FindName)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT jint JNICALL OS_NATIVE(FrameworkTemplate_1FindName)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, FrameworkTemplate_1FindName_FUNC);
- rc = (jint)TO_HANDLE(((FrameworkTemplate^)TO_OBJECT(arg0))->FindName((String^)TO_OBJECT(arg1), (FrameworkElement^)TO_OBJECT(arg2)));
- OS_NATIVE_EXIT(env, that, FrameworkTemplate_1FindName_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_FrameworkTemplate_1VisualTree
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(FrameworkTemplate_1VisualTree)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(FrameworkTemplate_1VisualTree)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, FrameworkTemplate_1VisualTree_FUNC);
- ((FrameworkTemplate^)TO_OBJECT(arg0))->VisualTree = ((FrameworkElementFactory^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, FrameworkTemplate_1VisualTree_FUNC);
-}
-#endif
-
-#ifndef NO_Freezable_1CanFreeze
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Freezable_1CanFreeze)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Freezable_1CanFreeze)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Freezable_1CanFreeze_FUNC);
- rc = (jboolean)((Freezable^)TO_OBJECT(arg0))->CanFreeze;
- OS_NATIVE_EXIT(env, that, Freezable_1CanFreeze_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Freezable_1Clone
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Freezable_1Clone)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Freezable_1Clone)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Freezable_1Clone_FUNC);
- rc = (jint)TO_HANDLE(((Freezable^)TO_OBJECT(arg0))->Clone());
- OS_NATIVE_EXIT(env, that, Freezable_1Clone_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Freezable_1Freeze
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Freezable_1Freeze)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Freezable_1Freeze)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Freezable_1Freeze_FUNC);
- ((Freezable^)TO_OBJECT(arg0))->Freeze();
- OS_NATIVE_EXIT(env, that, Freezable_1Freeze_FUNC);
-}
-#endif
-
-#ifndef NO_GeometryCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GeometryCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GeometryCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GeometryCollection_1Add_FUNC);
- ((GeometryCollection^)TO_OBJECT(arg0))->Add((Geometry^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GeometryCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_GeometryCollection_1Clear
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GeometryCollection_1Clear)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(GeometryCollection_1Clear)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, GeometryCollection_1Clear_FUNC);
- ((GeometryCollection^)TO_OBJECT(arg0))->Clear();
- OS_NATIVE_EXIT(env, that, GeometryCollection_1Clear_FUNC);
-}
-#endif
-
-#ifndef NO_GeometryCollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GeometryCollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GeometryCollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GeometryCollection_1Count_FUNC);
- rc = (jint)((GeometryCollection^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, GeometryCollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GeometryCollection_1Remove
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GeometryCollection_1Remove)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GeometryCollection_1Remove)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GeometryCollection_1Remove_FUNC);
- ((GeometryCollection^)TO_OBJECT(arg0))->Remove((Geometry^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GeometryCollection_1Remove_FUNC);
-}
-#endif
-
-#ifndef NO_GeometryGroup_1Children__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GeometryGroup_1Children__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GeometryGroup_1Children__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GeometryGroup_1Children__I_FUNC);
- rc = (jint)TO_HANDLE(((GeometryGroup^)TO_OBJECT(arg0))->Children);
- OS_NATIVE_EXIT(env, that, GeometryGroup_1Children__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GeometryGroup_1Children__II
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GeometryGroup_1Children__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(GeometryGroup_1Children__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GeometryGroup_1Children__II_FUNC);
- rc = (jint)TO_HANDLE(((GeometryGroup^)TO_OBJECT(arg0))->Children[arg1]);
- OS_NATIVE_EXIT(env, that, GeometryGroup_1Children__II_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1Bounds
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1Bounds)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1Bounds)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Geometry_1Bounds_FUNC);
- rc = (jint)TO_HANDLE(((Geometry^)TO_OBJECT(arg0))->Bounds);
- OS_NATIVE_EXIT(env, that, Geometry_1Bounds_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1Clone
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1Clone)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1Clone)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Geometry_1Clone_FUNC);
- rc = (jint)TO_HANDLE(((Geometry^)TO_OBJECT(arg0))->Clone());
- OS_NATIVE_EXIT(env, that, Geometry_1Clone_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1FillContains
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Geometry_1FillContains)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Geometry_1FillContains)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Geometry_1FillContains_FUNC);
- rc = (jboolean)((Geometry^)TO_OBJECT(arg0))->FillContains((Point)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Geometry_1FillContains_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1FillContainsWithDetail
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1FillContainsWithDetail)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1FillContainsWithDetail)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Geometry_1FillContainsWithDetail_FUNC);
- rc = (jint)((Geometry^)TO_OBJECT(arg0))->FillContainsWithDetail((Geometry^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Geometry_1FillContainsWithDetail_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1GetFlattenedPathGeometry
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1GetFlattenedPathGeometry)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1GetFlattenedPathGeometry)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Geometry_1GetFlattenedPathGeometry_FUNC);
- rc = (jint)TO_HANDLE(((Geometry^)TO_OBJECT(arg0))->GetFlattenedPathGeometry());
- OS_NATIVE_EXIT(env, that, Geometry_1GetFlattenedPathGeometry_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1IsEmpty
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Geometry_1IsEmpty)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Geometry_1IsEmpty)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Geometry_1IsEmpty_FUNC);
- rc = (jboolean)((Geometry^)TO_OBJECT(arg0))->IsEmpty();
- OS_NATIVE_EXIT(env, that, Geometry_1IsEmpty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1StrokeContains
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Geometry_1StrokeContains)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Geometry_1StrokeContains)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Geometry_1StrokeContains_FUNC);
- rc = (jboolean)((Geometry^)TO_OBJECT(arg0))->StrokeContains((Pen^)TO_OBJECT(arg1), (Point)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, Geometry_1StrokeContains_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1Transform__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1Transform__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Geometry_1Transform__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Geometry_1Transform__I_FUNC);
- rc = (jint)TO_HANDLE(((Geometry^)TO_OBJECT(arg0))->Transform);
- OS_NATIVE_EXIT(env, that, Geometry_1Transform__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Geometry_1Transform__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Geometry_1Transform__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Geometry_1Transform__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Geometry_1Transform__II_FUNC);
- ((Geometry^)TO_OBJECT(arg0))->Transform = ((Transform^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Geometry_1Transform__II_FUNC);
-}
-#endif
-
-#ifndef NO_GetCursorPos
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GetCursorPos)(JNIEnv *env, jclass that, jobject arg0);
-JNIEXPORT void JNICALL OS_NATIVE(GetCursorPos)
- (JNIEnv *env, jclass that, jobject arg0)
-{
- POINT _arg0, *lparg0=NULL;
- OS_NATIVE_ENTER(env, that, GetCursorPos_FUNC);
- if (arg0) if ((lparg0 = getPOINTFields(env, arg0, &_arg0)) == NULL) goto fail;
- GetCursorPos((LPPOINT)lparg0);
-fail:
- if (arg0 && lparg0) setPOINTFields(env, arg0, lparg0);
- OS_NATIVE_EXIT(env, that, GetCursorPos_FUNC);
-}
-#endif
-
-#ifndef NO_GetIconInfo
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(GetIconInfo)(JNIEnv *env, jclass that, jint arg0, jobject arg1);
-JNIEXPORT jboolean JNICALL OS_NATIVE(GetIconInfo)
- (JNIEnv *env, jclass that, jint arg0, jobject arg1)
-{
- ICONINFO _arg1, *lparg1=NULL;
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, GetIconInfo_FUNC);
- if (arg1) if ((lparg1 = getICONINFOFields(env, arg1, &_arg1)) == NULL) goto fail;
- rc = (jboolean)GetIconInfo((HICON)arg0, lparg1);
-fail:
- if (arg1 && lparg1) setICONINFOFields(env, arg1, lparg1);
- OS_NATIVE_EXIT(env, that, GetIconInfo_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GetKeyboardState
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(GetKeyboardState)(JNIEnv *env, jclass that, jbyteArray arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(GetKeyboardState)
- (JNIEnv *env, jclass that, jbyteArray arg0)
-{
- jbyte *lparg0=NULL;
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, GetKeyboardState_FUNC);
- if (arg0) if ((lparg0 = env->GetByteArrayElements(arg0, NULL)) == NULL) goto fail;
- rc = (jboolean)GetKeyboardState((PBYTE)lparg0);
-fail:
- if (arg0 && lparg0) env->ReleaseByteArrayElements(arg0, lparg0, 0);
- OS_NATIVE_EXIT(env, that, GetKeyboardState_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GetModuleHandleW
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GetModuleHandleW)(JNIEnv *env, jclass that, jcharArray arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GetModuleHandleW)
- (JNIEnv *env, jclass that, jcharArray arg0)
-{
- jchar *lparg0=NULL;
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GetModuleHandleW_FUNC);
- if (arg0) if ((lparg0 = env->GetCharArrayElements(arg0, NULL)) == NULL) goto fail;
- rc = (jint)GetModuleHandleW((LPCWSTR)lparg0);
-fail:
- if (arg0 && lparg0) env->ReleaseCharArrayElements(arg0, lparg0, 0);
- OS_NATIVE_EXIT(env, that, GetModuleHandleW_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GlyphRun_1BidiLevel
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GlyphRun_1BidiLevel)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GlyphRun_1BidiLevel)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GlyphRun_1BidiLevel_FUNC);
- rc = (jint)((GlyphRun^)TO_OBJECT(arg0))->BidiLevel;
- OS_NATIVE_EXIT(env, that, GlyphRun_1BidiLevel_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GradientBrush_1MappingMode
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GradientBrush_1MappingMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GradientBrush_1MappingMode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GradientBrush_1MappingMode_FUNC);
- ((GradientBrush^)TO_OBJECT(arg0))->MappingMode = ((BrushMappingMode)arg1);
- OS_NATIVE_EXIT(env, that, GradientBrush_1MappingMode_FUNC);
-}
-#endif
-
-#ifndef NO_GradientBrush_1SpreadMethod
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GradientBrush_1SpreadMethod)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GradientBrush_1SpreadMethod)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GradientBrush_1SpreadMethod_FUNC);
- ((GradientBrush^)TO_OBJECT(arg0))->SpreadMethod = ((GradientSpreadMethod)arg1);
- OS_NATIVE_EXIT(env, that, GradientBrush_1SpreadMethod_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewColumnCollection_1Clear
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewColumnCollection_1Clear)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewColumnCollection_1Clear)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, GridViewColumnCollection_1Clear_FUNC);
- ((GridViewColumnCollection^)TO_OBJECT(arg0))->Clear();
- OS_NATIVE_EXIT(env, that, GridViewColumnCollection_1Clear_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewColumnCollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumnCollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumnCollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumnCollection_1Count_FUNC);
- rc = (jint)((GridViewColumnCollection^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, GridViewColumnCollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumnCollection_1IndexOf
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumnCollection_1IndexOf)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumnCollection_1IndexOf)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumnCollection_1IndexOf_FUNC);
- rc = (jint)((GridViewColumnCollection ^)TO_OBJECT(arg0))->IndexOf((GridViewColumn^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridViewColumnCollection_1IndexOf_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumnCollection_1Insert
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewColumnCollection_1Insert)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewColumnCollection_1Insert)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, GridViewColumnCollection_1Insert_FUNC);
- ((GridViewColumnCollection^)TO_OBJECT(arg0))->Insert(arg1, (GridViewColumn^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, GridViewColumnCollection_1Insert_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewColumnCollection_1Remove
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(GridViewColumnCollection_1Remove)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jboolean JNICALL OS_NATIVE(GridViewColumnCollection_1Remove)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumnCollection_1Remove_FUNC);
- rc = (jboolean)((GridViewColumnCollection^)TO_OBJECT(arg0))->Remove((GridViewColumn^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridViewColumnCollection_1Remove_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumnCollection_1default
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumnCollection_1default)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumnCollection_1default)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumnCollection_1default_FUNC);
- rc = (jint)TO_HANDLE(((GridViewColumnCollection^)TO_OBJECT(arg0))->default[arg1]);
- OS_NATIVE_EXIT(env, that, GridViewColumnCollection_1default_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumnHeader_1Content
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewColumnHeader_1Content)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewColumnHeader_1Content)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GridViewColumnHeader_1Content_FUNC);
- ((GridViewColumnHeader^)TO_OBJECT(arg0))->Content = ((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridViewColumnHeader_1Content_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewColumn_1ActualWidth
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(GridViewColumn_1ActualWidth)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(GridViewColumn_1ActualWidth)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumn_1ActualWidth_FUNC);
- rc = (jdouble)((GridViewColumn^)TO_OBJECT(arg0))->ActualWidth;
- OS_NATIVE_EXIT(env, that, GridViewColumn_1ActualWidth_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumn_1CellTemplate__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumn_1CellTemplate__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumn_1CellTemplate__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumn_1CellTemplate__I_FUNC);
- rc = (jint)TO_HANDLE(((GridViewColumn^)TO_OBJECT(arg0))->CellTemplate);
- OS_NATIVE_EXIT(env, that, GridViewColumn_1CellTemplate__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumn_1CellTemplate__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewColumn_1CellTemplate__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewColumn_1CellTemplate__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GridViewColumn_1CellTemplate__II_FUNC);
- ((GridViewColumn^)TO_OBJECT(arg0))->CellTemplate = ((DataTemplate^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridViewColumn_1CellTemplate__II_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewColumn_1Header__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumn_1Header__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumn_1Header__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumn_1Header__I_FUNC);
- rc = (jint)TO_HANDLE(((GridViewColumn^)TO_OBJECT(arg0))->Header);
- OS_NATIVE_EXIT(env, that, GridViewColumn_1Header__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumn_1Header__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewColumn_1Header__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewColumn_1Header__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GridViewColumn_1Header__II_FUNC);
- ((GridViewColumn^)TO_OBJECT(arg0))->Header = ((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridViewColumn_1Header__II_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewColumn_1HeaderTemplate__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumn_1HeaderTemplate__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumn_1HeaderTemplate__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumn_1HeaderTemplate__I_FUNC);
- rc = (jint)TO_HANDLE(((GridViewColumn^)TO_OBJECT(arg0))->HeaderTemplate);
- OS_NATIVE_EXIT(env, that, GridViewColumn_1HeaderTemplate__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumn_1HeaderTemplate__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewColumn_1HeaderTemplate__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewColumn_1HeaderTemplate__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GridViewColumn_1HeaderTemplate__II_FUNC);
- ((GridViewColumn^)TO_OBJECT(arg0))->HeaderTemplate = ((DataTemplate^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridViewColumn_1HeaderTemplate__II_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewColumn_1Width__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(GridViewColumn_1Width__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(GridViewColumn_1Width__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumn_1Width__I_FUNC);
- rc = (jdouble)((GridViewColumn^)TO_OBJECT(arg0))->Width;
- OS_NATIVE_EXIT(env, that, GridViewColumn_1Width__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewColumn_1Width__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewColumn_1Width__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewColumn_1Width__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, GridViewColumn_1Width__ID_FUNC);
- ((GridViewColumn^)TO_OBJECT(arg0))->Width = (arg1);
- OS_NATIVE_EXIT(env, that, GridViewColumn_1Width__ID_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewColumn_1WidthProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumn_1WidthProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewColumn_1WidthProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewColumn_1WidthProperty_FUNC);
- rc = (jint)TO_HANDLE(GridViewColumn::WidthProperty);
- OS_NATIVE_EXIT(env, that, GridViewColumn_1WidthProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewHeaderRowPresenter_1ColumnsProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewHeaderRowPresenter_1ColumnsProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewHeaderRowPresenter_1ColumnsProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewHeaderRowPresenter_1ColumnsProperty_FUNC);
- rc = (jint)TO_HANDLE(GridViewHeaderRowPresenter::ColumnsProperty);
- OS_NATIVE_EXIT(env, that, GridViewHeaderRowPresenter_1ColumnsProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewHeaderRowPresenter_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewHeaderRowPresenter_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewHeaderRowPresenter_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewHeaderRowPresenter_1typeid_FUNC);
- rc = (jint)TO_HANDLE(GridViewHeaderRowPresenter::typeid);
- OS_NATIVE_EXIT(env, that, GridViewHeaderRowPresenter_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewRowPresenterBase_1Columns
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewRowPresenterBase_1Columns)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewRowPresenterBase_1Columns)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GridViewRowPresenterBase_1Columns_FUNC);
- ((GridViewRowPresenterBase^)TO_OBJECT(arg0))->Columns = ((GridViewColumnCollection^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridViewRowPresenterBase_1Columns_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewRowPresenter_1Content__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewRowPresenter_1Content__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewRowPresenter_1Content__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewRowPresenter_1Content__I_FUNC);
- rc = (jint)TO_HANDLE(((GridViewRowPresenter^)TO_OBJECT(arg0))->Content);
- OS_NATIVE_EXIT(env, that, GridViewRowPresenter_1Content__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridViewRowPresenter_1Content__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridViewRowPresenter_1Content__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridViewRowPresenter_1Content__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GridViewRowPresenter_1Content__II_FUNC);
- ((GridViewRowPresenter^)TO_OBJECT(arg0))->Content = ((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridViewRowPresenter_1Content__II_FUNC);
-}
-#endif
-
-#ifndef NO_GridViewRowPresenter_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridViewRowPresenter_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(GridViewRowPresenter_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridViewRowPresenter_1typeid_FUNC);
- rc = (jint)TO_HANDLE(GridViewRowPresenter::typeid);
- OS_NATIVE_EXIT(env, that, GridViewRowPresenter_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_GridView_1AllowsColumnReorder
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridView_1AllowsColumnReorder)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridView_1AllowsColumnReorder)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, GridView_1AllowsColumnReorder_FUNC);
- ((GridView^)TO_OBJECT(arg0))->AllowsColumnReorder = (arg1);
- OS_NATIVE_EXIT(env, that, GridView_1AllowsColumnReorder_FUNC);
-}
-#endif
-
-#ifndef NO_GridView_1ColumnHeaderContainerStyle
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(GridView_1ColumnHeaderContainerStyle)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(GridView_1ColumnHeaderContainerStyle)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, GridView_1ColumnHeaderContainerStyle_FUNC);
- ((GridView^)TO_OBJECT(arg0))->ColumnHeaderContainerStyle = ((Style^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, GridView_1ColumnHeaderContainerStyle_FUNC);
-}
-#endif
-
-#ifndef NO_GridView_1Columns
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(GridView_1Columns)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(GridView_1Columns)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, GridView_1Columns_FUNC);
- rc = (jint)TO_HANDLE(((GridView^)TO_OBJECT(arg0))->Columns);
- OS_NATIVE_EXIT(env, that, GridView_1Columns_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Grid_1ColumnDefinitions
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Grid_1ColumnDefinitions)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Grid_1ColumnDefinitions)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Grid_1ColumnDefinitions_FUNC);
- rc = (jint)TO_HANDLE(((Grid^)TO_OBJECT(arg0))->ColumnDefinitions);
- OS_NATIVE_EXIT(env, that, Grid_1ColumnDefinitions_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Grid_1RowDefinitions
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Grid_1RowDefinitions)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Grid_1RowDefinitions)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Grid_1RowDefinitions_FUNC);
- rc = (jint)TO_HANDLE(((Grid^)TO_OBJECT(arg0))->RowDefinitions);
- OS_NATIVE_EXIT(env, that, Grid_1RowDefinitions_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Grid_1SetColumn
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Grid_1SetColumn)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Grid_1SetColumn)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Grid_1SetColumn_FUNC);
- Grid::SetColumn((UIElement^)TO_OBJECT(arg0), arg1);
- OS_NATIVE_EXIT(env, that, Grid_1SetColumn_FUNC);
-}
-#endif
-
-#ifndef NO_Grid_1SetColumnSpan
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Grid_1SetColumnSpan)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Grid_1SetColumnSpan)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Grid_1SetColumnSpan_FUNC);
- Grid::SetColumnSpan((UIElement^)TO_OBJECT(arg0), arg1);
- OS_NATIVE_EXIT(env, that, Grid_1SetColumnSpan_FUNC);
-}
-#endif
-
-#ifndef NO_Grid_1SetRow
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Grid_1SetRow)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Grid_1SetRow)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Grid_1SetRow_FUNC);
- Grid::SetRow((UIElement^)TO_OBJECT(arg0), arg1);
- OS_NATIVE_EXIT(env, that, Grid_1SetRow_FUNC);
-}
-#endif
-
-#ifndef NO_Grid_1SetRowSpan
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Grid_1SetRowSpan)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Grid_1SetRowSpan)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Grid_1SetRowSpan_FUNC);
- Grid::SetRowSpan((UIElement^)TO_OBJECT(arg0), arg1);
- OS_NATIVE_EXIT(env, that, Grid_1SetRowSpan_FUNC);
-}
-#endif
-
-#ifndef NO_HeaderedContentControl_1Header__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(HeaderedContentControl_1Header__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(HeaderedContentControl_1Header__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, HeaderedContentControl_1Header__I_FUNC);
- rc = (jint)TO_HANDLE(((HeaderedContentControl^)TO_OBJECT(arg0))->Header);
- OS_NATIVE_EXIT(env, that, HeaderedContentControl_1Header__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_HeaderedContentControl_1Header__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(HeaderedContentControl_1Header__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(HeaderedContentControl_1Header__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, HeaderedContentControl_1Header__II_FUNC);
- ((HeaderedContentControl^)TO_OBJECT(arg0))->Header = ((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, HeaderedContentControl_1Header__II_FUNC);
-}
-#endif
-
-#ifndef NO_HeaderedItemsControl_1Header__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(HeaderedItemsControl_1Header__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(HeaderedItemsControl_1Header__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, HeaderedItemsControl_1Header__I_FUNC);
- rc = (jint)TO_HANDLE(((HeaderedItemsControl^)TO_OBJECT(arg0))->Header);
- OS_NATIVE_EXIT(env, that, HeaderedItemsControl_1Header__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_HeaderedItemsControl_1Header__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(HeaderedItemsControl_1Header__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(HeaderedItemsControl_1Header__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, HeaderedItemsControl_1Header__II_FUNC);
- ((HeaderedItemsControl^)TO_OBJECT(arg0))->Header = ((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, HeaderedItemsControl_1Header__II_FUNC);
-}
-#endif
-
-#ifndef NO_Hyperlink_1Click
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Hyperlink_1Click)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Hyperlink_1Click)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Hyperlink_1Click_FUNC);
- ((Hyperlink^)TO_OBJECT(arg0))->Click += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Hyperlink_1Click_FUNC);
-}
-#endif
-
-#ifndef NO_ICollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ICollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ICollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ICollection_1Count_FUNC);
- rc = (jint)((ICollection^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, ICollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IEnumerator_1Current
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IEnumerator_1Current)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(IEnumerator_1Current)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IEnumerator_1Current_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerator^)TO_OBJECT(arg0))->Current);
- OS_NATIVE_EXIT(env, that, IEnumerator_1Current_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IEnumerator_1MoveNext
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(IEnumerator_1MoveNext)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(IEnumerator_1MoveNext)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, IEnumerator_1MoveNext_FUNC);
- rc = (jboolean)((IEnumerator^)TO_OBJECT(arg0))->MoveNext();
- OS_NATIVE_EXIT(env, that, IEnumerator_1MoveNext_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IList_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(IList_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(IList_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, IList_1Add_FUNC);
- ((IList^)TO_OBJECT(arg0))->Add((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, IList_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_IList_1GetEnumerator
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IList_1GetEnumerator)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(IList_1GetEnumerator)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IList_1GetEnumerator_FUNC);
- rc = (jint)TO_HANDLE(((IList^)TO_OBJECT(arg0))->GetEnumerator());
- OS_NATIVE_EXIT(env, that, IList_1GetEnumerator_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IList_1default
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IList_1default)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(IList_1default)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IList_1default_FUNC);
- rc = (jint)TO_HANDLE(((IList^)TO_OBJECT(arg0))->default[arg1]);
- OS_NATIVE_EXIT(env, that, IList_1default_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ImageSource_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ImageSource_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ImageSource_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ImageSource_1typeid_FUNC);
- rc = (jint)TO_HANDLE(ImageSource::typeid);
- OS_NATIVE_EXIT(env, that, ImageSource_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Image_1Source
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Image_1Source)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Image_1Source)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Image_1Source_FUNC);
- ((Image^)TO_OBJECT(arg0))->Source = ((ImageSource^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Image_1Source_FUNC);
-}
-#endif
-
-#ifndef NO_Image_1SourceProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Image_1SourceProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Image_1SourceProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Image_1SourceProperty_FUNC);
- rc = (jint)TO_HANDLE(Image::SourceProperty);
- OS_NATIVE_EXIT(env, that, Image_1SourceProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Image_1Stretch
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Image_1Stretch)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Image_1Stretch)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Image_1Stretch_FUNC);
- ((Image^)TO_OBJECT(arg0))->Stretch = ((Stretch)arg1);
- OS_NATIVE_EXIT(env, that, Image_1Stretch_FUNC);
-}
-#endif
-
-#ifndef NO_Image_1StretchProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Image_1StretchProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Image_1StretchProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Image_1StretchProperty_FUNC);
- rc = (jint)TO_HANDLE(Image::StretchProperty);
- OS_NATIVE_EXIT(env, that, Image_1StretchProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Image_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Image_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Image_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Image_1typeid_FUNC);
- rc = (jint)TO_HANDLE(Image::typeid);
- OS_NATIVE_EXIT(env, that, Image_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Imaging_1CreateBitmapSourceFromHIcon
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Imaging_1CreateBitmapSourceFromHIcon)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT jint JNICALL OS_NATIVE(Imaging_1CreateBitmapSourceFromHIcon)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Imaging_1CreateBitmapSourceFromHIcon_FUNC);
- rc = (jint)TO_HANDLE(System::Windows::Interop::Imaging::CreateBitmapSourceFromHIcon((IntPtr)arg0, (Int32Rect)TO_OBJECT(arg1), (BitmapSizeOptions^)TO_OBJECT(arg2)));
- OS_NATIVE_EXIT(env, that, Imaging_1CreateBitmapSourceFromHIcon_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IndexedGlyphRunCollection_1Current
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRunCollection_1Current)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRunCollection_1Current)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IndexedGlyphRunCollection_1Current_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerator^)TO_OBJECT(arg0))->Current);
- OS_NATIVE_EXIT(env, that, IndexedGlyphRunCollection_1Current_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IndexedGlyphRunCollection_1GetEnumerator
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRunCollection_1GetEnumerator)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRunCollection_1GetEnumerator)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IndexedGlyphRunCollection_1GetEnumerator_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerable^)TO_OBJECT(arg0))->GetEnumerator());
- OS_NATIVE_EXIT(env, that, IndexedGlyphRunCollection_1GetEnumerator_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IndexedGlyphRun_1GlyphRun
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRun_1GlyphRun)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRun_1GlyphRun)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IndexedGlyphRun_1GlyphRun_FUNC);
- rc = (jint)TO_HANDLE(((IndexedGlyphRun^)TO_OBJECT(arg0))->GlyphRun);
- OS_NATIVE_EXIT(env, that, IndexedGlyphRun_1GlyphRun_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IndexedGlyphRun_1TextSourceCharacterIndex
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRun_1TextSourceCharacterIndex)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRun_1TextSourceCharacterIndex)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IndexedGlyphRun_1TextSourceCharacterIndex_FUNC);
- rc = (jint)((IndexedGlyphRun^)TO_OBJECT(arg0))->TextSourceCharacterIndex;
- OS_NATIVE_EXIT(env, that, IndexedGlyphRun_1TextSourceCharacterIndex_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IndexedGlyphRun_1TextSourceLength
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRun_1TextSourceLength)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(IndexedGlyphRun_1TextSourceLength)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IndexedGlyphRun_1TextSourceLength_FUNC);
- rc = (jint)((IndexedGlyphRun^)TO_OBJECT(arg0))->TextSourceLength;
- OS_NATIVE_EXIT(env, that, IndexedGlyphRun_1TextSourceLength_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_InlineCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(InlineCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(InlineCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, InlineCollection_1Add_FUNC);
- ((InlineCollection^)TO_OBJECT(arg0))->Add((Inline^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, InlineCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_InlineCollection_1Clear
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(InlineCollection_1Clear)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(InlineCollection_1Clear)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, InlineCollection_1Clear_FUNC);
- ((InlineCollection^)TO_OBJECT(arg0))->Clear();
- OS_NATIVE_EXIT(env, that, InlineCollection_1Clear_FUNC);
-}
-#endif
-
-#ifndef NO_InputEventArgs_1Timestamp
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(InputEventArgs_1Timestamp)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(InputEventArgs_1Timestamp)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, InputEventArgs_1Timestamp_FUNC);
- rc = (jint)((InputEventArgs^)TO_OBJECT(arg0))->Timestamp;
- OS_NATIVE_EXIT(env, that, InputEventArgs_1Timestamp_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Int32Rect_1Empty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Int32Rect_1Empty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Int32Rect_1Empty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Int32Rect_1Empty_FUNC);
- rc = (jint)TO_HANDLE(Int32Rect::Empty);
- OS_NATIVE_EXIT(env, that, Int32Rect_1Empty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_IntPtr_1ToInt32
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(IntPtr_1ToInt32)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(IntPtr_1ToInt32)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, IntPtr_1ToInt32_FUNC);
- rc = (jint)((IntPtr^)TO_OBJECT(arg0))->ToInt32();
- OS_NATIVE_EXIT(env, that, IntPtr_1ToInt32_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ItemCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ItemCollection_1Add_FUNC);
- ((ItemCollection^)TO_OBJECT(arg0))->Add((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ItemCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_ItemCollection_1Clear
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1Clear)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1Clear)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, ItemCollection_1Clear_FUNC);
- ((ItemCollection^)TO_OBJECT(arg0))->Clear();
- OS_NATIVE_EXIT(env, that, ItemCollection_1Clear_FUNC);
-}
-#endif
-
-#ifndef NO_ItemCollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ItemCollection_1Count_FUNC);
- rc = (jint)((ItemCollection^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, ItemCollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ItemCollection_1CurrentItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1CurrentItem)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1CurrentItem)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ItemCollection_1CurrentItem_FUNC);
- rc = (jint)TO_HANDLE(((ItemCollection^)TO_OBJECT(arg0))->CurrentItem);
- OS_NATIVE_EXIT(env, that, ItemCollection_1CurrentItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ItemCollection_1CurrentPosition
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1CurrentPosition)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1CurrentPosition)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ItemCollection_1CurrentPosition_FUNC);
- rc = (jint)((ItemCollection^)TO_OBJECT(arg0))->CurrentPosition;
- OS_NATIVE_EXIT(env, that, ItemCollection_1CurrentPosition_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ItemCollection_1GetItemAt
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1GetItemAt)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1GetItemAt)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ItemCollection_1GetItemAt_FUNC);
- rc = (jint)TO_HANDLE(((ItemCollection^)TO_OBJECT(arg0))->GetItemAt(arg1));
- OS_NATIVE_EXIT(env, that, ItemCollection_1GetItemAt_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ItemCollection_1IndexOf
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1IndexOf)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(ItemCollection_1IndexOf)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ItemCollection_1IndexOf_FUNC);
- rc = (jint)((ItemCollection^)TO_OBJECT(arg0))->IndexOf((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ItemCollection_1IndexOf_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ItemCollection_1Insert
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1Insert)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1Insert)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, ItemCollection_1Insert_FUNC);
- ((ItemCollection^)TO_OBJECT(arg0))->Insert(arg1, (Object^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, ItemCollection_1Insert_FUNC);
-}
-#endif
-
-#ifndef NO_ItemCollection_1Remove
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1Remove)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1Remove)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ItemCollection_1Remove_FUNC);
- ((ItemCollection^)TO_OBJECT(arg0))->Remove((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ItemCollection_1Remove_FUNC);
-}
-#endif
-
-#ifndef NO_ItemCollection_1RemoveAt
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1RemoveAt)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ItemCollection_1RemoveAt)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ItemCollection_1RemoveAt_FUNC);
- ((ItemCollection^)TO_OBJECT(arg0))->RemoveAt(arg1);
- OS_NATIVE_EXIT(env, that, ItemCollection_1RemoveAt_FUNC);
-}
-#endif
-
-#ifndef NO_ItemsControl_1HasItems
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(ItemsControl_1HasItems)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(ItemsControl_1HasItems)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, ItemsControl_1HasItems_FUNC);
- rc = (jboolean)((ItemsControl^)TO_OBJECT(arg0))->HasItems;
- OS_NATIVE_EXIT(env, that, ItemsControl_1HasItems_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ItemsControl_1Items
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ItemsControl_1Items)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ItemsControl_1Items)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ItemsControl_1Items_FUNC);
- rc = (jint)TO_HANDLE(((ItemsControl^)TO_OBJECT(arg0))->Items);
- OS_NATIVE_EXIT(env, that, ItemsControl_1Items_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ItemsControl_1ItemsSource
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ItemsControl_1ItemsSource)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ItemsControl_1ItemsSource)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ItemsControl_1ItemsSource_FUNC);
- ((ItemsControl^)TO_OBJECT(arg0))->ItemsSource = ((IEnumerable^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ItemsControl_1ItemsSource_FUNC);
-}
-#endif
-
-#ifndef NO_ItemsPresenter_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ItemsPresenter_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ItemsPresenter_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ItemsPresenter_1typeid_FUNC);
- rc = (jint)TO_HANDLE(ItemsPresenter::typeid);
- OS_NATIVE_EXIT(env, that, ItemsPresenter_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyEventArgs_1IsDown
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(KeyEventArgs_1IsDown)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(KeyEventArgs_1IsDown)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, KeyEventArgs_1IsDown_FUNC);
- rc = (jboolean)((KeyEventArgs^)TO_OBJECT(arg0))->IsDown;
- OS_NATIVE_EXIT(env, that, KeyEventArgs_1IsDown_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyEventArgs_1IsRepeat
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(KeyEventArgs_1IsRepeat)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(KeyEventArgs_1IsRepeat)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, KeyEventArgs_1IsRepeat_FUNC);
- rc = (jboolean)((KeyEventArgs^)TO_OBJECT(arg0))->IsRepeat;
- OS_NATIVE_EXIT(env, that, KeyEventArgs_1IsRepeat_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyEventArgs_1IsToggled
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(KeyEventArgs_1IsToggled)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(KeyEventArgs_1IsToggled)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, KeyEventArgs_1IsToggled_FUNC);
- rc = (jboolean)((KeyEventArgs^)TO_OBJECT(arg0))->IsToggled;
- OS_NATIVE_EXIT(env, that, KeyEventArgs_1IsToggled_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyEventArgs_1Key
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(KeyEventArgs_1Key)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(KeyEventArgs_1Key)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, KeyEventArgs_1Key_FUNC);
- rc = (jint)((KeyEventArgs^)TO_OBJECT(arg0))->Key;
- OS_NATIVE_EXIT(env, that, KeyEventArgs_1Key_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyEventArgs_1SystemKey
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(KeyEventArgs_1SystemKey)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(KeyEventArgs_1SystemKey)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, KeyEventArgs_1SystemKey_FUNC);
- rc = (jint)((KeyEventArgs^)TO_OBJECT(arg0))->SystemKey;
- OS_NATIVE_EXIT(env, that, KeyEventArgs_1SystemKey_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyInterop_1VirtualKeyFromKey
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(KeyInterop_1VirtualKeyFromKey)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(KeyInterop_1VirtualKeyFromKey)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, KeyInterop_1VirtualKeyFromKey_FUNC);
- rc = (jint)KeyInterop::VirtualKeyFromKey((Key)arg0);
- OS_NATIVE_EXIT(env, that, KeyInterop_1VirtualKeyFromKey_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyTime_1Uniform
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(KeyTime_1Uniform)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(KeyTime_1Uniform)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, KeyTime_1Uniform_FUNC);
- rc = (jint)TO_HANDLE(KeyTime::Uniform);
- OS_NATIVE_EXIT(env, that, KeyTime_1Uniform_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyboardDevice_1Modifiers
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(KeyboardDevice_1Modifiers)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(KeyboardDevice_1Modifiers)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, KeyboardDevice_1Modifiers_FUNC);
- rc = (jint)((KeyboardDevice^)TO_OBJECT(arg0))->Modifiers;
- OS_NATIVE_EXIT(env, that, KeyboardDevice_1Modifiers_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyboardEventArgs_1KeyboardDevice
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(KeyboardEventArgs_1KeyboardDevice)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(KeyboardEventArgs_1KeyboardDevice)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, KeyboardEventArgs_1KeyboardDevice_FUNC);
- rc = (jint)TO_HANDLE(((KeyboardEventArgs^)TO_OBJECT(arg0))->KeyboardDevice);
- OS_NATIVE_EXIT(env, that, KeyboardEventArgs_1KeyboardDevice_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_KeyboardNavigation_1SetTabNavigation
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(KeyboardNavigation_1SetTabNavigation)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(KeyboardNavigation_1SetTabNavigation)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, KeyboardNavigation_1SetTabNavigation_FUNC);
- KeyboardNavigation::SetTabNavigation((DependencyObject^)TO_OBJECT(arg0), (KeyboardNavigationMode)arg1);
- OS_NATIVE_EXIT(env, that, KeyboardNavigation_1SetTabNavigation_FUNC);
-}
-#endif
-
-#ifndef NO_Keyboard_1FocusedElement
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Keyboard_1FocusedElement)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Keyboard_1FocusedElement)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Keyboard_1FocusedElement_FUNC);
- rc = (jint)TO_HANDLE(Keyboard::FocusedElement);
- OS_NATIVE_EXIT(env, that, Keyboard_1FocusedElement_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Keyboard_1Modifiers
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Keyboard_1Modifiers)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Keyboard_1Modifiers)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Keyboard_1Modifiers_FUNC);
- rc = (jint)Keyboard::Modifiers;
- OS_NATIVE_EXIT(env, that, Keyboard_1Modifiers_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ListBoxItem_1IsSelected__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(ListBoxItem_1IsSelected__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(ListBoxItem_1IsSelected__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, ListBoxItem_1IsSelected__I_FUNC);
- rc = (jboolean)((ListBoxItem^)TO_OBJECT(arg0))->IsSelected;
- OS_NATIVE_EXIT(env, that, ListBoxItem_1IsSelected__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ListBoxItem_1IsSelected__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ListBoxItem_1IsSelected__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ListBoxItem_1IsSelected__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ListBoxItem_1IsSelected__IZ_FUNC);
- ((ListBoxItem^)TO_OBJECT(arg0))->IsSelected = (arg1);
- OS_NATIVE_EXIT(env, that, ListBoxItem_1IsSelected__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_ListBox_1ScrollIntoView
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ListBox_1ScrollIntoView)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ListBox_1ScrollIntoView)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ListBox_1ScrollIntoView_FUNC);
- ((ListBox^)TO_OBJECT(arg0))->ScrollIntoView((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ListBox_1ScrollIntoView_FUNC);
-}
-#endif
-
-#ifndef NO_ListBox_1SelectAll
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ListBox_1SelectAll)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(ListBox_1SelectAll)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, ListBox_1SelectAll_FUNC);
- ((ListBox^)TO_OBJECT(arg0))->SelectAll();
- OS_NATIVE_EXIT(env, that, ListBox_1SelectAll_FUNC);
-}
-#endif
-
-#ifndef NO_ListBox_1SelectedItems
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ListBox_1SelectedItems)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ListBox_1SelectedItems)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ListBox_1SelectedItems_FUNC);
- rc = (jint)TO_HANDLE(((ListBox^)TO_OBJECT(arg0))->SelectedItems);
- OS_NATIVE_EXIT(env, that, ListBox_1SelectedItems_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ListBox_1SelectionMode
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ListBox_1SelectionMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ListBox_1SelectionMode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ListBox_1SelectionMode_FUNC);
- ((ListBox^)TO_OBJECT(arg0))->SelectionMode = ((SelectionMode)arg1);
- OS_NATIVE_EXIT(env, that, ListBox_1SelectionMode_FUNC);
-}
-#endif
-
-#ifndef NO_ListBox_1UnselectAll
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ListBox_1UnselectAll)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(ListBox_1UnselectAll)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, ListBox_1UnselectAll_FUNC);
- ((ListBox^)TO_OBJECT(arg0))->UnselectAll();
- OS_NATIVE_EXIT(env, that, ListBox_1UnselectAll_FUNC);
-}
-#endif
-
-#ifndef NO_ListView_1View
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ListView_1View)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ListView_1View)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ListView_1View_FUNC);
- ((ListView^)TO_OBJECT(arg0))->View = ((ViewBase^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ListView_1View_FUNC);
-}
-#endif
-
-#ifndef NO_LoadImage
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(LoadImage)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5);
-JNIEXPORT jint JNICALL OS_NATIVE(LoadImage)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, LoadImage_FUNC);
- rc = (jint)LoadImage((HINSTANCE)arg0, (LPCTSTR)arg1, (UINT)arg2, arg3, arg4, (UINT)arg5);
- OS_NATIVE_EXIT(env, that, LoadImage_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MapVirtualKeyW
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MapVirtualKeyW)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(MapVirtualKeyW)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MapVirtualKeyW_FUNC);
- rc = (jint)MapVirtualKeyW(arg0, arg1);
- OS_NATIVE_EXIT(env, that, MapVirtualKeyW_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MatrixTransform_1Matrix__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MatrixTransform_1Matrix__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MatrixTransform_1Matrix__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MatrixTransform_1Matrix__I_FUNC);
- rc = (jint)TO_HANDLE(((MatrixTransform^)TO_OBJECT(arg0))->Matrix);
- OS_NATIVE_EXIT(env, that, MatrixTransform_1Matrix__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MatrixTransform_1Matrix__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(MatrixTransform_1Matrix__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(MatrixTransform_1Matrix__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, MatrixTransform_1Matrix__II_FUNC);
- ((MatrixTransform^)TO_OBJECT(arg0))->Matrix = ((Matrix)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, MatrixTransform_1Matrix__II_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1Invert
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1Invert)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1Invert)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1Invert_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->Invert();
- OS_NATIVE_EXIT(env, that, Matrix_1Invert_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1IsIdentity
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Matrix_1IsIdentity)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Matrix_1IsIdentity)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1IsIdentity_FUNC);
- rc = (jboolean)((Matrix^)TO_OBJECT(arg0))->IsIdentity;
- OS_NATIVE_EXIT(env, that, Matrix_1IsIdentity_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1M11__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1M11__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1M11__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1M11__I_FUNC);
- rc = (jdouble)((Matrix^)TO_OBJECT(arg0))->M11;
- OS_NATIVE_EXIT(env, that, Matrix_1M11__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1M11__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1M11__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1M11__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1M11__ID_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->M11 = (arg1);
- OS_NATIVE_EXIT(env, that, Matrix_1M11__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1M12__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1M12__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1M12__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1M12__I_FUNC);
- rc = (jdouble)((Matrix^)TO_OBJECT(arg0))->M12;
- OS_NATIVE_EXIT(env, that, Matrix_1M12__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1M12__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1M12__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1M12__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1M12__ID_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->M12 = (arg1);
- OS_NATIVE_EXIT(env, that, Matrix_1M12__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1M21__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1M21__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1M21__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1M21__I_FUNC);
- rc = (jdouble)((Matrix^)TO_OBJECT(arg0))->M21;
- OS_NATIVE_EXIT(env, that, Matrix_1M21__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1M21__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1M21__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1M21__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1M21__ID_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->M21 = (arg1);
- OS_NATIVE_EXIT(env, that, Matrix_1M21__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1M22__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1M22__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1M22__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1M22__I_FUNC);
- rc = (jdouble)((Matrix^)TO_OBJECT(arg0))->M22;
- OS_NATIVE_EXIT(env, that, Matrix_1M22__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1M22__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1M22__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1M22__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1M22__ID_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->M22 = (arg1);
- OS_NATIVE_EXIT(env, that, Matrix_1M22__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1Multiply
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Matrix_1Multiply)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(Matrix_1Multiply)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1Multiply_FUNC);
- rc = (jint)TO_HANDLE(Matrix::Multiply((Matrix)TO_OBJECT(arg0), (Matrix)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, Matrix_1Multiply_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1OffsetX__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1OffsetX__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1OffsetX__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1OffsetX__I_FUNC);
- rc = (jdouble)((Matrix^)TO_OBJECT(arg0))->OffsetX;
- OS_NATIVE_EXIT(env, that, Matrix_1OffsetX__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1OffsetX__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1OffsetX__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1OffsetX__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1OffsetX__ID_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->OffsetX = (arg1);
- OS_NATIVE_EXIT(env, that, Matrix_1OffsetX__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1OffsetY__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1OffsetY__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Matrix_1OffsetY__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1OffsetY__I_FUNC);
- rc = (jdouble)((Matrix^)TO_OBJECT(arg0))->OffsetY;
- OS_NATIVE_EXIT(env, that, Matrix_1OffsetY__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1OffsetY__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1OffsetY__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1OffsetY__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1OffsetY__ID_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->OffsetY = (arg1);
- OS_NATIVE_EXIT(env, that, Matrix_1OffsetY__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1RotatePrepend
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1RotatePrepend)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1RotatePrepend)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1RotatePrepend_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->RotatePrepend(arg1);
- OS_NATIVE_EXIT(env, that, Matrix_1RotatePrepend_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1ScalePrepend
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1ScalePrepend)(JNIEnv *env, jclass that, jint arg0, jdouble arg1, jdouble arg2);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1ScalePrepend)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1, jdouble arg2)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1ScalePrepend_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->ScalePrepend(arg1, arg2);
- OS_NATIVE_EXIT(env, that, Matrix_1ScalePrepend_FUNC);
-}
-#endif
-
-#ifndef NO_Matrix_1Transform
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Matrix_1Transform)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(Matrix_1Transform)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Matrix_1Transform_FUNC);
- rc = (jint)TO_HANDLE(((Matrix^)TO_OBJECT(arg0))->Transform((Point)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, Matrix_1Transform_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Matrix_1TranslatePrepend
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Matrix_1TranslatePrepend)(JNIEnv *env, jclass that, jint arg0, jdouble arg1, jdouble arg2);
-JNIEXPORT void JNICALL OS_NATIVE(Matrix_1TranslatePrepend)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1, jdouble arg2)
-{
- OS_NATIVE_ENTER(env, that, Matrix_1TranslatePrepend_FUNC);
- ((Matrix^)TO_OBJECT(arg0))->TranslatePrepend(arg1, arg2);
- OS_NATIVE_EXIT(env, that, Matrix_1TranslatePrepend_FUNC);
-}
-#endif
-
-#ifndef NO_MenuItem_1Click
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1Click)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1Click)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, MenuItem_1Click_FUNC);
- ((MenuItem^)TO_OBJECT(arg0))->Click += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, MenuItem_1Click_FUNC);
-}
-#endif
-
-#ifndef NO_MenuItem_1Icon
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1Icon)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1Icon)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, MenuItem_1Icon_FUNC);
- ((MenuItem^)TO_OBJECT(arg0))->Icon = ((Image^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, MenuItem_1Icon_FUNC);
-}
-#endif
-
-#ifndef NO_MenuItem_1InputGestureText
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1InputGestureText)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1InputGestureText)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, MenuItem_1InputGestureText_FUNC);
- ((MenuItem^)TO_OBJECT(arg0))->InputGestureText = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, MenuItem_1InputGestureText_FUNC);
-}
-#endif
-
-#ifndef NO_MenuItem_1IsCheckable
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1IsCheckable)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1IsCheckable)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, MenuItem_1IsCheckable_FUNC);
- ((MenuItem^)TO_OBJECT(arg0))->IsCheckable = (arg1);
- OS_NATIVE_EXIT(env, that, MenuItem_1IsCheckable_FUNC);
-}
-#endif
-
-#ifndef NO_MenuItem_1IsChecked__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(MenuItem_1IsChecked__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(MenuItem_1IsChecked__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, MenuItem_1IsChecked__I_FUNC);
- rc = (jboolean)((MenuItem^)TO_OBJECT(arg0))->IsChecked;
- OS_NATIVE_EXIT(env, that, MenuItem_1IsChecked__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MenuItem_1IsChecked__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1IsChecked__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1IsChecked__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, MenuItem_1IsChecked__IZ_FUNC);
- ((MenuItem^)TO_OBJECT(arg0))->IsChecked = (arg1);
- OS_NATIVE_EXIT(env, that, MenuItem_1IsChecked__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_MenuItem_1SubmenuClosed
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1SubmenuClosed)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1SubmenuClosed)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, MenuItem_1SubmenuClosed_FUNC);
- ((MenuItem^)TO_OBJECT(arg0))->SubmenuClosed += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, MenuItem_1SubmenuClosed_FUNC);
-}
-#endif
-
-#ifndef NO_MenuItem_1SubmenuOpened
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1SubmenuOpened)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(MenuItem_1SubmenuOpened)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, MenuItem_1SubmenuOpened_FUNC);
- ((MenuItem^)TO_OBJECT(arg0))->SubmenuOpened += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, MenuItem_1SubmenuOpened_FUNC);
-}
-#endif
-
-#ifndef NO_Menu_1IsMainMenu
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Menu_1IsMainMenu)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Menu_1IsMainMenu)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Menu_1IsMainMenu_FUNC);
- ((Menu^)TO_OBJECT(arg0))->IsMainMenu = (arg1);
- OS_NATIVE_EXIT(env, that, Menu_1IsMainMenu_FUNC);
-}
-#endif
-
-#ifndef NO_MessageBox_1Show
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MessageBox_1Show)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4);
-JNIEXPORT jint JNICALL OS_NATIVE(MessageBox_1Show)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jint arg4)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MessageBox_1Show_FUNC);
- rc = (jint)MessageBox::Show((String^)TO_OBJECT(arg0), (String^)TO_OBJECT(arg1), (MessageBoxButton)arg2, (MessageBoxImage)arg3, (MessageBoxResult)arg4);
- OS_NATIVE_EXIT(env, that, MessageBox_1Show_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseButtonEventArgs_1ButtonState
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseButtonEventArgs_1ButtonState)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseButtonEventArgs_1ButtonState)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseButtonEventArgs_1ButtonState_FUNC);
- rc = (jint)((MouseButtonEventArgs^)TO_OBJECT(arg0))->ButtonState;
- OS_NATIVE_EXIT(env, that, MouseButtonEventArgs_1ButtonState_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseButtonEventArgs_1ChangedButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseButtonEventArgs_1ChangedButton)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseButtonEventArgs_1ChangedButton)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseButtonEventArgs_1ChangedButton_FUNC);
- rc = (jint)((MouseButtonEventArgs^)TO_OBJECT(arg0))->ChangedButton;
- OS_NATIVE_EXIT(env, that, MouseButtonEventArgs_1ChangedButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseButtonEventArgs_1ClickCount
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseButtonEventArgs_1ClickCount)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseButtonEventArgs_1ClickCount)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseButtonEventArgs_1ClickCount_FUNC);
- rc = (jint)((MouseButtonEventArgs^)TO_OBJECT(arg0))->ClickCount;
- OS_NATIVE_EXIT(env, that, MouseButtonEventArgs_1ClickCount_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseEventArgs_1GetPosition
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1GetPosition)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1GetPosition)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseEventArgs_1GetPosition_FUNC);
- rc = (jint)TO_HANDLE(((MouseEventArgs^)TO_OBJECT(arg0))->GetPosition((IInputElement^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, MouseEventArgs_1GetPosition_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseEventArgs_1LeftButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1LeftButton)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1LeftButton)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseEventArgs_1LeftButton_FUNC);
- rc = (jint)((MouseEventArgs^)TO_OBJECT(arg0))->LeftButton;
- OS_NATIVE_EXIT(env, that, MouseEventArgs_1LeftButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseEventArgs_1MiddleButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1MiddleButton)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1MiddleButton)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseEventArgs_1MiddleButton_FUNC);
- rc = (jint)((MouseEventArgs^)TO_OBJECT(arg0))->MiddleButton;
- OS_NATIVE_EXIT(env, that, MouseEventArgs_1MiddleButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseEventArgs_1RightButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1RightButton)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1RightButton)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseEventArgs_1RightButton_FUNC);
- rc = (jint)((MouseEventArgs^)TO_OBJECT(arg0))->RightButton;
- OS_NATIVE_EXIT(env, that, MouseEventArgs_1RightButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseEventArgs_1XButton1
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1XButton1)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1XButton1)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseEventArgs_1XButton1_FUNC);
- rc = (jint)((MouseEventArgs^)TO_OBJECT(arg0))->XButton1;
- OS_NATIVE_EXIT(env, that, MouseEventArgs_1XButton1_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseEventArgs_1XButton2
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1XButton2)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseEventArgs_1XButton2)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseEventArgs_1XButton2_FUNC);
- rc = (jint)((MouseEventArgs^)TO_OBJECT(arg0))->XButton2;
- OS_NATIVE_EXIT(env, that, MouseEventArgs_1XButton2_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_MouseWheelEventArgs_1Delta
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(MouseWheelEventArgs_1Delta)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(MouseWheelEventArgs_1Delta)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, MouseWheelEventArgs_1Delta_FUNC);
- rc = (jint)((MouseWheelEventArgs^)TO_OBJECT(arg0))->Delta;
- OS_NATIVE_EXIT(env, that, MouseWheelEventArgs_1Delta_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Mouse_1DirectlyOver
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1DirectlyOver)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1DirectlyOver)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Mouse_1DirectlyOver_FUNC);
- rc = (jint)TO_HANDLE(Mouse::DirectlyOver);
- OS_NATIVE_EXIT(env, that, Mouse_1DirectlyOver_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Mouse_1GetPosition
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1GetPosition)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1GetPosition)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Mouse_1GetPosition_FUNC);
- rc = (jint)TO_HANDLE(Mouse::GetPosition((IInputElement^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, Mouse_1GetPosition_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Mouse_1LeftButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1LeftButton)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1LeftButton)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Mouse_1LeftButton_FUNC);
- rc = (jint)Mouse::LeftButton;
- OS_NATIVE_EXIT(env, that, Mouse_1LeftButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Mouse_1MiddleButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1MiddleButton)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1MiddleButton)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Mouse_1MiddleButton_FUNC);
- rc = (jint)Mouse::MiddleButton;
- OS_NATIVE_EXIT(env, that, Mouse_1MiddleButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Mouse_1RightButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1RightButton)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1RightButton)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Mouse_1RightButton_FUNC);
- rc = (jint)Mouse::RightButton;
- OS_NATIVE_EXIT(env, that, Mouse_1RightButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Mouse_1SetCursor
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Mouse_1SetCursor)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Mouse_1SetCursor)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Mouse_1SetCursor_FUNC);
- rc = (jboolean)Mouse::SetCursor((Cursor^)TO_OBJECT(arg0));
- OS_NATIVE_EXIT(env, that, Mouse_1SetCursor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Mouse_1XButton1
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1XButton1)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1XButton1)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Mouse_1XButton1_FUNC);
- rc = (jint)Mouse::XButton1;
- OS_NATIVE_EXIT(env, that, Mouse_1XButton1_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Mouse_1XButton2
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1XButton2)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Mouse_1XButton2)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Mouse_1XButton2_FUNC);
- rc = (jint)Mouse::XButton2;
- OS_NATIVE_EXIT(env, that, Mouse_1XButton2_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_NewGlobalRef
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(NewGlobalRef)(JNIEnv *env, jclass that, jobject arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(NewGlobalRef)
- (JNIEnv *env, jclass that, jobject arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, NewGlobalRef_FUNC);
- rc = (jint)env->NewGlobalRef(arg0);
- OS_NATIVE_EXIT(env, that, NewGlobalRef_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Object_1Equals
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Object_1Equals)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Object_1Equals)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Object_1Equals_FUNC);
- rc = (jboolean)((Object ^)TO_OBJECT(arg0))->Equals((Object ^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Object_1Equals_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Object_1GetType
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Object_1GetType)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Object_1GetType)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Object_1GetType_FUNC);
- rc = (jint)TO_HANDLE(((Object ^)TO_OBJECT(arg0))->GetType());
- OS_NATIVE_EXIT(env, that, Object_1GetType_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Object_1ToString
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Object_1ToString)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Object_1ToString)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Object_1ToString_FUNC);
- rc = (jint)TO_HANDLE(((Object ^)TO_OBJECT(arg0))->ToString());
- OS_NATIVE_EXIT(env, that, Object_1ToString_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_OpenFileDialog_1Multiselect
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(OpenFileDialog_1Multiselect)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(OpenFileDialog_1Multiselect)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, OpenFileDialog_1Multiselect_FUNC);
- ((OpenFileDialog^)TO_OBJECT(arg0))->Multiselect = (arg1);
- OS_NATIVE_EXIT(env, that, OpenFileDialog_1Multiselect_FUNC);
-}
-#endif
-
-#ifndef NO_Panel_1Background
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Panel_1Background)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Panel_1Background)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Panel_1Background_FUNC);
- ((Panel^)TO_OBJECT(arg0))->Background = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Panel_1Background_FUNC);
-}
-#endif
-
-#ifndef NO_Panel_1BackgroundProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Panel_1BackgroundProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Panel_1BackgroundProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Panel_1BackgroundProperty_FUNC);
- rc = (jint)TO_HANDLE(Panel::BackgroundProperty);
- OS_NATIVE_EXIT(env, that, Panel_1BackgroundProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Panel_1Children
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Panel_1Children)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Panel_1Children)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Panel_1Children_FUNC);
- rc = (jint)TO_HANDLE(((Panel^)TO_OBJECT(arg0))->Children);
- OS_NATIVE_EXIT(env, that, Panel_1Children_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Panel_1GetZIndex
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Panel_1GetZIndex)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Panel_1GetZIndex)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Panel_1GetZIndex_FUNC);
- rc = (jint)Panel::GetZIndex((UIElement^)TO_OBJECT(arg0));
- OS_NATIVE_EXIT(env, that, Panel_1GetZIndex_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Panel_1SetZIndex
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Panel_1SetZIndex)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Panel_1SetZIndex)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Panel_1SetZIndex_FUNC);
- Panel::SetZIndex((UIElement ^)TO_OBJECT(arg0), arg1);
- OS_NATIVE_EXIT(env, that, Panel_1SetZIndex_FUNC);
-}
-#endif
-
-#ifndef NO_PasswordBox_1MaxLength__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PasswordBox_1MaxLength__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PasswordBox_1MaxLength__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PasswordBox_1MaxLength__I_FUNC);
- rc = (jint)((PasswordBox^)TO_OBJECT(arg0))->MaxLength;
- OS_NATIVE_EXIT(env, that, PasswordBox_1MaxLength__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PasswordBox_1MaxLength__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1MaxLength__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1MaxLength__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PasswordBox_1MaxLength__II_FUNC);
- ((PasswordBox^)TO_OBJECT(arg0))->MaxLength = (arg1);
- OS_NATIVE_EXIT(env, that, PasswordBox_1MaxLength__II_FUNC);
-}
-#endif
-
-#ifndef NO_PasswordBox_1Password__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PasswordBox_1Password__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PasswordBox_1Password__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PasswordBox_1Password__I_FUNC);
- rc = (jint)TO_HANDLE(((PasswordBox^)TO_OBJECT(arg0))->Password);
- OS_NATIVE_EXIT(env, that, PasswordBox_1Password__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PasswordBox_1Password__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1Password__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1Password__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PasswordBox_1Password__II_FUNC);
- ((PasswordBox^)TO_OBJECT(arg0))->Password = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, PasswordBox_1Password__II_FUNC);
-}
-#endif
-
-#ifndef NO_PasswordBox_1PasswordChanged
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1PasswordChanged)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1PasswordChanged)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PasswordBox_1PasswordChanged_FUNC);
- ((PasswordBox^)TO_OBJECT(arg0))->PasswordChanged += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, PasswordBox_1PasswordChanged_FUNC);
-}
-#endif
-
-#ifndef NO_PasswordBox_1PasswordChar__I
-extern "C" JNIEXPORT jchar JNICALL OS_NATIVE(PasswordBox_1PasswordChar__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jchar JNICALL OS_NATIVE(PasswordBox_1PasswordChar__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jchar rc = 0;
- OS_NATIVE_ENTER(env, that, PasswordBox_1PasswordChar__I_FUNC);
- rc = (jchar)((PasswordBox^)TO_OBJECT(arg0))->PasswordChar;
- OS_NATIVE_EXIT(env, that, PasswordBox_1PasswordChar__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PasswordBox_1PasswordChar__IC
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1PasswordChar__IC)(JNIEnv *env, jclass that, jint arg0, jchar arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1PasswordChar__IC)
- (JNIEnv *env, jclass that, jint arg0, jchar arg1)
-{
- OS_NATIVE_ENTER(env, that, PasswordBox_1PasswordChar__IC_FUNC);
- ((PasswordBox^)TO_OBJECT(arg0))->PasswordChar = (arg1);
- OS_NATIVE_EXIT(env, that, PasswordBox_1PasswordChar__IC_FUNC);
-}
-#endif
-
-#ifndef NO_PasswordBox_1Paste
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1Paste)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(PasswordBox_1Paste)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, PasswordBox_1Paste_FUNC);
- ((PasswordBox^)TO_OBJECT(arg0))->Paste();
- OS_NATIVE_EXIT(env, that, PasswordBox_1Paste_FUNC);
-}
-#endif
-
-#ifndef NO_PathFigureCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PathFigureCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PathFigureCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PathFigureCollection_1Add_FUNC);
- ((PathFigureCollection^)TO_OBJECT(arg0))->Add((PathFigure^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, PathFigureCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_PathFigureCollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PathFigureCollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PathFigureCollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PathFigureCollection_1Count_FUNC);
- rc = (jint)((PathFigureCollection^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, PathFigureCollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PathFigure_1IsClosed__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(PathFigure_1IsClosed__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(PathFigure_1IsClosed__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, PathFigure_1IsClosed__I_FUNC);
- rc = (jboolean)((PathFigure^)TO_OBJECT(arg0))->IsClosed;
- OS_NATIVE_EXIT(env, that, PathFigure_1IsClosed__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PathFigure_1IsClosed__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PathFigure_1IsClosed__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PathFigure_1IsClosed__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, PathFigure_1IsClosed__IZ_FUNC);
- ((PathFigure^)TO_OBJECT(arg0))->IsClosed = (arg1);
- OS_NATIVE_EXIT(env, that, PathFigure_1IsClosed__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_PathFigure_1Segments__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PathFigure_1Segments__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PathFigure_1Segments__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PathFigure_1Segments__I_FUNC);
- rc = (jint)TO_HANDLE(((PathFigure^)TO_OBJECT(arg0))->Segments);
- OS_NATIVE_EXIT(env, that, PathFigure_1Segments__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PathFigure_1Segments__II
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PathFigure_1Segments__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(PathFigure_1Segments__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PathFigure_1Segments__II_FUNC);
- rc = (jint)TO_HANDLE(((PathFigure^)TO_OBJECT(arg0))->Segments[arg1]);
- OS_NATIVE_EXIT(env, that, PathFigure_1Segments__II_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PathFigure_1StartPoint
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PathFigure_1StartPoint)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PathFigure_1StartPoint)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PathFigure_1StartPoint_FUNC);
- ((PathFigure^)TO_OBJECT(arg0))->StartPoint = ((Point)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, PathFigure_1StartPoint_FUNC);
-}
-#endif
-
-#ifndef NO_PathGeometry_1AddGeometry
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PathGeometry_1AddGeometry)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PathGeometry_1AddGeometry)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PathGeometry_1AddGeometry_FUNC);
- ((PathGeometry^)TO_OBJECT(arg0))->AddGeometry((Geometry^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, PathGeometry_1AddGeometry_FUNC);
-}
-#endif
-
-#ifndef NO_PathGeometry_1Bounds
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PathGeometry_1Bounds)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PathGeometry_1Bounds)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PathGeometry_1Bounds_FUNC);
- rc = (jint)TO_HANDLE(((PathGeometry^)TO_OBJECT(arg0))->Bounds);
- OS_NATIVE_EXIT(env, that, PathGeometry_1Bounds_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PathGeometry_1Figures__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PathGeometry_1Figures__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PathGeometry_1Figures__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PathGeometry_1Figures__I_FUNC);
- rc = (jint)TO_HANDLE(((PathGeometry^)TO_OBJECT(arg0))->Figures);
- OS_NATIVE_EXIT(env, that, PathGeometry_1Figures__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PathGeometry_1Figures__II
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PathGeometry_1Figures__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(PathGeometry_1Figures__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PathGeometry_1Figures__II_FUNC);
- rc = (jint)TO_HANDLE(((PathGeometry^)TO_OBJECT(arg0))->Figures[arg1]);
- OS_NATIVE_EXIT(env, that, PathGeometry_1Figures__II_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PathGeometry_1FillRule
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PathGeometry_1FillRule)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PathGeometry_1FillRule)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PathGeometry_1FillRule_FUNC);
- ((PathGeometry^)TO_OBJECT(arg0))->FillRule = ((FillRule)arg1);
- OS_NATIVE_EXIT(env, that, PathGeometry_1FillRule_FUNC);
-}
-#endif
-
-#ifndef NO_PathSegmentCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PathSegmentCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PathSegmentCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PathSegmentCollection_1Add_FUNC);
- ((PathSegmentCollection^)TO_OBJECT(arg0))->Add((PathSegment^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, PathSegmentCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_PathSegmentCollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PathSegmentCollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PathSegmentCollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PathSegmentCollection_1Count_FUNC);
- rc = (jint)((PathSegmentCollection^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, PathSegmentCollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Path_1Data
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Path_1Data)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Path_1Data)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Path_1Data_FUNC);
- ((Path^)TO_OBJECT(arg0))->Data = ((Geometry^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Path_1Data_FUNC);
-}
-#endif
-
-#ifndef NO_Path_1Fill
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Path_1Fill)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Path_1Fill)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Path_1Fill_FUNC);
- ((Path^)TO_OBJECT(arg0))->Fill = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Path_1Fill_FUNC);
-}
-#endif
-
-#ifndef NO_Path_1Stretch
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Path_1Stretch)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Path_1Stretch)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Path_1Stretch_FUNC);
- ((Path^)TO_OBJECT(arg0))->Stretch = ((Stretch)arg1);
- OS_NATIVE_EXIT(env, that, Path_1Stretch_FUNC);
-}
-#endif
-
-#ifndef NO_Pen_1Brush__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Pen_1Brush__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Pen_1Brush__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Pen_1Brush__I_FUNC);
- rc = (jint)TO_HANDLE(((Pen^)TO_OBJECT(arg0))->Brush);
- OS_NATIVE_EXIT(env, that, Pen_1Brush__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Pen_1Brush__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Pen_1Brush__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Pen_1Brush__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Pen_1Brush__II_FUNC);
- ((Pen^)TO_OBJECT(arg0))->Brush = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Pen_1Brush__II_FUNC);
-}
-#endif
-
-#ifndef NO_Pen_1DashCap
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Pen_1DashCap)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Pen_1DashCap)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Pen_1DashCap_FUNC);
- ((Pen^)TO_OBJECT(arg0))->DashCap = ((PenLineCap)arg1);
- OS_NATIVE_EXIT(env, that, Pen_1DashCap_FUNC);
-}
-#endif
-
-#ifndef NO_Pen_1DashStyle
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Pen_1DashStyle)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Pen_1DashStyle)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Pen_1DashStyle_FUNC);
- ((Pen^)TO_OBJECT(arg0))->DashStyle = ((DashStyle^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Pen_1DashStyle_FUNC);
-}
-#endif
-
-#ifndef NO_Pen_1EndLineCap
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Pen_1EndLineCap)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Pen_1EndLineCap)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Pen_1EndLineCap_FUNC);
- ((Pen^)TO_OBJECT(arg0))->EndLineCap = ((PenLineCap)arg1);
- OS_NATIVE_EXIT(env, that, Pen_1EndLineCap_FUNC);
-}
-#endif
-
-#ifndef NO_Pen_1LineJoin
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Pen_1LineJoin)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Pen_1LineJoin)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Pen_1LineJoin_FUNC);
- ((Pen^)TO_OBJECT(arg0))->LineJoin = ((PenLineJoin)arg1);
- OS_NATIVE_EXIT(env, that, Pen_1LineJoin_FUNC);
-}
-#endif
-
-#ifndef NO_Pen_1StartLineCap
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Pen_1StartLineCap)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Pen_1StartLineCap)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Pen_1StartLineCap_FUNC);
- ((Pen^)TO_OBJECT(arg0))->StartLineCap = ((PenLineCap)arg1);
- OS_NATIVE_EXIT(env, that, Pen_1StartLineCap_FUNC);
-}
-#endif
-
-#ifndef NO_Pen_1Thickness
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Pen_1Thickness)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Pen_1Thickness)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Pen_1Thickness_FUNC);
- ((Pen^)TO_OBJECT(arg0))->Thickness = (arg1);
- OS_NATIVE_EXIT(env, that, Pen_1Thickness_FUNC);
-}
-#endif
-
-#ifndef NO_PixelFormat_1BitsPerPixel
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormat_1BitsPerPixel)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormat_1BitsPerPixel)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormat_1BitsPerPixel_FUNC);
- rc = (jint)((PixelFormat^)TO_OBJECT(arg0))->BitsPerPixel;
- OS_NATIVE_EXIT(env, that, PixelFormat_1BitsPerPixel_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Bgr101010
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr101010)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr101010)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Bgr101010_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Bgr101010);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Bgr101010_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Bgr24
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr24)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr24)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Bgr24_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Bgr24);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Bgr24_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Bgr32
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr32)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr32)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Bgr32_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Bgr32);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Bgr32_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Bgr555
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr555)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr555)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Bgr555_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Bgr555);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Bgr555_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Bgr565
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr565)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgr565)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Bgr565_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Bgr565);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Bgr565_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Bgra32
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgra32)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Bgra32)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Bgra32_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Bgra32);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Bgra32_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1BlackWhite
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1BlackWhite)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1BlackWhite)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1BlackWhite_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::BlackWhite);
- OS_NATIVE_EXIT(env, that, PixelFormats_1BlackWhite_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Default
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Default)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Default)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Default_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Default);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Default_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Indexed1
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Indexed1)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Indexed1)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Indexed1_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Indexed1);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Indexed1_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Indexed2
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Indexed2)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Indexed2)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Indexed2_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Indexed2);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Indexed2_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Indexed4
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Indexed4)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Indexed4)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Indexed4_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Indexed4);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Indexed4_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Indexed8
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Indexed8)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Indexed8)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Indexed8_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Indexed8);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Indexed8_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Pbgra32
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Pbgra32)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Pbgra32)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Pbgra32_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Pbgra32);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Pbgra32_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PixelFormats_1Rgb24
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Rgb24)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(PixelFormats_1Rgb24)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PixelFormats_1Rgb24_FUNC);
- rc = (jint)TO_HANDLE(PixelFormats::Rgb24);
- OS_NATIVE_EXIT(env, that, PixelFormats_1Rgb24_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_PointCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(PointCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(PointCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, PointCollection_1Add_FUNC);
- ((PointCollection^)TO_OBJECT(arg0))->Add((Point)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, PointCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_Point_1X
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Point_1X)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Point_1X)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Point_1X_FUNC);
- rc = (jdouble)((Point^)TO_OBJECT(arg0))->X;
- OS_NATIVE_EXIT(env, that, Point_1X_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Point_1Y
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Point_1Y)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Point_1Y)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Point_1Y_FUNC);
- rc = (jdouble)((Point^)TO_OBJECT(arg0))->Y;
- OS_NATIVE_EXIT(env, that, Point_1Y_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Popup_1Child__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Popup_1Child__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Popup_1Child__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Popup_1Child__I_FUNC);
- rc = (jint)TO_HANDLE(((Popup^)TO_OBJECT(arg0))->Child);
- OS_NATIVE_EXIT(env, that, Popup_1Child__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Popup_1Child__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Popup_1Child__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Popup_1Child__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Popup_1Child__II_FUNC);
- ((Popup^)TO_OBJECT(arg0))->Child = ((UIElement^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Popup_1Child__II_FUNC);
-}
-#endif
-
-#ifndef NO_Popup_1Closed
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Popup_1Closed)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Popup_1Closed)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Popup_1Closed_FUNC);
- ((Popup^)TO_OBJECT(arg0))->Closed += ((EventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Popup_1Closed_FUNC);
-}
-#endif
-
-#ifndef NO_Popup_1HorizontalOffset__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Popup_1HorizontalOffset__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Popup_1HorizontalOffset__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Popup_1HorizontalOffset__I_FUNC);
- rc = (jdouble)((Popup^)TO_OBJECT(arg0))->HorizontalOffset;
- OS_NATIVE_EXIT(env, that, Popup_1HorizontalOffset__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Popup_1HorizontalOffset__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Popup_1HorizontalOffset__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Popup_1HorizontalOffset__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Popup_1HorizontalOffset__ID_FUNC);
- ((Popup^)TO_OBJECT(arg0))->HorizontalOffset = (arg1);
- OS_NATIVE_EXIT(env, that, Popup_1HorizontalOffset__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Popup_1IsOpen__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Popup_1IsOpen__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Popup_1IsOpen__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Popup_1IsOpen__I_FUNC);
- rc = (jboolean)((Popup^)TO_OBJECT(arg0))->IsOpen;
- OS_NATIVE_EXIT(env, that, Popup_1IsOpen__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Popup_1IsOpen__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Popup_1IsOpen__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Popup_1IsOpen__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Popup_1IsOpen__IZ_FUNC);
- ((Popup^)TO_OBJECT(arg0))->IsOpen = (arg1);
- OS_NATIVE_EXIT(env, that, Popup_1IsOpen__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_Popup_1Opened
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Popup_1Opened)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Popup_1Opened)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Popup_1Opened_FUNC);
- ((Popup^)TO_OBJECT(arg0))->Opened += ((EventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Popup_1Opened_FUNC);
-}
-#endif
-
-#ifndef NO_Popup_1VerticalOffset__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Popup_1VerticalOffset__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Popup_1VerticalOffset__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Popup_1VerticalOffset__I_FUNC);
- rc = (jdouble)((Popup^)TO_OBJECT(arg0))->VerticalOffset;
- OS_NATIVE_EXIT(env, that, Popup_1VerticalOffset__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Popup_1VerticalOffset__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Popup_1VerticalOffset__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Popup_1VerticalOffset__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Popup_1VerticalOffset__ID_FUNC);
- ((Popup^)TO_OBJECT(arg0))->VerticalOffset = (arg1);
- OS_NATIVE_EXIT(env, that, Popup_1VerticalOffset__ID_FUNC);
-}
-#endif
-
-#ifndef NO_PresentationSource_1FromVisual
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(PresentationSource_1FromVisual)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(PresentationSource_1FromVisual)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, PresentationSource_1FromVisual_FUNC);
- rc = (jint)TO_HANDLE(PresentationSource::FromVisual((Visual^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, PresentationSource_1FromVisual_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ProgressBar_1IsIndeterminate__I
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ProgressBar_1IsIndeterminate__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(ProgressBar_1IsIndeterminate__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, ProgressBar_1IsIndeterminate__I_FUNC);
- ((ProgressBar ^)TO_OBJECT(arg0))->IsIndeterminate;
- OS_NATIVE_EXIT(env, that, ProgressBar_1IsIndeterminate__I_FUNC);
-}
-#endif
-
-#ifndef NO_ProgressBar_1IsIndeterminate__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ProgressBar_1IsIndeterminate__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ProgressBar_1IsIndeterminate__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ProgressBar_1IsIndeterminate__IZ_FUNC);
- ((ProgressBar ^)TO_OBJECT(arg0))->IsIndeterminate = (arg1);
- OS_NATIVE_EXIT(env, that, ProgressBar_1IsIndeterminate__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_ProgressBar_1Orientation
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ProgressBar_1Orientation)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ProgressBar_1Orientation)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ProgressBar_1Orientation_FUNC);
- ((ProgressBar ^)TO_OBJECT(arg0))->Orientation = ((Orientation)arg1);
- OS_NATIVE_EXIT(env, that, ProgressBar_1Orientation_FUNC);
-}
-#endif
-
-#ifndef NO_RangeBase_1LargeChange__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1LargeChange__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1LargeChange__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, RangeBase_1LargeChange__I_FUNC);
- rc = (jdouble)((RangeBase ^)TO_OBJECT(arg0))->LargeChange;
- OS_NATIVE_EXIT(env, that, RangeBase_1LargeChange__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RangeBase_1LargeChange__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1LargeChange__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1LargeChange__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, RangeBase_1LargeChange__ID_FUNC);
- ((RangeBase ^)TO_OBJECT(arg0))->LargeChange = (arg1);
- OS_NATIVE_EXIT(env, that, RangeBase_1LargeChange__ID_FUNC);
-}
-#endif
-
-#ifndef NO_RangeBase_1Maximum__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1Maximum__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1Maximum__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, RangeBase_1Maximum__I_FUNC);
- rc = (jdouble)((RangeBase ^)TO_OBJECT(arg0))->Maximum;
- OS_NATIVE_EXIT(env, that, RangeBase_1Maximum__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RangeBase_1Maximum__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1Maximum__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1Maximum__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, RangeBase_1Maximum__ID_FUNC);
- ((RangeBase ^)TO_OBJECT(arg0))->Maximum = (arg1);
- OS_NATIVE_EXIT(env, that, RangeBase_1Maximum__ID_FUNC);
-}
-#endif
-
-#ifndef NO_RangeBase_1Minimum__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1Minimum__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1Minimum__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, RangeBase_1Minimum__I_FUNC);
- rc = (jdouble)((RangeBase ^)TO_OBJECT(arg0))->Minimum;
- OS_NATIVE_EXIT(env, that, RangeBase_1Minimum__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RangeBase_1Minimum__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1Minimum__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1Minimum__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, RangeBase_1Minimum__ID_FUNC);
- ((RangeBase ^)TO_OBJECT(arg0))->Minimum = (arg1);
- OS_NATIVE_EXIT(env, that, RangeBase_1Minimum__ID_FUNC);
-}
-#endif
-
-#ifndef NO_RangeBase_1SmallChange__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1SmallChange__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1SmallChange__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, RangeBase_1SmallChange__I_FUNC);
- rc = (jdouble)((RangeBase ^)TO_OBJECT(arg0))->SmallChange;
- OS_NATIVE_EXIT(env, that, RangeBase_1SmallChange__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RangeBase_1SmallChange__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1SmallChange__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1SmallChange__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, RangeBase_1SmallChange__ID_FUNC);
- ((RangeBase ^)TO_OBJECT(arg0))->SmallChange = (arg1);
- OS_NATIVE_EXIT(env, that, RangeBase_1SmallChange__ID_FUNC);
-}
-#endif
-
-#ifndef NO_RangeBase_1Value__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1Value__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(RangeBase_1Value__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, RangeBase_1Value__I_FUNC);
- rc = (jdouble)((RangeBase ^)TO_OBJECT(arg0))->Value;
- OS_NATIVE_EXIT(env, that, RangeBase_1Value__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RangeBase_1Value__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1Value__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1Value__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, RangeBase_1Value__ID_FUNC);
- ((RangeBase ^)TO_OBJECT(arg0))->Value = (arg1);
- OS_NATIVE_EXIT(env, that, RangeBase_1Value__ID_FUNC);
-}
-#endif
-
-#ifndef NO_RangeBase_1ValueChanged
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1ValueChanged)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RangeBase_1ValueChanged)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, RangeBase_1ValueChanged_FUNC);
- ((RangeBase ^)TO_OBJECT(arg0))->ValueChanged += ((RoutedPropertyChangedEventHandler<double> ^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, RangeBase_1ValueChanged_FUNC);
-}
-#endif
-
-#ifndef NO_Rect_1Height__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Rect_1Height__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Rect_1Height__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Rect_1Height__I_FUNC);
- rc = (jdouble)((Rect^)TO_OBJECT(arg0))->Height;
- OS_NATIVE_EXIT(env, that, Rect_1Height__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Rect_1Height__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Rect_1Height__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Rect_1Height__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Rect_1Height__ID_FUNC);
- ((Rect^)TO_OBJECT(arg0))->Height = (arg1);
- OS_NATIVE_EXIT(env, that, Rect_1Height__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Rect_1Intersect
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Rect_1Intersect)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Rect_1Intersect)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Rect_1Intersect_FUNC);
- ((Rect^)TO_OBJECT(arg0))->Intersect((Rect)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Rect_1Intersect_FUNC);
-}
-#endif
-
-#ifndef NO_Rect_1Union
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Rect_1Union)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Rect_1Union)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Rect_1Union_FUNC);
- ((Rect^)TO_OBJECT(arg0))->Union((Rect)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Rect_1Union_FUNC);
-}
-#endif
-
-#ifndef NO_Rect_1Width__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Rect_1Width__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Rect_1Width__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Rect_1Width__I_FUNC);
- rc = (jdouble)((Rect^)TO_OBJECT(arg0))->Width;
- OS_NATIVE_EXIT(env, that, Rect_1Width__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Rect_1Width__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Rect_1Width__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Rect_1Width__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Rect_1Width__ID_FUNC);
- ((Rect^)TO_OBJECT(arg0))->Width = (arg1);
- OS_NATIVE_EXIT(env, that, Rect_1Width__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Rect_1X__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Rect_1X__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Rect_1X__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Rect_1X__I_FUNC);
- rc = (jdouble)((Rect^)TO_OBJECT(arg0))->X;
- OS_NATIVE_EXIT(env, that, Rect_1X__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Rect_1X__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Rect_1X__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Rect_1X__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Rect_1X__ID_FUNC);
- ((Rect^)TO_OBJECT(arg0))->X = (arg1);
- OS_NATIVE_EXIT(env, that, Rect_1X__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Rect_1Y__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Rect_1Y__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Rect_1Y__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Rect_1Y__I_FUNC);
- rc = (jdouble)((Rect^)TO_OBJECT(arg0))->Y;
- OS_NATIVE_EXIT(env, that, Rect_1Y__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Rect_1Y__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Rect_1Y__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Rect_1Y__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Rect_1Y__ID_FUNC);
- ((Rect^)TO_OBJECT(arg0))->Y = (arg1);
- OS_NATIVE_EXIT(env, that, Rect_1Y__ID_FUNC);
-}
-#endif
-
-#ifndef NO_RegistryKey_1GetSubKeyNames
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(RegistryKey_1GetSubKeyNames)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(RegistryKey_1GetSubKeyNames)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, RegistryKey_1GetSubKeyNames_FUNC);
- rc = (jint)TO_HANDLE(((RegistryKey^)TO_OBJECT(arg0))->GetSubKeyNames());
- OS_NATIVE_EXIT(env, that, RegistryKey_1GetSubKeyNames_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RegistryKey_1GetValue
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(RegistryKey_1GetValue)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(RegistryKey_1GetValue)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, RegistryKey_1GetValue_FUNC);
- rc = (jint)TO_HANDLE(((RegistryKey^)TO_OBJECT(arg0))->GetValue((String^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, RegistryKey_1GetValue_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RegistryKey_1OpenSubKey
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(RegistryKey_1OpenSubKey)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(RegistryKey_1OpenSubKey)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, RegistryKey_1OpenSubKey_FUNC);
- rc = (jint)TO_HANDLE(((RegistryKey^)TO_OBJECT(arg0))->OpenSubKey((String^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, RegistryKey_1OpenSubKey_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Registry_1ClassesRoot
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Registry_1ClassesRoot)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(Registry_1ClassesRoot)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Registry_1ClassesRoot_FUNC);
- rc = (jint)TO_HANDLE(Registry::ClassesRoot);
- OS_NATIVE_EXIT(env, that, Registry_1ClassesRoot_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RenderOptions_1GetBitmapScalingMode
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(RenderOptions_1GetBitmapScalingMode)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(RenderOptions_1GetBitmapScalingMode)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, RenderOptions_1GetBitmapScalingMode_FUNC);
- rc = (jint)RenderOptions::GetBitmapScalingMode((DependencyObject^)TO_OBJECT(arg0));
- OS_NATIVE_EXIT(env, that, RenderOptions_1GetBitmapScalingMode_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RenderOptions_1SetBitmapScalingMode
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RenderOptions_1SetBitmapScalingMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RenderOptions_1SetBitmapScalingMode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, RenderOptions_1SetBitmapScalingMode_FUNC);
- RenderOptions::SetBitmapScalingMode((DependencyObject^)TO_OBJECT(arg0), (BitmapScalingMode)arg1);
- OS_NATIVE_EXIT(env, that, RenderOptions_1SetBitmapScalingMode_FUNC);
-}
-#endif
-
-#ifndef NO_RenderOptions_1SetEdgeMode
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RenderOptions_1SetEdgeMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RenderOptions_1SetEdgeMode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, RenderOptions_1SetEdgeMode_FUNC);
- RenderOptions::SetEdgeMode((DependencyObject^)TO_OBJECT(arg0), (EdgeMode)arg1);
- OS_NATIVE_EXIT(env, that, RenderOptions_1SetEdgeMode_FUNC);
-}
-#endif
-
-#ifndef NO_RenderTargetBitmap_1Render
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RenderTargetBitmap_1Render)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RenderTargetBitmap_1Render)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, RenderTargetBitmap_1Render_FUNC);
- ((RenderTargetBitmap^)TO_OBJECT(arg0))->Render((Visual^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, RenderTargetBitmap_1Render_FUNC);
-}
-#endif
-
-#ifndef NO_RepeatBehavior_1Forever
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(RepeatBehavior_1Forever)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(RepeatBehavior_1Forever)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, RepeatBehavior_1Forever_FUNC);
- rc = (jint)TO_HANDLE(RepeatBehavior::Forever);
- OS_NATIVE_EXIT(env, that, RepeatBehavior_1Forever_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RoutedEventArgs_1Handled
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RoutedEventArgs_1Handled)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RoutedEventArgs_1Handled)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, RoutedEventArgs_1Handled_FUNC);
- ((RoutedEventArgs^)TO_OBJECT(arg0))->Handled = (arg1);
- OS_NATIVE_EXIT(env, that, RoutedEventArgs_1Handled_FUNC);
-}
-#endif
-
-#ifndef NO_RoutedEventArgs_1OriginalSource
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(RoutedEventArgs_1OriginalSource)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(RoutedEventArgs_1OriginalSource)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, RoutedEventArgs_1OriginalSource_FUNC);
- rc = (jint)TO_HANDLE(((RoutedEventArgs^)TO_OBJECT(arg0))->OriginalSource);
- OS_NATIVE_EXIT(env, that, RoutedEventArgs_1OriginalSource_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RoutedEventArgs_1Source
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(RoutedEventArgs_1Source)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(RoutedEventArgs_1Source)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, RoutedEventArgs_1Source_FUNC);
- rc = (jint)TO_HANDLE(((RoutedEventArgs^)TO_OBJECT(arg0))->Source);
- OS_NATIVE_EXIT(env, that, RoutedEventArgs_1Source_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RoutedEventArgs_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(RoutedEventArgs_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(RoutedEventArgs_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, RoutedEventArgs_1typeid_FUNC);
- rc = (jint)TO_HANDLE(RoutedEventArgs::typeid);
- OS_NATIVE_EXIT(env, that, RoutedEventArgs_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_RowDefinitionCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RowDefinitionCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RowDefinitionCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, RowDefinitionCollection_1Add_FUNC);
- ((RowDefinitionCollection^)TO_OBJECT(arg0))->Add((RowDefinition^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, RowDefinitionCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_RowDefinition_1Height
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(RowDefinition_1Height)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(RowDefinition_1Height)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, RowDefinition_1Height_FUNC);
- ((RowDefinition^)TO_OBJECT(arg0))->Height = ((GridLength)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, RowDefinition_1Height_FUNC);
-}
-#endif
-
-#ifndef NO_Run_1Text
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Run_1Text)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Run_1Text)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Run_1Text_FUNC);
- ((Run^)TO_OBJECT(arg0))->Text = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Run_1Text_FUNC);
-}
-#endif
-
-#ifndef NO_ScrollBar_1Orientation__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ScrollBar_1Orientation__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ScrollBar_1Orientation__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ScrollBar_1Orientation__I_FUNC);
- rc = (jint)((ScrollBar^)TO_OBJECT(arg0))->Orientation;
- OS_NATIVE_EXIT(env, that, ScrollBar_1Orientation__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ScrollBar_1Orientation__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ScrollBar_1Orientation__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ScrollBar_1Orientation__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ScrollBar_1Orientation__II_FUNC);
- ((ScrollBar^)TO_OBJECT(arg0))->Orientation = ((Orientation)arg1);
- OS_NATIVE_EXIT(env, that, ScrollBar_1Orientation__II_FUNC);
-}
-#endif
-
-#ifndef NO_ScrollBar_1Scroll
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ScrollBar_1Scroll)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ScrollBar_1Scroll)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ScrollBar_1Scroll_FUNC);
- ((ScrollBar^)TO_OBJECT(arg0))->Scroll += ((ScrollEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ScrollBar_1Scroll_FUNC);
-}
-#endif
-
-#ifndef NO_ScrollBar_1ViewportSize__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(ScrollBar_1ViewportSize__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(ScrollBar_1ViewportSize__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, ScrollBar_1ViewportSize__I_FUNC);
- rc = (jdouble)((ScrollBar^)TO_OBJECT(arg0))->ViewportSize;
- OS_NATIVE_EXIT(env, that, ScrollBar_1ViewportSize__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ScrollBar_1ViewportSize__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ScrollBar_1ViewportSize__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ScrollBar_1ViewportSize__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, ScrollBar_1ViewportSize__ID_FUNC);
- ((ScrollBar^)TO_OBJECT(arg0))->ViewportSize = (arg1);
- OS_NATIVE_EXIT(env, that, ScrollBar_1ViewportSize__ID_FUNC);
-}
-#endif
-
-#ifndef NO_ScrollBar_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ScrollBar_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ScrollBar_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ScrollBar_1typeid_FUNC);
- rc = (jint)TO_HANDLE(ScrollBar::typeid);
- OS_NATIVE_EXIT(env, that, ScrollBar_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ScrollEventArgs_1ScrollEventType
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ScrollEventArgs_1ScrollEventType)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ScrollEventArgs_1ScrollEventType)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ScrollEventArgs_1ScrollEventType_FUNC);
- rc = (jint)((ScrollEventArgs^)TO_OBJECT(arg0))->ScrollEventType;
- OS_NATIVE_EXIT(env, that, ScrollEventArgs_1ScrollEventType_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ScrollViewer_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ScrollViewer_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ScrollViewer_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ScrollViewer_1typeid_FUNC);
- rc = (jint)TO_HANDLE(ScrollViewer::typeid);
- OS_NATIVE_EXIT(env, that, ScrollViewer_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SelectionChangedEventArgs_1AddedItems
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SelectionChangedEventArgs_1AddedItems)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(SelectionChangedEventArgs_1AddedItems)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SelectionChangedEventArgs_1AddedItems_FUNC);
- rc = (jint)TO_HANDLE(((SelectionChangedEventArgs^)TO_OBJECT(arg0))->AddedItems);
- OS_NATIVE_EXIT(env, that, SelectionChangedEventArgs_1AddedItems_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SelectionChangedEventArgs_1RemovedItems
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SelectionChangedEventArgs_1RemovedItems)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(SelectionChangedEventArgs_1RemovedItems)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SelectionChangedEventArgs_1RemovedItems_FUNC);
- rc = (jint)TO_HANDLE(((SelectionChangedEventArgs^)TO_OBJECT(arg0))->RemovedItems);
- OS_NATIVE_EXIT(env, that, SelectionChangedEventArgs_1RemovedItems_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Selector_1IsSynchronizedWithCurrentItem
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Selector_1IsSynchronizedWithCurrentItem)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Selector_1IsSynchronizedWithCurrentItem)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Selector_1IsSynchronizedWithCurrentItem_FUNC);
- ((Selector^)TO_OBJECT(arg0))->IsSynchronizedWithCurrentItem = (arg1);
- OS_NATIVE_EXIT(env, that, Selector_1IsSynchronizedWithCurrentItem_FUNC);
-}
-#endif
-
-#ifndef NO_Selector_1SelectedIndex__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Selector_1SelectedIndex__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Selector_1SelectedIndex__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Selector_1SelectedIndex__I_FUNC);
- rc = (jint)((Selector^)TO_OBJECT(arg0))->SelectedIndex;
- OS_NATIVE_EXIT(env, that, Selector_1SelectedIndex__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Selector_1SelectedIndex__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Selector_1SelectedIndex__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Selector_1SelectedIndex__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Selector_1SelectedIndex__II_FUNC);
- ((Selector^)TO_OBJECT(arg0))->SelectedIndex = (arg1);
- OS_NATIVE_EXIT(env, that, Selector_1SelectedIndex__II_FUNC);
-}
-#endif
-
-#ifndef NO_Selector_1SelectedItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Selector_1SelectedItem)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Selector_1SelectedItem)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Selector_1SelectedItem_FUNC);
- rc = (jint)TO_HANDLE(((Selector^)TO_OBJECT(arg0))->SelectedItem);
- OS_NATIVE_EXIT(env, that, Selector_1SelectedItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Selector_1SelectedValue
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Selector_1SelectedValue)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Selector_1SelectedValue)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Selector_1SelectedValue_FUNC);
- rc = (jint)TO_HANDLE(((Selector^)TO_OBJECT(arg0))->SelectedValue);
- OS_NATIVE_EXIT(env, that, Selector_1SelectedValue_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Selector_1SelectionChanged
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Selector_1SelectionChanged)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Selector_1SelectionChanged)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Selector_1SelectionChanged_FUNC);
- ((Selector^)TO_OBJECT(arg0))->SelectionChanged += ((SelectionChangedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Selector_1SelectionChanged_FUNC);
-}
-#endif
-
-#ifndef NO_SetCursorPos
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SetCursorPos)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(SetCursorPos)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SetCursorPos_FUNC);
- rc = (jint)SetCursorPos(arg0, arg1);
- OS_NATIVE_EXIT(env, that, SetCursorPos_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SetterBaseCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(SetterBaseCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(SetterBaseCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, SetterBaseCollection_1Add_FUNC);
- ((SetterBaseCollection^)TO_OBJECT(arg0))->Add((SetterBase^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, SetterBaseCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_Shape_1Fill
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Shape_1Fill)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Shape_1Fill)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Shape_1Fill_FUNC);
- ((Shape^)TO_OBJECT(arg0))->Fill = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Shape_1Fill_FUNC);
-}
-#endif
-
-#ifndef NO_Shape_1Stroke
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Shape_1Stroke)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Shape_1Stroke)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Shape_1Stroke_FUNC);
- ((Shape^)TO_OBJECT(arg0))->Stroke = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Shape_1Stroke_FUNC);
-}
-#endif
-
-#ifndef NO_Shape_1StrokeThickness
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Shape_1StrokeThickness)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Shape_1StrokeThickness)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Shape_1StrokeThickness_FUNC);
- ((Shape^)TO_OBJECT(arg0))->StrokeThickness = (arg1);
- OS_NATIVE_EXIT(env, that, Shape_1StrokeThickness_FUNC);
-}
-#endif
-
-#ifndef NO_Size_1Height__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Size_1Height__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Size_1Height__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Size_1Height__I_FUNC);
- rc = (jdouble)((Size ^)TO_OBJECT(arg0))->Height;
- OS_NATIVE_EXIT(env, that, Size_1Height__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Size_1Height__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Size_1Height__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Size_1Height__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Size_1Height__ID_FUNC);
- ((Size ^)TO_OBJECT(arg0))->Height = (arg1);
- OS_NATIVE_EXIT(env, that, Size_1Height__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Size_1Width__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Size_1Width__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Size_1Width__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Size_1Width__I_FUNC);
- rc = (jdouble)((Size ^)TO_OBJECT(arg0))->Width;
- OS_NATIVE_EXIT(env, that, Size_1Width__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Size_1Width__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Size_1Width__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Size_1Width__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Size_1Width__ID_FUNC);
- ((Size ^)TO_OBJECT(arg0))->Width = (arg1);
- OS_NATIVE_EXIT(env, that, Size_1Width__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Slider_1Orientation
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Slider_1Orientation)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Slider_1Orientation)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Slider_1Orientation_FUNC);
- ((Slider ^)TO_OBJECT(arg0))->Orientation = ((Orientation)arg1);
- OS_NATIVE_EXIT(env, that, Slider_1Orientation_FUNC);
-}
-#endif
-
-#ifndef NO_Slider_1TickFrequency
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Slider_1TickFrequency)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Slider_1TickFrequency)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Slider_1TickFrequency_FUNC);
- ((Slider^)TO_OBJECT(arg0))->TickFrequency = (arg1);
- OS_NATIVE_EXIT(env, that, Slider_1TickFrequency_FUNC);
-}
-#endif
-
-#ifndef NO_Slider_1TickPlacement
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Slider_1TickPlacement)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Slider_1TickPlacement)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Slider_1TickPlacement_FUNC);
- ((Slider^)TO_OBJECT(arg0))->TickPlacement = ((TickPlacement)arg1);
- OS_NATIVE_EXIT(env, that, Slider_1TickPlacement_FUNC);
-}
-#endif
-
-#ifndef NO_StackPanel_1Orientation
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(StackPanel_1Orientation)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(StackPanel_1Orientation)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, StackPanel_1Orientation_FUNC);
- ((StackPanel^)TO_OBJECT(arg0))->Orientation = ((Orientation)arg1);
- OS_NATIVE_EXIT(env, that, StackPanel_1Orientation_FUNC);
-}
-#endif
-
-#ifndef NO_StackPanel_1OrientationProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(StackPanel_1OrientationProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(StackPanel_1OrientationProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, StackPanel_1OrientationProperty_FUNC);
- rc = (jint)TO_HANDLE(StackPanel::OrientationProperty);
- OS_NATIVE_EXIT(env, that, StackPanel_1OrientationProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_StackPanel_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(StackPanel_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(StackPanel_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, StackPanel_1typeid_FUNC);
- rc = (jint)TO_HANDLE(StackPanel::typeid);
- OS_NATIVE_EXIT(env, that, StackPanel_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_StreamGeometryContext_1BeginFigure
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(StreamGeometryContext_1BeginFigure)(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2, jboolean arg3);
-JNIEXPORT void JNICALL OS_NATIVE(StreamGeometryContext_1BeginFigure)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2, jboolean arg3)
-{
- OS_NATIVE_ENTER(env, that, StreamGeometryContext_1BeginFigure_FUNC);
- ((StreamGeometryContext^)TO_OBJECT(arg0))->BeginFigure((Point)TO_OBJECT(arg1), arg2, arg3);
- OS_NATIVE_EXIT(env, that, StreamGeometryContext_1BeginFigure_FUNC);
-}
-#endif
-
-#ifndef NO_StreamGeometryContext_1Close
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(StreamGeometryContext_1Close)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(StreamGeometryContext_1Close)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, StreamGeometryContext_1Close_FUNC);
- ((StreamGeometryContext^)TO_OBJECT(arg0))->Close();
- OS_NATIVE_EXIT(env, that, StreamGeometryContext_1Close_FUNC);
-}
-#endif
-
-#ifndef NO_StreamGeometryContext_1LineTo
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(StreamGeometryContext_1LineTo)(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2, jboolean arg3);
-JNIEXPORT void JNICALL OS_NATIVE(StreamGeometryContext_1LineTo)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2, jboolean arg3)
-{
- OS_NATIVE_ENTER(env, that, StreamGeometryContext_1LineTo_FUNC);
- ((StreamGeometryContext^)TO_OBJECT(arg0))->LineTo((Point)TO_OBJECT(arg1), arg2, arg3);
- OS_NATIVE_EXIT(env, that, StreamGeometryContext_1LineTo_FUNC);
-}
-#endif
-
-#ifndef NO_StreamGeometry_1Open
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(StreamGeometry_1Open)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(StreamGeometry_1Open)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, StreamGeometry_1Open_FUNC);
- rc = (jint)TO_HANDLE(((StreamGeometry^)TO_OBJECT(arg0))->Open());
- OS_NATIVE_EXIT(env, that, StreamGeometry_1Open_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_String_1Length
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(String_1Length)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(String_1Length)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, String_1Length_FUNC);
- rc = (jint)((String^)TO_OBJECT(arg0))->Length;
- OS_NATIVE_EXIT(env, that, String_1Length_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_String_1ToCharArray
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(String_1ToCharArray)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(String_1ToCharArray)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, String_1ToCharArray_FUNC);
- rc = (jint)TO_HANDLE(((String^)TO_OBJECT(arg0))->ToCharArray());
- OS_NATIVE_EXIT(env, that, String_1ToCharArray_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Style_1Setters
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Style_1Setters)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Style_1Setters)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Style_1Setters_FUNC);
- rc = (jint)TO_HANDLE(((Style^)TO_OBJECT(arg0))->Setters);
- OS_NATIVE_EXIT(env, that, Style_1Setters_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ActiveBorderColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ActiveBorderColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ActiveBorderColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ActiveBorderColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::ActiveBorderColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1ActiveBorderColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ActiveCaptionColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ActiveCaptionColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ActiveCaptionColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ActiveCaptionColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::ActiveCaptionColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1ActiveCaptionColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ActiveCaptionTextColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ActiveCaptionTextColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ActiveCaptionTextColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ActiveCaptionTextColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::ActiveCaptionTextColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1ActiveCaptionTextColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ControlBrush
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlBrush)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlBrush)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ControlBrush_FUNC);
- rc = (jint)TO_HANDLE(SystemColors::ControlBrush);
- OS_NATIVE_EXIT(env, that, SystemColors_1ControlBrush_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ControlColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ControlColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::ControlColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1ControlColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ControlDarkColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlDarkColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlDarkColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ControlDarkColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::ControlDarkColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1ControlDarkColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ControlDarkDarkColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlDarkDarkColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlDarkDarkColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ControlDarkDarkColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::ControlDarkDarkColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1ControlDarkDarkColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ControlLightColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlLightColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlLightColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ControlLightColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::ControlLightColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1ControlLightColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ControlTextBrush
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlTextBrush)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlTextBrush)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ControlTextBrush_FUNC);
- rc = (jint)TO_HANDLE(SystemColors::ControlTextBrush);
- OS_NATIVE_EXIT(env, that, SystemColors_1ControlTextBrush_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1ControlTextColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlTextColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1ControlTextColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1ControlTextColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::ControlTextColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1ControlTextColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1GradientActiveCaptionColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1GradientActiveCaptionColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1GradientActiveCaptionColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1GradientActiveCaptionColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::GradientActiveCaptionColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1GradientActiveCaptionColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1GradientInactiveCaptionColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1GradientInactiveCaptionColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1GradientInactiveCaptionColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1GradientInactiveCaptionColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::GradientInactiveCaptionColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1GradientInactiveCaptionColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1HighlightBrush
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1HighlightBrush)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1HighlightBrush)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1HighlightBrush_FUNC);
- rc = (jint)TO_HANDLE(SystemColors::HighlightBrush);
- OS_NATIVE_EXIT(env, that, SystemColors_1HighlightBrush_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1HighlightColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1HighlightColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1HighlightColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1HighlightColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::HighlightColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1HighlightColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1HighlightTextColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1HighlightTextColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1HighlightTextColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1HighlightTextColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::HighlightTextColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1HighlightTextColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1InactiveCaptionColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1InactiveCaptionColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1InactiveCaptionColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1InactiveCaptionColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::InactiveCaptionColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1InactiveCaptionColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1InactiveCaptionTextColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1InactiveCaptionTextColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1InactiveCaptionTextColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1InactiveCaptionTextColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::InactiveCaptionTextColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1InactiveCaptionTextColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1InfoColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1InfoColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1InfoColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1InfoColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::InfoColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1InfoColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1InfoTextColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1InfoTextColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1InfoTextColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1InfoTextColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::InfoTextColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1InfoTextColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1WindowColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1WindowColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1WindowColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1WindowColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::WindowColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1WindowColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemColors_1WindowTextColor
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1WindowTextColor)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemColors_1WindowTextColor)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemColors_1WindowTextColor_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(SystemColors::WindowTextColor);
- OS_NATIVE_EXIT(env, that, SystemColors_1WindowTextColor_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemFonts_1MessageFontFamily
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemFonts_1MessageFontFamily)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemFonts_1MessageFontFamily)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemFonts_1MessageFontFamily_FUNC);
- rc = (jint)TO_HANDLE(SystemFonts::MessageFontFamily);
- OS_NATIVE_EXIT(env, that, SystemFonts_1MessageFontFamily_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemFonts_1MessageFontSize
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemFonts_1MessageFontSize)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemFonts_1MessageFontSize)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemFonts_1MessageFontSize_FUNC);
- rc = (jdouble)SystemFonts::MessageFontSize;
- OS_NATIVE_EXIT(env, that, SystemFonts_1MessageFontSize_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemFonts_1MessageFontStyle
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemFonts_1MessageFontStyle)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemFonts_1MessageFontStyle)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemFonts_1MessageFontStyle_FUNC);
- rc = (jint)TO_HANDLE(SystemFonts::MessageFontStyle);
- OS_NATIVE_EXIT(env, that, SystemFonts_1MessageFontStyle_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemFonts_1MessageFontWeight
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemFonts_1MessageFontWeight)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemFonts_1MessageFontWeight)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemFonts_1MessageFontWeight_FUNC);
- rc = (jint)TO_HANDLE(SystemFonts::MessageFontWeight);
- OS_NATIVE_EXIT(env, that, SystemFonts_1MessageFontWeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1HighContrast
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(SystemParameters_1HighContrast)(JNIEnv *env, jclass that);
-JNIEXPORT jboolean JNICALL OS_NATIVE(SystemParameters_1HighContrast)
- (JNIEnv *env, jclass that)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1HighContrast_FUNC);
- rc = (jboolean)SystemParameters::HighContrast;
- OS_NATIVE_EXIT(env, that, SystemParameters_1HighContrast_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1HorizontalScrollBarButtonWidth
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1HorizontalScrollBarButtonWidth)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1HorizontalScrollBarButtonWidth)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1HorizontalScrollBarButtonWidth_FUNC);
- rc = (jdouble)SystemParameters::HorizontalScrollBarButtonWidth;
- OS_NATIVE_EXIT(env, that, SystemParameters_1HorizontalScrollBarButtonWidth_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1HorizontalScrollBarHeight
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1HorizontalScrollBarHeight)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1HorizontalScrollBarHeight)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1HorizontalScrollBarHeight_FUNC);
- rc = (jdouble)SystemParameters::HorizontalScrollBarHeight;
- OS_NATIVE_EXIT(env, that, SystemParameters_1HorizontalScrollBarHeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1PrimaryScreenHeight
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1PrimaryScreenHeight)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1PrimaryScreenHeight)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1PrimaryScreenHeight_FUNC);
- rc = (jdouble)SystemParameters::PrimaryScreenHeight;
- OS_NATIVE_EXIT(env, that, SystemParameters_1PrimaryScreenHeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1PrimaryScreenWidth
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1PrimaryScreenWidth)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1PrimaryScreenWidth)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1PrimaryScreenWidth_FUNC);
- rc = (jdouble)SystemParameters::PrimaryScreenWidth;
- OS_NATIVE_EXIT(env, that, SystemParameters_1PrimaryScreenWidth_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1VerticalScrollBarButtonHeight
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VerticalScrollBarButtonHeight)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VerticalScrollBarButtonHeight)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1VerticalScrollBarButtonHeight_FUNC);
- rc = (jdouble)SystemParameters::VerticalScrollBarButtonHeight;
- OS_NATIVE_EXIT(env, that, SystemParameters_1VerticalScrollBarButtonHeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1VerticalScrollBarWidth
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VerticalScrollBarWidth)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VerticalScrollBarWidth)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1VerticalScrollBarWidth_FUNC);
- rc = (jdouble)SystemParameters::VerticalScrollBarWidth;
- OS_NATIVE_EXIT(env, that, SystemParameters_1VerticalScrollBarWidth_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1VirtualScreenHeight
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VirtualScreenHeight)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VirtualScreenHeight)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1VirtualScreenHeight_FUNC);
- rc = (jdouble)SystemParameters::VirtualScreenHeight;
- OS_NATIVE_EXIT(env, that, SystemParameters_1VirtualScreenHeight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1VirtualScreenLeft
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VirtualScreenLeft)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VirtualScreenLeft)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1VirtualScreenLeft_FUNC);
- rc = (jdouble)SystemParameters::VirtualScreenLeft;
- OS_NATIVE_EXIT(env, that, SystemParameters_1VirtualScreenLeft_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1VirtualScreenTop
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VirtualScreenTop)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VirtualScreenTop)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1VirtualScreenTop_FUNC);
- rc = (jdouble)SystemParameters::VirtualScreenTop;
- OS_NATIVE_EXIT(env, that, SystemParameters_1VirtualScreenTop_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1VirtualScreenWidth
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VirtualScreenWidth)(JNIEnv *env, jclass that);
-JNIEXPORT jdouble JNICALL OS_NATIVE(SystemParameters_1VirtualScreenWidth)
- (JNIEnv *env, jclass that)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1VirtualScreenWidth_FUNC);
- rc = (jdouble)SystemParameters::VirtualScreenWidth;
- OS_NATIVE_EXIT(env, that, SystemParameters_1VirtualScreenWidth_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1WheelScrollLines
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemParameters_1WheelScrollLines)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemParameters_1WheelScrollLines)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1WheelScrollLines_FUNC);
- rc = (jint)SystemParameters::WheelScrollLines;
- OS_NATIVE_EXIT(env, that, SystemParameters_1WheelScrollLines_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_SystemParameters_1WorkArea
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(SystemParameters_1WorkArea)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(SystemParameters_1WorkArea)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, SystemParameters_1WorkArea_FUNC);
- rc = (jint)TO_HANDLE(SystemParameters::WorkArea);
- OS_NATIVE_EXIT(env, that, SystemParameters_1WorkArea_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TabControl_1TabStripPlacement
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TabControl_1TabStripPlacement)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TabControl_1TabStripPlacement)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TabControl_1TabStripPlacement_FUNC);
- ((TabControl^)TO_OBJECT(arg0))->TabStripPlacement = ((Dock)arg1);
- OS_NATIVE_EXIT(env, that, TabControl_1TabStripPlacement_FUNC);
-}
-#endif
-
-#ifndef NO_TabItem_1IsSelected
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(TabItem_1IsSelected)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(TabItem_1IsSelected)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, TabItem_1IsSelected_FUNC);
- rc = (jboolean)((TabItem^)TO_OBJECT(arg0))->IsSelected;
- OS_NATIVE_EXIT(env, that, TabItem_1IsSelected_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1Background
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1Background)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1Background)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBlock_1Background_FUNC);
- ((TextBlock^)TO_OBJECT(arg0))->Background = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBlock_1Background_FUNC);
-}
-#endif
-
-#ifndef NO_TextBlock_1BackgroundProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1BackgroundProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1BackgroundProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1BackgroundProperty_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::BackgroundProperty);
- OS_NATIVE_EXIT(env, that, TextBlock_1BackgroundProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1FontFamily
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontFamily)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontFamily)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBlock_1FontFamily_FUNC);
- ((TextBlock^)TO_OBJECT(arg0))->FontFamily = ((FontFamily^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBlock_1FontFamily_FUNC);
-}
-#endif
-
-#ifndef NO_TextBlock_1FontFamilyProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontFamilyProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontFamilyProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1FontFamilyProperty_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::FontFamilyProperty);
- OS_NATIVE_EXIT(env, that, TextBlock_1FontFamilyProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1FontSize
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontSize)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontSize)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBlock_1FontSize_FUNC);
- ((TextBlock^)TO_OBJECT(arg0))->FontSize = (arg1);
- OS_NATIVE_EXIT(env, that, TextBlock_1FontSize_FUNC);
-}
-#endif
-
-#ifndef NO_TextBlock_1FontSizeProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontSizeProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontSizeProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1FontSizeProperty_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::FontSizeProperty);
- OS_NATIVE_EXIT(env, that, TextBlock_1FontSizeProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1FontStretch
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontStretch)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontStretch)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBlock_1FontStretch_FUNC);
- ((TextBlock^)TO_OBJECT(arg0))->FontStretch = ((FontStretch)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBlock_1FontStretch_FUNC);
-}
-#endif
-
-#ifndef NO_TextBlock_1FontStretchProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontStretchProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontStretchProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1FontStretchProperty_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::FontStretchProperty);
- OS_NATIVE_EXIT(env, that, TextBlock_1FontStretchProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1FontStyle
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontStyle)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontStyle)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBlock_1FontStyle_FUNC);
- ((TextBlock^)TO_OBJECT(arg0))->FontStyle = ((FontStyle)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBlock_1FontStyle_FUNC);
-}
-#endif
-
-#ifndef NO_TextBlock_1FontStyleProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontStyleProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontStyleProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1FontStyleProperty_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::FontStyleProperty);
- OS_NATIVE_EXIT(env, that, TextBlock_1FontStyleProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1FontWeight
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontWeight)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1FontWeight)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBlock_1FontWeight_FUNC);
- ((TextBlock^)TO_OBJECT(arg0))->FontWeight = ((FontWeight)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBlock_1FontWeight_FUNC);
-}
-#endif
-
-#ifndef NO_TextBlock_1FontWeightProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontWeightProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1FontWeightProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1FontWeightProperty_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::FontWeightProperty);
- OS_NATIVE_EXIT(env, that, TextBlock_1FontWeightProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1Foreground
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1Foreground)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1Foreground)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBlock_1Foreground_FUNC);
- ((TextBlock^)TO_OBJECT(arg0))->Foreground = ((Brush^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBlock_1Foreground_FUNC);
-}
-#endif
-
-#ifndef NO_TextBlock_1ForegroundProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1ForegroundProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1ForegroundProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1ForegroundProperty_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::ForegroundProperty);
- OS_NATIVE_EXIT(env, that, TextBlock_1ForegroundProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1Inlines
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1Inlines)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1Inlines)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1Inlines_FUNC);
- rc = (jint)TO_HANDLE(((TextBlock^)TO_OBJECT(arg0))->Inlines);
- OS_NATIVE_EXIT(env, that, TextBlock_1Inlines_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1Text
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1Text)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBlock_1Text)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBlock_1Text_FUNC);
- ((TextBlock^)TO_OBJECT(arg0))->Text = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBlock_1Text_FUNC);
-}
-#endif
-
-#ifndef NO_TextBlock_1TextProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1TextProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1TextProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1TextProperty_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::TextProperty);
- OS_NATIVE_EXIT(env, that, TextBlock_1TextProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBlock_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBlock_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBlock_1typeid_FUNC);
- rc = (jint)TO_HANDLE(TextBlock::typeid);
- OS_NATIVE_EXIT(env, that, TextBlock_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBoundsCollection_1Current
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBoundsCollection_1Current)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBoundsCollection_1Current)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBoundsCollection_1Current_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerator^)TO_OBJECT(arg0))->Current);
- OS_NATIVE_EXIT(env, that, TextBoundsCollection_1Current_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBoundsCollection_1GetEnumerator
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBoundsCollection_1GetEnumerator)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBoundsCollection_1GetEnumerator)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBoundsCollection_1GetEnumerator_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerable^)TO_OBJECT(arg0))->GetEnumerator());
- OS_NATIVE_EXIT(env, that, TextBoundsCollection_1GetEnumerator_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBounds_1Rectangle
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBounds_1Rectangle)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBounds_1Rectangle)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBounds_1Rectangle_FUNC);
- rc = (jint)TO_HANDLE(((TextBounds^)TO_OBJECT(arg0))->Rectangle);
- OS_NATIVE_EXIT(env, that, TextBounds_1Rectangle_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBoxBase_1AcceptsReturn
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1AcceptsReturn)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1AcceptsReturn)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1AcceptsReturn_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->AcceptsReturn = (arg1);
- OS_NATIVE_EXIT(env, that, TextBoxBase_1AcceptsReturn_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1AcceptsTab
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1AcceptsTab)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1AcceptsTab)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1AcceptsTab_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->AcceptsTab = (arg1);
- OS_NATIVE_EXIT(env, that, TextBoxBase_1AcceptsTab_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1AppendText
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1AppendText)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1AppendText)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1AppendText_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->AppendText((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBoxBase_1AppendText_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1Copy
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1Copy)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1Copy)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1Copy_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->Copy();
- OS_NATIVE_EXIT(env, that, TextBoxBase_1Copy_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1Cut
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1Cut)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1Cut)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1Cut_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->Cut();
- OS_NATIVE_EXIT(env, that, TextBoxBase_1Cut_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1HorizontalScrollBarVisibility
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1HorizontalScrollBarVisibility)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1HorizontalScrollBarVisibility)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1HorizontalScrollBarVisibility_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->HorizontalScrollBarVisibility = ((ScrollBarVisibility)arg1);
- OS_NATIVE_EXIT(env, that, TextBoxBase_1HorizontalScrollBarVisibility_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1IsReadOnly__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(TextBoxBase_1IsReadOnly__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(TextBoxBase_1IsReadOnly__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, TextBoxBase_1IsReadOnly__I_FUNC);
- rc = (jboolean)((TextBoxBase^)TO_OBJECT(arg0))->IsReadOnly;
- OS_NATIVE_EXIT(env, that, TextBoxBase_1IsReadOnly__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBoxBase_1IsReadOnly__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1IsReadOnly__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1IsReadOnly__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1IsReadOnly__IZ_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->IsReadOnly = (arg1);
- OS_NATIVE_EXIT(env, that, TextBoxBase_1IsReadOnly__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1Paste
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1Paste)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1Paste)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1Paste_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->Paste();
- OS_NATIVE_EXIT(env, that, TextBoxBase_1Paste_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1ScrollToEnd
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1ScrollToEnd)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1ScrollToEnd)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1ScrollToEnd_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->ScrollToEnd();
- OS_NATIVE_EXIT(env, that, TextBoxBase_1ScrollToEnd_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1ScrollToVerticalOffset
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1ScrollToVerticalOffset)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1ScrollToVerticalOffset)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1ScrollToVerticalOffset_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->ScrollToVerticalOffset(arg1);
- OS_NATIVE_EXIT(env, that, TextBoxBase_1ScrollToVerticalOffset_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1SelectAll
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1SelectAll)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1SelectAll)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1SelectAll_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->SelectAll();
- OS_NATIVE_EXIT(env, that, TextBoxBase_1SelectAll_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1TextChanged
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1TextChanged)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1TextChanged)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1TextChanged_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->TextChanged += ((TextChangedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBoxBase_1TextChanged_FUNC);
-}
-#endif
-
-#ifndef NO_TextBoxBase_1VerticalOffset
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(TextBoxBase_1VerticalOffset)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(TextBoxBase_1VerticalOffset)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, TextBoxBase_1VerticalOffset_FUNC);
- rc = (jdouble)((TextBoxBase^)TO_OBJECT(arg0))->VerticalOffset;
- OS_NATIVE_EXIT(env, that, TextBoxBase_1VerticalOffset_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBoxBase_1VerticalScrollBarVisibility
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1VerticalScrollBarVisibility)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBoxBase_1VerticalScrollBarVisibility)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBoxBase_1VerticalScrollBarVisibility_FUNC);
- ((TextBoxBase^)TO_OBJECT(arg0))->VerticalScrollBarVisibility = ((ScrollBarVisibility)arg1);
- OS_NATIVE_EXIT(env, that, TextBoxBase_1VerticalScrollBarVisibility_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1CaretIndex__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1CaretIndex__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1CaretIndex__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1CaretIndex__I_FUNC);
- rc = (jint)((TextBox^)TO_OBJECT(arg0))->CaretIndex;
- OS_NATIVE_EXIT(env, that, TextBox_1CaretIndex__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1CaretIndex__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1CaretIndex__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1CaretIndex__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1CaretIndex__II_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->CaretIndex = (arg1);
- OS_NATIVE_EXIT(env, that, TextBox_1CaretIndex__II_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1GetFirstVisibleLineIndex
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1GetFirstVisibleLineIndex)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1GetFirstVisibleLineIndex)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1GetFirstVisibleLineIndex_FUNC);
- rc = (jint)((TextBox^)TO_OBJECT(arg0))->GetFirstVisibleLineIndex();
- OS_NATIVE_EXIT(env, that, TextBox_1GetFirstVisibleLineIndex_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1GetLineIndexFromCharacterIndex
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1GetLineIndexFromCharacterIndex)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1GetLineIndexFromCharacterIndex)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1GetLineIndexFromCharacterIndex_FUNC);
- rc = (jint)((TextBox^)TO_OBJECT(arg0))->GetLineIndexFromCharacterIndex(arg1);
- OS_NATIVE_EXIT(env, that, TextBox_1GetLineIndexFromCharacterIndex_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1GetRectFromCharacterIndex
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1GetRectFromCharacterIndex)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1GetRectFromCharacterIndex)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1GetRectFromCharacterIndex_FUNC);
- rc = (jint)TO_HANDLE(((TextBox^)TO_OBJECT(arg0))->GetRectFromCharacterIndex(arg1));
- OS_NATIVE_EXIT(env, that, TextBox_1GetRectFromCharacterIndex_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1LineCount
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1LineCount)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1LineCount)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1LineCount_FUNC);
- rc = (jint)((TextBox^)TO_OBJECT(arg0))->LineCount;
- OS_NATIVE_EXIT(env, that, TextBox_1LineCount_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1MaxLength__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1MaxLength__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1MaxLength__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1MaxLength__I_FUNC);
- rc = (jint)((TextBox^)TO_OBJECT(arg0))->MaxLength;
- OS_NATIVE_EXIT(env, that, TextBox_1MaxLength__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1MaxLength__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1MaxLength__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1MaxLength__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1MaxLength__II_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->MaxLength = (arg1);
- OS_NATIVE_EXIT(env, that, TextBox_1MaxLength__II_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1ScrollToLine
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1ScrollToLine)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1ScrollToLine)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1ScrollToLine_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->ScrollToLine(arg1);
- OS_NATIVE_EXIT(env, that, TextBox_1ScrollToLine_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1Select
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1Select)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1Select)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1Select_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->Select(arg1, arg2);
- OS_NATIVE_EXIT(env, that, TextBox_1Select_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1SelectedText__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1SelectedText__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1SelectedText__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1SelectedText__I_FUNC);
- rc = (jint)TO_HANDLE(((TextBox^)TO_OBJECT(arg0))->SelectedText);
- OS_NATIVE_EXIT(env, that, TextBox_1SelectedText__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1SelectedText__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1SelectedText__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1SelectedText__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1SelectedText__II_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->SelectedText = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBox_1SelectedText__II_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1SelectionLength__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1SelectionLength__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1SelectionLength__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1SelectionLength__I_FUNC);
- rc = (jint)((TextBox^)TO_OBJECT(arg0))->SelectionLength;
- OS_NATIVE_EXIT(env, that, TextBox_1SelectionLength__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1SelectionLength__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1SelectionLength__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1SelectionLength__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1SelectionLength__II_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->SelectionLength = (arg1);
- OS_NATIVE_EXIT(env, that, TextBox_1SelectionLength__II_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1SelectionStart__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1SelectionStart__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1SelectionStart__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1SelectionStart__I_FUNC);
- rc = (jint)((TextBox^)TO_OBJECT(arg0))->SelectionStart;
- OS_NATIVE_EXIT(env, that, TextBox_1SelectionStart__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1SelectionStart__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1SelectionStart__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1SelectionStart__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1SelectionStart__II_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->SelectionStart = (arg1);
- OS_NATIVE_EXIT(env, that, TextBox_1SelectionStart__II_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1Text__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1Text__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextBox_1Text__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextBox_1Text__I_FUNC);
- rc = (jint)TO_HANDLE(((TextBox^)TO_OBJECT(arg0))->Text);
- OS_NATIVE_EXIT(env, that, TextBox_1Text__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextBox_1Text__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1Text__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1Text__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1Text__II_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->Text = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextBox_1Text__II_FUNC);
-}
-#endif
-
-#ifndef NO_TextBox_1TextWrapping
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextBox_1TextWrapping)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextBox_1TextWrapping)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextBox_1TextWrapping_FUNC);
- ((TextBox^)TO_OBJECT(arg0))->TextWrapping = ((TextWrapping)arg1);
- OS_NATIVE_EXIT(env, that, TextBox_1TextWrapping_FUNC);
-}
-#endif
-
-#ifndef NO_TextCompositionEventArgs_1ControlText
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextCompositionEventArgs_1ControlText)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextCompositionEventArgs_1ControlText)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextCompositionEventArgs_1ControlText_FUNC);
- rc = (jint)TO_HANDLE(((TextCompositionEventArgs^)TO_OBJECT(arg0))->ControlText);
- OS_NATIVE_EXIT(env, that, TextCompositionEventArgs_1ControlText_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextCompositionEventArgs_1Handled
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextCompositionEventArgs_1Handled)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextCompositionEventArgs_1Handled)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, TextCompositionEventArgs_1Handled_FUNC);
- ((TextCompositionEventArgs^)TO_OBJECT(arg0))->Handled = (arg1);
- OS_NATIVE_EXIT(env, that, TextCompositionEventArgs_1Handled_FUNC);
-}
-#endif
-
-#ifndef NO_TextCompositionEventArgs_1SystemText
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextCompositionEventArgs_1SystemText)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextCompositionEventArgs_1SystemText)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextCompositionEventArgs_1SystemText_FUNC);
- rc = (jint)TO_HANDLE(((TextCompositionEventArgs^)TO_OBJECT(arg0))->SystemText);
- OS_NATIVE_EXIT(env, that, TextCompositionEventArgs_1SystemText_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextCompositionEventArgs_1Text
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextCompositionEventArgs_1Text)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextCompositionEventArgs_1Text)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextCompositionEventArgs_1Text_FUNC);
- rc = (jint)TO_HANDLE(((TextCompositionEventArgs^)TO_OBJECT(arg0))->Text);
- OS_NATIVE_EXIT(env, that, TextCompositionEventArgs_1Text_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextDecorationCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextDecorationCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextDecorationCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextDecorationCollection_1Add_FUNC);
- ((TextDecorationCollection^)TO_OBJECT(arg0))->Add((TextDecorationCollection^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextDecorationCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_TextDecorations_1Strikethrough
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextDecorations_1Strikethrough)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextDecorations_1Strikethrough)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextDecorations_1Strikethrough_FUNC);
- rc = (jint)TO_HANDLE(TextDecorations::Strikethrough);
- OS_NATIVE_EXIT(env, that, TextDecorations_1Strikethrough_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextDecorations_1Underline
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextDecorations_1Underline)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextDecorations_1Underline)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextDecorations_1Underline_FUNC);
- rc = (jint)TO_HANDLE(TextDecorations::Underline);
- OS_NATIVE_EXIT(env, that, TextDecorations_1Underline_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextFormatter_1Create
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextFormatter_1Create)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TextFormatter_1Create)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextFormatter_1Create_FUNC);
- rc = (jint)TO_HANDLE(TextFormatter::Create());
- OS_NATIVE_EXIT(env, that, TextFormatter_1Create_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextFormatter_1FormatLine
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextFormatter_1FormatLine)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jdouble arg3, jint arg4, jint arg5);
-JNIEXPORT jint JNICALL OS_NATIVE(TextFormatter_1FormatLine)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jdouble arg3, jint arg4, jint arg5)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextFormatter_1FormatLine_FUNC);
- rc = (jint)TO_HANDLE(((TextFormatter^)TO_OBJECT(arg0))->FormatLine((TextSource^)TO_OBJECT(arg1), arg2, arg3, (TextParagraphProperties^)TO_OBJECT(arg4), (TextLineBreak^)TO_OBJECT(arg5)));
- OS_NATIVE_EXIT(env, that, TextFormatter_1FormatLine_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1Baseline
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1Baseline)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1Baseline)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1Baseline_FUNC);
- rc = (jdouble)((TextLine^)TO_OBJECT(arg0))->Baseline;
- OS_NATIVE_EXIT(env, that, TextLine_1Baseline_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1Draw
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextLine_1Draw)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT void JNICALL OS_NATIVE(TextLine_1Draw)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- OS_NATIVE_ENTER(env, that, TextLine_1Draw_FUNC);
- ((TextLine^)TO_OBJECT(arg0))->Draw((DrawingContext^)TO_OBJECT(arg1), (Point)TO_OBJECT(arg2), (InvertAxes)arg3);
- OS_NATIVE_EXIT(env, that, TextLine_1Draw_FUNC);
-}
-#endif
-
-#ifndef NO_TextLine_1GetCharacterHitFromDistance
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetCharacterHitFromDistance)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetCharacterHitFromDistance)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1GetCharacterHitFromDistance_FUNC);
- rc = (jint)TO_HANDLE(((TextLine^)TO_OBJECT(arg0))->GetCharacterHitFromDistance(arg1));
- OS_NATIVE_EXIT(env, that, TextLine_1GetCharacterHitFromDistance_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1GetDistanceFromCharacterHit
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1GetDistanceFromCharacterHit)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1GetDistanceFromCharacterHit)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1GetDistanceFromCharacterHit_FUNC);
- rc = (jdouble)((TextLine^)TO_OBJECT(arg0))->GetDistanceFromCharacterHit((CharacterHit)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextLine_1GetDistanceFromCharacterHit_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1GetIndexedGlyphRuns
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetIndexedGlyphRuns)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetIndexedGlyphRuns)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1GetIndexedGlyphRuns_FUNC);
- rc = (jint)TO_HANDLE(((TextLine^)TO_OBJECT(arg0))->GetIndexedGlyphRuns());
- OS_NATIVE_EXIT(env, that, TextLine_1GetIndexedGlyphRuns_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1GetNextCaretCharacterHit
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetNextCaretCharacterHit)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetNextCaretCharacterHit)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1GetNextCaretCharacterHit_FUNC);
- rc = (jint)TO_HANDLE(((TextLine^)TO_OBJECT(arg0))->GetNextCaretCharacterHit((CharacterHit)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, TextLine_1GetNextCaretCharacterHit_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1GetPreviousCaretCharacterHit
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetPreviousCaretCharacterHit)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetPreviousCaretCharacterHit)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1GetPreviousCaretCharacterHit_FUNC);
- rc = (jint)TO_HANDLE(((TextLine^)TO_OBJECT(arg0))->GetPreviousCaretCharacterHit((CharacterHit)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, TextLine_1GetPreviousCaretCharacterHit_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1GetTextBounds
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetTextBounds)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetTextBounds)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1GetTextBounds_FUNC);
- rc = (jint)TO_HANDLE(((TextLine^)TO_OBJECT(arg0))->GetTextBounds(arg1, arg2));
- OS_NATIVE_EXIT(env, that, TextLine_1GetTextBounds_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1GetTextLineBreak
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetTextLineBreak)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1GetTextLineBreak)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1GetTextLineBreak_FUNC);
- rc = (jint)TO_HANDLE(((TextLine^)TO_OBJECT(arg0))->GetTextLineBreak());
- OS_NATIVE_EXIT(env, that, TextLine_1GetTextLineBreak_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1Height
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1Height)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1Height)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1Height_FUNC);
- rc = (jdouble)((TextLine^)TO_OBJECT(arg0))->Height;
- OS_NATIVE_EXIT(env, that, TextLine_1Height_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1Length
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1Length)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1Length)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1Length_FUNC);
- rc = (jint)((TextLine^)TO_OBJECT(arg0))->Length;
- OS_NATIVE_EXIT(env, that, TextLine_1Length_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1NewlineLength
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1NewlineLength)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TextLine_1NewlineLength)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1NewlineLength_FUNC);
- rc = (jint)((TextLine^)TO_OBJECT(arg0))->NewlineLength;
- OS_NATIVE_EXIT(env, that, TextLine_1NewlineLength_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1Start
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1Start)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1Start)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1Start_FUNC);
- rc = (jdouble)((TextLine^)TO_OBJECT(arg0))->Start;
- OS_NATIVE_EXIT(env, that, TextLine_1Start_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1Width
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1Width)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1Width)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1Width_FUNC);
- rc = (jdouble)((TextLine^)TO_OBJECT(arg0))->Width;
- OS_NATIVE_EXIT(env, that, TextLine_1Width_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextLine_1WidthIncludingTrailingWhitespace
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1WidthIncludingTrailingWhitespace)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(TextLine_1WidthIncludingTrailingWhitespace)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, TextLine_1WidthIncludingTrailingWhitespace_FUNC);
- rc = (jdouble)((TextLine^)TO_OBJECT(arg0))->WidthIncludingTrailingWhitespace;
- OS_NATIVE_EXIT(env, that, TextLine_1WidthIncludingTrailingWhitespace_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TextTabPropertiesCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TextTabPropertiesCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TextTabPropertiesCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TextTabPropertiesCollection_1Add_FUNC);
- ((System::Collections::Generic::IList<TextTabProperties^>^)TO_OBJECT(arg0))->Add((TextTabProperties^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TextTabPropertiesCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_TileBrush_1AlignmentX
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1AlignmentX)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1AlignmentX)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TileBrush_1AlignmentX_FUNC);
- ((TileBrush^)TO_OBJECT(arg0))->AlignmentX = ((AlignmentX)arg1);
- OS_NATIVE_EXIT(env, that, TileBrush_1AlignmentX_FUNC);
-}
-#endif
-
-#ifndef NO_TileBrush_1AlignmentY
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1AlignmentY)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1AlignmentY)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TileBrush_1AlignmentY_FUNC);
- ((TileBrush^)TO_OBJECT(arg0))->AlignmentY = ((AlignmentY)arg1);
- OS_NATIVE_EXIT(env, that, TileBrush_1AlignmentY_FUNC);
-}
-#endif
-
-#ifndef NO_TileBrush_1Stretch
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1Stretch)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1Stretch)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TileBrush_1Stretch_FUNC);
- ((TileBrush^)TO_OBJECT(arg0))->Stretch = ((Stretch)arg1);
- OS_NATIVE_EXIT(env, that, TileBrush_1Stretch_FUNC);
-}
-#endif
-
-#ifndef NO_TileBrush_1TileMode
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1TileMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1TileMode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TileBrush_1TileMode_FUNC);
- ((TileBrush^)TO_OBJECT(arg0))->TileMode = ((TileMode)arg1);
- OS_NATIVE_EXIT(env, that, TileBrush_1TileMode_FUNC);
-}
-#endif
-
-#ifndef NO_TileBrush_1Viewport
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1Viewport)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1Viewport)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TileBrush_1Viewport_FUNC);
- ((TileBrush^)TO_OBJECT(arg0))->Viewport = ((Rect)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TileBrush_1Viewport_FUNC);
-}
-#endif
-
-#ifndef NO_TileBrush_1ViewportUnits
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1ViewportUnits)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TileBrush_1ViewportUnits)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TileBrush_1ViewportUnits_FUNC);
- ((TileBrush^)TO_OBJECT(arg0))->ViewportUnits = ((BrushMappingMode)arg1);
- OS_NATIVE_EXIT(env, that, TileBrush_1ViewportUnits_FUNC);
-}
-#endif
-
-#ifndef NO_TimeSpan_1FromMilliseconds
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TimeSpan_1FromMilliseconds)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TimeSpan_1FromMilliseconds)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TimeSpan_1FromMilliseconds_FUNC);
- rc = (jint)TO_HANDLE(TimeSpan::FromMilliseconds(arg0));
- OS_NATIVE_EXIT(env, that, TimeSpan_1FromMilliseconds_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Timeline_1AutoReverse
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Timeline_1AutoReverse)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Timeline_1AutoReverse)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Timeline_1AutoReverse_FUNC);
- ((Timeline^)TO_OBJECT(arg0))->AutoReverse = (arg1);
- OS_NATIVE_EXIT(env, that, Timeline_1AutoReverse_FUNC);
-}
-#endif
-
-#ifndef NO_Timeline_1Duration
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Timeline_1Duration)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Timeline_1Duration)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Timeline_1Duration_FUNC);
- ((Timeline^)TO_OBJECT(arg0))->Duration = ((Duration)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Timeline_1Duration_FUNC);
-}
-#endif
-
-#ifndef NO_Timeline_1RepeatBehavior
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Timeline_1RepeatBehavior)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Timeline_1RepeatBehavior)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Timeline_1RepeatBehavior_FUNC);
- ((Timeline^)TO_OBJECT(arg0))->RepeatBehavior = ((RepeatBehavior)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Timeline_1RepeatBehavior_FUNC);
-}
-#endif
-
-#ifndef NO_ToUnicode
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ToUnicode)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jcharArray arg3, jint arg4, jint arg5);
-JNIEXPORT jint JNICALL OS_NATIVE(ToUnicode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jcharArray arg3, jint arg4, jint arg5)
-{
- jbyte *lparg2=NULL;
- jchar *lparg3=NULL;
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ToUnicode_FUNC);
- if (arg2) if ((lparg2 = env->GetByteArrayElements(arg2, NULL)) == NULL) goto fail;
- if (arg3) if ((lparg3 = env->GetCharArrayElements(arg3, NULL)) == NULL) goto fail;
- rc = (jint)ToUnicode(arg0, arg1, (PBYTE)lparg2, (LPWSTR)lparg3, arg4, arg5);
-fail:
- if (arg3 && lparg3) env->ReleaseCharArrayElements(arg3, lparg3, 0);
- if (arg2 && lparg2) env->ReleaseByteArrayElements(arg2, lparg2, 0);
- OS_NATIVE_EXIT(env, that, ToUnicode_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ToggleButton_1Checked
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ToggleButton_1Checked)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ToggleButton_1Checked)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ToggleButton_1Checked_FUNC);
- ((ToggleButton^)TO_OBJECT(arg0))->Checked += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ToggleButton_1Checked_FUNC);
-}
-#endif
-
-#ifndef NO_ToggleButton_1CheckedEvent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1CheckedEvent)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1CheckedEvent)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ToggleButton_1CheckedEvent_FUNC);
- rc = (jint)TO_HANDLE(ToggleButton::CheckedEvent);
- OS_NATIVE_EXIT(env, that, ToggleButton_1CheckedEvent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ToggleButton_1IndeterminateEvent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1IndeterminateEvent)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1IndeterminateEvent)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ToggleButton_1IndeterminateEvent_FUNC);
- rc = (jint)TO_HANDLE(ToggleButton::IndeterminateEvent);
- OS_NATIVE_EXIT(env, that, ToggleButton_1IndeterminateEvent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ToggleButton_1IsChecked__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(ToggleButton_1IsChecked__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(ToggleButton_1IsChecked__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, ToggleButton_1IsChecked__I_FUNC);
- rc = (jboolean)((ToggleButton ^)TO_OBJECT(arg0))->IsChecked;
- OS_NATIVE_EXIT(env, that, ToggleButton_1IsChecked__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ToggleButton_1IsChecked__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ToggleButton_1IsChecked__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ToggleButton_1IsChecked__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ToggleButton_1IsChecked__IZ_FUNC);
- ((ToggleButton ^)TO_OBJECT(arg0))->IsChecked = (arg1);
- OS_NATIVE_EXIT(env, that, ToggleButton_1IsChecked__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_ToggleButton_1IsCheckedProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1IsCheckedProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1IsCheckedProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ToggleButton_1IsCheckedProperty_FUNC);
- rc = (jint)TO_HANDLE(ToggleButton::IsCheckedProperty);
- OS_NATIVE_EXIT(env, that, ToggleButton_1IsCheckedProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ToggleButton_1IsThreeStateProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1IsThreeStateProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1IsThreeStateProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ToggleButton_1IsThreeStateProperty_FUNC);
- rc = (jint)TO_HANDLE(ToggleButton::IsThreeStateProperty);
- OS_NATIVE_EXIT(env, that, ToggleButton_1IsThreeStateProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ToggleButton_1Unchecked
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ToggleButton_1Unchecked)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ToggleButton_1Unchecked)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ToggleButton_1Unchecked_FUNC);
- ((ToggleButton^)TO_OBJECT(arg0))->Unchecked += ((RoutedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, ToggleButton_1Unchecked_FUNC);
-}
-#endif
-
-#ifndef NO_ToggleButton_1UncheckedEvent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1UncheckedEvent)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(ToggleButton_1UncheckedEvent)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ToggleButton_1UncheckedEvent_FUNC);
- rc = (jint)TO_HANDLE(ToggleButton::UncheckedEvent);
- OS_NATIVE_EXIT(env, that, ToggleButton_1UncheckedEvent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ToolBarTray_1IsLocked
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ToolBarTray_1IsLocked)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ToolBarTray_1IsLocked)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, ToolBarTray_1IsLocked_FUNC);
- ((ToolBarTray^)TO_OBJECT(arg0))->IsLocked = (arg1);
- OS_NATIVE_EXIT(env, that, ToolBarTray_1IsLocked_FUNC);
-}
-#endif
-
-#ifndef NO_ToolBarTray_1Orientation
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ToolBarTray_1Orientation)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ToolBarTray_1Orientation)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ToolBarTray_1Orientation_FUNC);
- ((ToolBarTray^)TO_OBJECT(arg0))->Orientation = ((Orientation)arg1);
- OS_NATIVE_EXIT(env, that, ToolBarTray_1Orientation_FUNC);
-}
-#endif
-
-#ifndef NO_ToolBarTray_1ToolBars
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(ToolBarTray_1ToolBars)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(ToolBarTray_1ToolBars)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, ToolBarTray_1ToolBars_FUNC);
- rc = (jint)TO_HANDLE(((ToolBarTray^)TO_OBJECT(arg0))->ToolBars);
- OS_NATIVE_EXIT(env, that, ToolBarTray_1ToolBars_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_ToolBar_1SetOverflowMode
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(ToolBar_1SetOverflowMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(ToolBar_1SetOverflowMode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, ToolBar_1SetOverflowMode_FUNC);
- ToolBar::SetOverflowMode((DependencyObject^)TO_OBJECT(arg0), (OverflowMode)arg1);
- OS_NATIVE_EXIT(env, that, ToolBar_1SetOverflowMode_FUNC);
-}
-#endif
-
-#ifndef NO_TransformCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TransformCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TransformCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TransformCollection_1Add_FUNC);
- ((TransformCollection^)TO_OBJECT(arg0))->Add((Transform^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TransformCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_TransformGroup_1Children
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TransformGroup_1Children)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TransformGroup_1Children)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TransformGroup_1Children_FUNC);
- rc = (jint)TO_HANDLE(((TransformGroup^)TO_OBJECT(arg0))->Children);
- OS_NATIVE_EXIT(env, that, TransformGroup_1Children_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Transform_1Clone
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Transform_1Clone)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Transform_1Clone)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Transform_1Clone_FUNC);
- rc = (jint)TO_HANDLE(((Transform^)TO_OBJECT(arg0))->Clone());
- OS_NATIVE_EXIT(env, that, Transform_1Clone_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TreeViewItem_1CollapsedEvent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TreeViewItem_1CollapsedEvent)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TreeViewItem_1CollapsedEvent)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TreeViewItem_1CollapsedEvent_FUNC);
- rc = (jint)TO_HANDLE(TreeViewItem::CollapsedEvent);
- OS_NATIVE_EXIT(env, that, TreeViewItem_1CollapsedEvent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TreeViewItem_1ExpandedEvent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TreeViewItem_1ExpandedEvent)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TreeViewItem_1ExpandedEvent)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TreeViewItem_1ExpandedEvent_FUNC);
- rc = (jint)TO_HANDLE(TreeViewItem::ExpandedEvent);
- OS_NATIVE_EXIT(env, that, TreeViewItem_1ExpandedEvent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TreeViewItem_1IsExpanded__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(TreeViewItem_1IsExpanded__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(TreeViewItem_1IsExpanded__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, TreeViewItem_1IsExpanded__I_FUNC);
- rc = (jboolean)((TreeViewItem^)TO_OBJECT(arg0))->IsExpanded;
- OS_NATIVE_EXIT(env, that, TreeViewItem_1IsExpanded__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TreeViewItem_1IsExpanded__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TreeViewItem_1IsExpanded__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TreeViewItem_1IsExpanded__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, TreeViewItem_1IsExpanded__IZ_FUNC);
- ((TreeViewItem^)TO_OBJECT(arg0))->IsExpanded = (arg1);
- OS_NATIVE_EXIT(env, that, TreeViewItem_1IsExpanded__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_TreeViewItem_1IsSelected
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TreeViewItem_1IsSelected)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TreeViewItem_1IsSelected)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, TreeViewItem_1IsSelected_FUNC);
- ((TreeViewItem^)TO_OBJECT(arg0))->IsSelected = (arg1);
- OS_NATIVE_EXIT(env, that, TreeViewItem_1IsSelected_FUNC);
-}
-#endif
-
-#ifndef NO_TreeView_1SelectedItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TreeView_1SelectedItem)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TreeView_1SelectedItem)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TreeView_1SelectedItem_FUNC);
- rc = (jint)TO_HANDLE(((TreeView^)TO_OBJECT(arg0))->SelectedItem);
- OS_NATIVE_EXIT(env, that, TreeView_1SelectedItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TreeView_1SelectedItemChanged
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(TreeView_1SelectedItemChanged)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(TreeView_1SelectedItemChanged)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, TreeView_1SelectedItemChanged_FUNC);
- ((TreeView^)TO_OBJECT(arg0))->SelectedItemChanged += ((RoutedPropertyChangedEventHandler<Object^>^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, TreeView_1SelectedItemChanged_FUNC);
-}
-#endif
-
-#ifndef NO_TreeView_1typeid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TreeView_1typeid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(TreeView_1typeid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TreeView_1typeid_FUNC);
- rc = (jint)TO_HANDLE(TreeView::typeid);
- OS_NATIVE_EXIT(env, that, TreeView_1typeid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TypeConverter_1ConvertFromString
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TypeConverter_1ConvertFromString)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(TypeConverter_1ConvertFromString)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TypeConverter_1ConvertFromString_FUNC);
- rc = (jint)TO_HANDLE(((TypeConverter^)TO_OBJECT(arg0))->ConvertFromString((String^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, TypeConverter_1ConvertFromString_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TypeConverter_1ConvertToString
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TypeConverter_1ConvertToString)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(TypeConverter_1ConvertToString)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TypeConverter_1ConvertToString_FUNC);
- rc = (jint)TO_HANDLE(((TypeConverter^)TO_OBJECT(arg0))->ConvertToString((Object^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, TypeConverter_1ConvertToString_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TypeDescriptor_1GetConverter
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TypeDescriptor_1GetConverter)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TypeDescriptor_1GetConverter)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TypeDescriptor_1GetConverter_FUNC);
- rc = (jint)TO_HANDLE(TypeDescriptor::GetConverter((Object^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, TypeDescriptor_1GetConverter_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Type_1FullName
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Type_1FullName)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Type_1FullName)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Type_1FullName_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((Type^)TO_OBJECT(arg0))->FullName);
- OS_NATIVE_EXIT(env, that, Type_1FullName_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Type_1IsInstanceOfType
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Type_1IsInstanceOfType)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Type_1IsInstanceOfType)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Type_1IsInstanceOfType_FUNC);
- rc = (jboolean)((Type^)TO_OBJECT(arg0))->IsInstanceOfType((Object^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Type_1IsInstanceOfType_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TypefaceCollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TypefaceCollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TypefaceCollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TypefaceCollection_1Count_FUNC);
- rc = (jint)((System::Collections::Generic::ICollection<Typeface^>^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, TypefaceCollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TypefaceCollection_1Current
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TypefaceCollection_1Current)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TypefaceCollection_1Current)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TypefaceCollection_1Current_FUNC);
- rc = (jint)TO_HANDLE(((System::Collections::Generic::IEnumerator<Typeface^>^)TO_OBJECT(arg0))->Current);
- OS_NATIVE_EXIT(env, that, TypefaceCollection_1Current_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_TypefaceCollection_1GetEnumerator
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(TypefaceCollection_1GetEnumerator)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(TypefaceCollection_1GetEnumerator)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, TypefaceCollection_1GetEnumerator_FUNC);
- rc = (jint)TO_HANDLE(((System::Collections::Generic::IEnumerable<Typeface^>^)TO_OBJECT(arg0))->GetEnumerator());
- OS_NATIVE_EXIT(env, that, TypefaceCollection_1GetEnumerator_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Typeface_1FontFamily
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Typeface_1FontFamily)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Typeface_1FontFamily)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Typeface_1FontFamily_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((Typeface^)TO_OBJECT(arg0))->FontFamily);
- OS_NATIVE_EXIT(env, that, Typeface_1FontFamily_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Typeface_1Stretch
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Typeface_1Stretch)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Typeface_1Stretch)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Typeface_1Stretch_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((Typeface^)TO_OBJECT(arg0))->Stretch);
- OS_NATIVE_EXIT(env, that, Typeface_1Stretch_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Typeface_1Style
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Typeface_1Style)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Typeface_1Style)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Typeface_1Style_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((Typeface^)TO_OBJECT(arg0))->Style);
- OS_NATIVE_EXIT(env, that, Typeface_1Style_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Typeface_1Weight
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Typeface_1Weight)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Typeface_1Weight)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Typeface_1Weight_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((Typeface^)TO_OBJECT(arg0))->Weight);
- OS_NATIVE_EXIT(env, that, Typeface_1Weight_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElementCollection_1Add
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElementCollection_1Add)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElementCollection_1Add)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElementCollection_1Add_FUNC);
- ((UIElementCollection^)TO_OBJECT(arg0))->Add((UIElement^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElementCollection_1Add_FUNC);
-}
-#endif
-
-#ifndef NO_UIElementCollection_1Contains
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElementCollection_1Contains)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElementCollection_1Contains)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElementCollection_1Contains_FUNC);
- rc = (jboolean)((UIElementCollection^)TO_OBJECT(arg0))->Contains((UIElement^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElementCollection_1Contains_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElementCollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElementCollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElementCollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElementCollection_1Count_FUNC);
- rc = (jint)((UIElementCollection^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, UIElementCollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElementCollection_1Current
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElementCollection_1Current)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElementCollection_1Current)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElementCollection_1Current_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerator^)TO_OBJECT(arg0))->Current);
- OS_NATIVE_EXIT(env, that, UIElementCollection_1Current_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElementCollection_1GetEnumerator
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElementCollection_1GetEnumerator)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElementCollection_1GetEnumerator)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElementCollection_1GetEnumerator_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerable^)TO_OBJECT(arg0))->GetEnumerator());
- OS_NATIVE_EXIT(env, that, UIElementCollection_1GetEnumerator_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElementCollection_1IndexOf
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElementCollection_1IndexOf)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElementCollection_1IndexOf)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElementCollection_1IndexOf_FUNC);
- rc = (jint)((UIElementCollection^)TO_OBJECT(arg0))->IndexOf((UIElement^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElementCollection_1IndexOf_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElementCollection_1Insert
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElementCollection_1Insert)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(UIElementCollection_1Insert)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, UIElementCollection_1Insert_FUNC);
- ((UIElementCollection^)TO_OBJECT(arg0))->Insert(arg1, (UIElement^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, UIElementCollection_1Insert_FUNC);
-}
-#endif
-
-#ifndef NO_UIElementCollection_1Remove
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElementCollection_1Remove)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElementCollection_1Remove)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElementCollection_1Remove_FUNC);
- ((UIElementCollection^)TO_OBJECT(arg0))->Remove((UIElement^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElementCollection_1Remove_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1AddHandler
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1AddHandler)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1AddHandler)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1AddHandler_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->AddHandler((RoutedEvent^)TO_OBJECT(arg1), (Delegate^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, UIElement_1AddHandler_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1BeginAnimation
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1BeginAnimation)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1BeginAnimation)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1BeginAnimation_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->BeginAnimation((DependencyProperty^)TO_OBJECT(arg1), (AnimationTimeline^)TO_OBJECT(arg2));
- OS_NATIVE_EXIT(env, that, UIElement_1BeginAnimation_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1CaptureMouse
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1CaptureMouse)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1CaptureMouse)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1CaptureMouse_FUNC);
- rc = (jboolean)((UIElement^)TO_OBJECT(arg0))->CaptureMouse();
- OS_NATIVE_EXIT(env, that, UIElement_1CaptureMouse_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1Clip
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1Clip)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1Clip)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1Clip_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->Clip = ((Geometry^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1Clip_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1ClipToBounds
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1ClipToBounds)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1ClipToBounds)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1ClipToBounds_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->ClipToBounds = (arg1);
- OS_NATIVE_EXIT(env, that, UIElement_1ClipToBounds_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1DesiredSize
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1DesiredSize)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1DesiredSize)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1DesiredSize_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((UIElement^)TO_OBJECT(arg0))->DesiredSize);
- OS_NATIVE_EXIT(env, that, UIElement_1DesiredSize_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1Focus
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1Focus)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1Focus)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1Focus_FUNC);
- rc = (jboolean)((UIElement^)TO_OBJECT(arg0))->Focus();
- OS_NATIVE_EXIT(env, that, UIElement_1Focus_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1Focusable
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1Focusable)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1Focusable)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1Focusable_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->Focusable = (arg1);
- OS_NATIVE_EXIT(env, that, UIElement_1Focusable_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1InputHitTest
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1InputHitTest)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1InputHitTest)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1InputHitTest_FUNC);
- rc = (jint)TO_HANDLE(((UIElement^)TO_OBJECT(arg0))->InputHitTest((Point)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, UIElement_1InputHitTest_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1InvalidateVisual
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1InvalidateVisual)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1InvalidateVisual)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1InvalidateVisual_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->InvalidateVisual();
- OS_NATIVE_EXIT(env, that, UIElement_1InvalidateVisual_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1IsEnabled__I
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsEnabled__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsEnabled__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1IsEnabled__I_FUNC);
- rc = (jboolean)((UIElement^)TO_OBJECT(arg0))->IsEnabled;
- OS_NATIVE_EXIT(env, that, UIElement_1IsEnabled__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1IsEnabled__IZ
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1IsEnabled__IZ)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1IsEnabled__IZ)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1IsEnabled__IZ_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->IsEnabled = (arg1);
- OS_NATIVE_EXIT(env, that, UIElement_1IsEnabled__IZ_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1IsFocused
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsFocused)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsFocused)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1IsFocused_FUNC);
- rc = (jboolean)((UIElement^)TO_OBJECT(arg0))->IsFocused;
- OS_NATIVE_EXIT(env, that, UIElement_1IsFocused_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1IsKeyboardFocusWithin
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsKeyboardFocusWithin)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsKeyboardFocusWithin)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1IsKeyboardFocusWithin_FUNC);
- rc = (jboolean)((UIElement^)TO_OBJECT(arg0))->IsKeyboardFocusWithin;
- OS_NATIVE_EXIT(env, that, UIElement_1IsKeyboardFocusWithin_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1IsKeyboardFocused
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsKeyboardFocused)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsKeyboardFocused)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1IsKeyboardFocused_FUNC);
- rc = (jboolean)((UIElement^)TO_OBJECT(arg0))->IsKeyboardFocused;
- OS_NATIVE_EXIT(env, that, UIElement_1IsKeyboardFocused_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1IsMouseOver
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsMouseOver)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsMouseOver)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1IsMouseOver_FUNC);
- rc = (jboolean)((UIElement^)TO_OBJECT(arg0))->IsMouseOver;
- OS_NATIVE_EXIT(env, that, UIElement_1IsMouseOver_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1IsVisible
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsVisible)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(UIElement_1IsVisible)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1IsVisible_FUNC);
- rc = (jboolean)((UIElement^)TO_OBJECT(arg0))->IsVisible;
- OS_NATIVE_EXIT(env, that, UIElement_1IsVisible_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1KeyDown
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1KeyDown)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1KeyDown)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1KeyDown_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->KeyDown += ((KeyEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1KeyDown_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1KeyUp
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1KeyUp)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1KeyUp)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1KeyUp_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->KeyUp += ((KeyEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1KeyUp_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1LostKeyboardFocus
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1LostKeyboardFocus)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1LostKeyboardFocus)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1LostKeyboardFocus_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->LostKeyboardFocus += ((KeyboardFocusChangedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1LostKeyboardFocus_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1Measure
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1Measure)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1Measure)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1Measure_FUNC);
- ((UIElement ^)TO_OBJECT(arg0))->Measure((Size)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1Measure_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1MouseDown
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseDown)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseDown)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1MouseDown_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->MouseDown += ((MouseButtonEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1MouseDown_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1MouseEnter
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseEnter)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseEnter)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1MouseEnter_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->MouseEnter += ((MouseEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1MouseEnter_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1MouseLeave
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseLeave)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseLeave)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1MouseLeave_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->MouseLeave += ((MouseEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1MouseLeave_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1MouseMove
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseMove)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseMove)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1MouseMove_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->MouseMove += ((MouseEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1MouseMove_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1MouseUp
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseUp)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseUp)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1MouseUp_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->MouseUp += ((MouseButtonEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1MouseUp_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1MouseWheel
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseWheel)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1MouseWheel)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1MouseWheel_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->MouseWheel += ((MouseWheelEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1MouseWheel_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1OpacityProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1OpacityProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1OpacityProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1OpacityProperty_FUNC);
- rc = (jint)TO_HANDLE(UIElement::OpacityProperty);
- OS_NATIVE_EXIT(env, that, UIElement_1OpacityProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1PreviewGotKeyboardFocus
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewGotKeyboardFocus)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewGotKeyboardFocus)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1PreviewGotKeyboardFocus_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->PreviewGotKeyboardFocus += ((KeyboardFocusChangedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1PreviewGotKeyboardFocus_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1PreviewLostKeyboardFocus
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewLostKeyboardFocus)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewLostKeyboardFocus)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1PreviewLostKeyboardFocus_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->PreviewLostKeyboardFocus += ((KeyboardFocusChangedEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1PreviewLostKeyboardFocus_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1PreviewMouseDown
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewMouseDown)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewMouseDown)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1PreviewMouseDown_FUNC);
- ((UIElement ^)TO_OBJECT(arg0))->PreviewMouseDown += ((MouseButtonEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1PreviewMouseDown_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1PreviewMouseMove
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewMouseMove)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewMouseMove)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1PreviewMouseMove_FUNC);
- ((UIElement ^)TO_OBJECT(arg0))->PreviewMouseMove += ((MouseEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1PreviewMouseMove_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1PreviewMouseUp
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewMouseUp)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewMouseUp)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1PreviewMouseUp_FUNC);
- ((UIElement ^)TO_OBJECT(arg0))->PreviewMouseUp += ((MouseButtonEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1PreviewMouseUp_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1PreviewMouseWheel
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewMouseWheel)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewMouseWheel)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1PreviewMouseWheel_FUNC);
- ((UIElement ^)TO_OBJECT(arg0))->PreviewMouseWheel += ((MouseWheelEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1PreviewMouseWheel_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1PreviewTextInput
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewTextInput)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1PreviewTextInput)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1PreviewTextInput_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->PreviewTextInput += ((TextCompositionEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1PreviewTextInput_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1ReleaseMouseCapture
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1ReleaseMouseCapture)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1ReleaseMouseCapture)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1ReleaseMouseCapture_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->ReleaseMouseCapture();
- OS_NATIVE_EXIT(env, that, UIElement_1ReleaseMouseCapture_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1TextInput
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1TextInput)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1TextInput)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1TextInput_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->TextInput += ((TextCompositionEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, UIElement_1TextInput_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1TranslatePoint
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1TranslatePoint)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1TranslatePoint)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1TranslatePoint_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((UIElement^)TO_OBJECT(arg0))->TranslatePoint((Point)TO_OBJECT(arg1), (UIElement^)TO_OBJECT(arg2)));
- OS_NATIVE_EXIT(env, that, UIElement_1TranslatePoint_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1UpdateLayout
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1UpdateLayout)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1UpdateLayout)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1UpdateLayout_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->UpdateLayout();
- OS_NATIVE_EXIT(env, that, UIElement_1UpdateLayout_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1Visibility__I
-extern "C" JNIEXPORT jbyte JNICALL OS_NATIVE(UIElement_1Visibility__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jbyte JNICALL OS_NATIVE(UIElement_1Visibility__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jbyte rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1Visibility__I_FUNC);
- rc = (jbyte)((UIElement^)TO_OBJECT(arg0))->Visibility;
- OS_NATIVE_EXIT(env, that, UIElement_1Visibility__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_UIElement_1Visibility__IB
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(UIElement_1Visibility__IB)(JNIEnv *env, jclass that, jint arg0, jbyte arg1);
-JNIEXPORT void JNICALL OS_NATIVE(UIElement_1Visibility__IB)
- (JNIEnv *env, jclass that, jint arg0, jbyte arg1)
-{
- OS_NATIVE_ENTER(env, that, UIElement_1Visibility__IB_FUNC);
- ((UIElement^)TO_OBJECT(arg0))->Visibility = ((Visibility)arg1);
- OS_NATIVE_EXIT(env, that, UIElement_1Visibility__IB_FUNC);
-}
-#endif
-
-#ifndef NO_UIElement_1VisibilityProperty
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1VisibilityProperty)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(UIElement_1VisibilityProperty)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, UIElement_1VisibilityProperty_FUNC);
- rc = (jint)TO_HANDLE(UIElement::VisibilityProperty);
- OS_NATIVE_EXIT(env, that, UIElement_1VisibilityProperty_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_VirtualizingStackPanel_1VerticalOffset
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(VirtualizingStackPanel_1VerticalOffset)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(VirtualizingStackPanel_1VerticalOffset)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, VirtualizingStackPanel_1VerticalOffset_FUNC);
- rc = (jdouble)((VirtualizingStackPanel^)TO_OBJECT(arg0))->VerticalOffset;
- OS_NATIVE_EXIT(env, that, VirtualizingStackPanel_1VerticalOffset_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_VisualTreeHelper_1GetChild
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(VisualTreeHelper_1GetChild)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(VisualTreeHelper_1GetChild)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, VisualTreeHelper_1GetChild_FUNC);
- rc = (jint)TO_HANDLE(VisualTreeHelper::GetChild((DependencyObject^)TO_OBJECT(arg0), arg1));
- OS_NATIVE_EXIT(env, that, VisualTreeHelper_1GetChild_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_VisualTreeHelper_1GetChildrenCount
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(VisualTreeHelper_1GetChildrenCount)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(VisualTreeHelper_1GetChildrenCount)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, VisualTreeHelper_1GetChildrenCount_FUNC);
- rc = (jint)VisualTreeHelper::GetChildrenCount((DependencyObject^)TO_OBJECT(arg0));
- OS_NATIVE_EXIT(env, that, VisualTreeHelper_1GetChildrenCount_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_VisualTreeHelper_1GetParent
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(VisualTreeHelper_1GetParent)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(VisualTreeHelper_1GetParent)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, VisualTreeHelper_1GetParent_FUNC);
- rc = (jint)TO_HANDLE(VisualTreeHelper::GetParent((DependencyObject^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, VisualTreeHelper_1GetParent_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Visual_1PointFromScreen
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Visual_1PointFromScreen)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(Visual_1PointFromScreen)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Visual_1PointFromScreen_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((Visual^)TO_OBJECT(arg0))->PointFromScreen((Point)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, Visual_1PointFromScreen_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Visual_1PointToScreen
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Visual_1PointToScreen)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(Visual_1PointToScreen)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Visual_1PointToScreen_FUNC);
- rc = (jint)TO_HANDLE_STRUCT(((Visual^)TO_OBJECT(arg0))->PointToScreen((Point)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, Visual_1PointToScreen_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_WindowCollection_1Count
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(WindowCollection_1Count)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(WindowCollection_1Count)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, WindowCollection_1Count_FUNC);
- rc = (jint)((WindowCollection^)TO_OBJECT(arg0))->Count;
- OS_NATIVE_EXIT(env, that, WindowCollection_1Count_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_WindowCollection_1Current
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(WindowCollection_1Current)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(WindowCollection_1Current)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, WindowCollection_1Current_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerator^)TO_OBJECT(arg0))->Current);
- OS_NATIVE_EXIT(env, that, WindowCollection_1Current_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_WindowCollection_1GetEnumerator
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(WindowCollection_1GetEnumerator)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(WindowCollection_1GetEnumerator)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, WindowCollection_1GetEnumerator_FUNC);
- rc = (jint)TO_HANDLE(((IEnumerable^)TO_OBJECT(arg0))->GetEnumerator());
- OS_NATIVE_EXIT(env, that, WindowCollection_1GetEnumerator_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Window_1Activate
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Activate)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Activate)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Window_1Activate_FUNC);
- ((Window^)TO_OBJECT(arg0))->Activate();
- OS_NATIVE_EXIT(env, that, Window_1Activate_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Activated
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Activated)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Activated)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Activated_FUNC);
- ((Window^)TO_OBJECT(arg0))->Activated += ((EventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Window_1Activated_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1AllowsTransparency
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1AllowsTransparency)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1AllowsTransparency)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1AllowsTransparency_FUNC);
- ((Window^)TO_OBJECT(arg0))->AllowsTransparency = (arg1);
- OS_NATIVE_EXIT(env, that, Window_1AllowsTransparency_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Close
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Close)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Close)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Window_1Close_FUNC);
- ((Window^)TO_OBJECT(arg0))->Close();
- OS_NATIVE_EXIT(env, that, Window_1Close_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Closing
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Closing)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Closing)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Closing_FUNC);
- ((Window^)TO_OBJECT(arg0))->Closing += ((CancelEventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Window_1Closing_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Deactivated
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Deactivated)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Deactivated)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Deactivated_FUNC);
- ((Window^)TO_OBJECT(arg0))->Deactivated += ((EventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Window_1Deactivated_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Hide
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Hide)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Hide)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Window_1Hide_FUNC);
- ((Window^)TO_OBJECT(arg0))->Hide();
- OS_NATIVE_EXIT(env, that, Window_1Hide_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Icon
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Icon)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Icon)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Icon_FUNC);
- ((Window^)TO_OBJECT(arg0))->Icon = ((ImageSource^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Window_1Icon_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1IsActive
-extern "C" JNIEXPORT jboolean JNICALL OS_NATIVE(Window_1IsActive)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jboolean JNICALL OS_NATIVE(Window_1IsActive)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jboolean rc = 0;
- OS_NATIVE_ENTER(env, that, Window_1IsActive_FUNC);
- rc = (jboolean)((Window^)TO_OBJECT(arg0))->IsActive;
- OS_NATIVE_EXIT(env, that, Window_1IsActive_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Window_1Left__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Window_1Left__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Window_1Left__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Window_1Left__I_FUNC);
- rc = (jdouble)((Window^)TO_OBJECT(arg0))->Left;
- OS_NATIVE_EXIT(env, that, Window_1Left__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Window_1Left__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Left__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Left__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Left__ID_FUNC);
- ((Window^)TO_OBJECT(arg0))->Left = (arg1);
- OS_NATIVE_EXIT(env, that, Window_1Left__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1LocationChanged
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1LocationChanged)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1LocationChanged)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1LocationChanged_FUNC);
- ((Window^)TO_OBJECT(arg0))->LocationChanged += ((EventHandler^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Window_1LocationChanged_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Owner
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Owner)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Owner)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Owner_FUNC);
- ((Window^)TO_OBJECT(arg0))->Owner = ((Window^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Window_1Owner_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1ResizeMode
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1ResizeMode)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1ResizeMode)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1ResizeMode_FUNC);
- ((Window^)TO_OBJECT(arg0))->ResizeMode = ((ResizeMode)arg1);
- OS_NATIVE_EXIT(env, that, Window_1ResizeMode_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Show
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Show)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Show)
- (JNIEnv *env, jclass that, jint arg0)
-{
- OS_NATIVE_ENTER(env, that, Window_1Show_FUNC);
- ((Window^)TO_OBJECT(arg0))->Show();
- OS_NATIVE_EXIT(env, that, Window_1Show_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1ShowInTaskbar
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1ShowInTaskbar)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1ShowInTaskbar)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1ShowInTaskbar_FUNC);
- ((Window^)TO_OBJECT(arg0))->ShowInTaskbar = (arg1);
- OS_NATIVE_EXIT(env, that, Window_1ShowInTaskbar_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Title__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Window_1Title__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Window_1Title__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Window_1Title__I_FUNC);
- rc = (jint)TO_HANDLE(((Window^)TO_OBJECT(arg0))->Title);
- OS_NATIVE_EXIT(env, that, Window_1Title__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Window_1Title__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Title__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Title__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Title__II_FUNC);
- ((Window^)TO_OBJECT(arg0))->Title = ((String^)TO_OBJECT(arg1));
- OS_NATIVE_EXIT(env, that, Window_1Title__II_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Top__I
-extern "C" JNIEXPORT jdouble JNICALL OS_NATIVE(Window_1Top__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jdouble JNICALL OS_NATIVE(Window_1Top__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jdouble rc = 0;
- OS_NATIVE_ENTER(env, that, Window_1Top__I_FUNC);
- rc = (jdouble)((Window ^)TO_OBJECT(arg0))->Top;
- OS_NATIVE_EXIT(env, that, Window_1Top__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Window_1Top__ID
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Top__ID)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Top__ID)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Top__ID_FUNC);
- ((Window ^)TO_OBJECT(arg0))->Top = (arg1);
- OS_NATIVE_EXIT(env, that, Window_1Top__ID_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1Topmost
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1Topmost)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1Topmost)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1Topmost_FUNC);
- ((Window^)TO_OBJECT(arg0))->Topmost = (arg1);
- OS_NATIVE_EXIT(env, that, Window_1Topmost_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1WindowState__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(Window_1WindowState__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(Window_1WindowState__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, Window_1WindowState__I_FUNC);
- rc = (jint)((Window^)TO_OBJECT(arg0))->WindowState;
- OS_NATIVE_EXIT(env, that, Window_1WindowState__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_Window_1WindowState__II
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1WindowState__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1WindowState__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1WindowState__II_FUNC);
- ((Window^)TO_OBJECT(arg0))->WindowState = ((WindowState)arg1);
- OS_NATIVE_EXIT(env, that, Window_1WindowState__II_FUNC);
-}
-#endif
-
-#ifndef NO_Window_1WindowStyle
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(Window_1WindowStyle)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT void JNICALL OS_NATIVE(Window_1WindowStyle)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- OS_NATIVE_ENTER(env, that, Window_1WindowStyle_FUNC);
- ((Window^)TO_OBJECT(arg0))->WindowStyle = ((WindowStyle)arg1);
- OS_NATIVE_EXIT(env, that, Window_1WindowStyle_FUNC);
-}
-#endif
-
-#ifndef NO_WriteableBitmap_1WritePixels
-extern "C" JNIEXPORT void JNICALL OS_NATIVE(WriteableBitmap_1WritePixels)(JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3, jint arg4);
-JNIEXPORT void JNICALL OS_NATIVE(WriteableBitmap_1WritePixels)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jbyteArray arg2, jint arg3, jint arg4)
-{
- jbyte *lparg2=NULL;
- OS_NATIVE_ENTER(env, that, WriteableBitmap_1WritePixels_FUNC);
- if (arg2) if ((lparg2 = env->GetByteArrayElements(arg2, NULL)) == NULL) goto fail;
- ((WriteableBitmap^)TO_OBJECT(arg0))->WritePixels((Int32Rect)TO_OBJECT(arg1), (IntPtr)lparg2, arg3, arg4);
-fail:
- if (arg2 && lparg2) env->ReleaseByteArrayElements(arg2, lparg2, 0);
- OS_NATIVE_EXIT(env, that, WriteableBitmap_1WritePixels_FUNC);
-}
-#endif
-
-#ifndef NO_gcnew_1AccessText
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1AccessText)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1AccessText)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1AccessText_FUNC);
- rc = (jint)TO_HANDLE(gcnew AccessText());
- OS_NATIVE_EXIT(env, that, gcnew_1AccessText_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Application
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Application)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Application)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Application_FUNC);
- rc = (jint)TO_HANDLE(gcnew Application());
- OS_NATIVE_EXIT(env, that, gcnew_1Application_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ArcSegment
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ArcSegment)(JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2, jboolean arg3, jint arg4, jboolean arg5);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ArcSegment)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2, jboolean arg3, jint arg4, jboolean arg5)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ArcSegment_FUNC);
- rc = (jint)TO_HANDLE(gcnew ArcSegment((Point)TO_OBJECT(arg0), (Size)TO_OBJECT(arg1), arg2, arg3, (SweepDirection)arg4, arg5));
- OS_NATIVE_EXIT(env, that, gcnew_1ArcSegment_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ArrayList
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ArrayList)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ArrayList)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ArrayList_FUNC);
- rc = (jint)TO_HANDLE(gcnew ArrayList(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1ArrayList_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1BezierSegment
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1BezierSegment)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1BezierSegment)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jboolean arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1BezierSegment_FUNC);
- rc = (jint)TO_HANDLE(gcnew BezierSegment((Point)TO_OBJECT(arg0), (Point)TO_OBJECT(arg1), (Point)TO_OBJECT(arg2), arg3));
- OS_NATIVE_EXIT(env, that, gcnew_1BezierSegment_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Binding__
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Binding__)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Binding__)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Binding___FUNC);
- rc = (jint)TO_HANDLE(gcnew Binding());
- OS_NATIVE_EXIT(env, that, gcnew_1Binding___FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Binding__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Binding__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Binding__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Binding__I_FUNC);
- rc = (jint)TO_HANDLE(gcnew Binding((String^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1Binding__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Bitmap
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Bitmap)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jbyteArray arg4);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Bitmap)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jbyteArray arg4)
-{
- jbyte *lparg4=NULL;
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Bitmap_FUNC);
- if (arg4) if ((lparg4 = env->GetByteArrayElements(arg4, NULL)) == NULL) goto fail;
- rc = (jint)TO_HANDLE(gcnew System::Drawing::Bitmap(arg0, arg1, arg2, (System::Drawing::Imaging::PixelFormat)arg3, (IntPtr)lparg4));
-fail:
- if (arg4 && lparg4) env->ReleaseByteArrayElements(arg4, lparg4, 0);
- OS_NATIVE_EXIT(env, that, gcnew_1Bitmap_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1BitmapImage
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1BitmapImage)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1BitmapImage)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1BitmapImage_FUNC);
- rc = (jint)TO_HANDLE(gcnew BitmapImage());
- OS_NATIVE_EXIT(env, that, gcnew_1BitmapImage_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1BitmapPalette
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1BitmapPalette)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1BitmapPalette)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1BitmapPalette_FUNC);
- rc = (jint)TO_HANDLE(gcnew BitmapPalette((System::Collections::Generic::IList<Color>^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1BitmapPalette_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Button
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Button)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Button)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Button_FUNC);
- rc = (jint)TO_HANDLE(gcnew Button());
- OS_NATIVE_EXIT(env, that, gcnew_1Button_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Canvas
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Canvas)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Canvas)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Canvas_FUNC);
- rc = (jint)TO_HANDLE(gcnew Canvas());
- OS_NATIVE_EXIT(env, that, gcnew_1Canvas_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1CharacterHit
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CharacterHit)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CharacterHit)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1CharacterHit_FUNC);
- rc = (jint)TO_HANDLE(gcnew CharacterHit(arg0, arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1CharacterHit_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1CheckBox
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CheckBox)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CheckBox)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1CheckBox_FUNC);
- rc = (jint)TO_HANDLE(gcnew CheckBox());
- OS_NATIVE_EXIT(env, that, gcnew_1CheckBox_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ColorDialog
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ColorDialog)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ColorDialog)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ColorDialog_FUNC);
- rc = (jint)TO_HANDLE(gcnew System::Windows::Forms::ColorDialog());
- OS_NATIVE_EXIT(env, that, gcnew_1ColorDialog_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ColorList
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ColorList)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ColorList)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ColorList_FUNC);
- rc = (jint)TO_HANDLE(gcnew System::Collections::Generic::List<Color>(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1ColorList_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ColumnDefinition
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ColumnDefinition)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ColumnDefinition)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ColumnDefinition_FUNC);
- rc = (jint)TO_HANDLE(gcnew ColumnDefinition());
- OS_NATIVE_EXIT(env, that, gcnew_1ColumnDefinition_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1CombinedGeometry
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CombinedGeometry)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CombinedGeometry)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1CombinedGeometry_FUNC);
- rc = (jint)TO_HANDLE(gcnew CombinedGeometry((GeometryCombineMode)arg0, (Geometry^)TO_OBJECT(arg1), (Geometry^)TO_OBJECT(arg2)));
- OS_NATIVE_EXIT(env, that, gcnew_1CombinedGeometry_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ComboBox
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ComboBox)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ComboBox)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ComboBox_FUNC);
- rc = (jint)TO_HANDLE(gcnew ComboBox());
- OS_NATIVE_EXIT(env, that, gcnew_1ComboBox_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ComboBoxItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ComboBoxItem)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ComboBoxItem)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ComboBoxItem_FUNC);
- rc = (jint)TO_HANDLE(gcnew ComboBoxItem());
- OS_NATIVE_EXIT(env, that, gcnew_1ComboBoxItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1CompositeCollection
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CompositeCollection)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CompositeCollection)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1CompositeCollection_FUNC);
- rc = (jint)TO_HANDLE(gcnew CompositeCollection());
- OS_NATIVE_EXIT(env, that, gcnew_1CompositeCollection_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ContentControl
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ContentControl)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ContentControl)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ContentControl_FUNC);
- rc = (jint)TO_HANDLE(gcnew ContentControl());
- OS_NATIVE_EXIT(env, that, gcnew_1ContentControl_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ContextMenu
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ContextMenu)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ContextMenu)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ContextMenu_FUNC);
- rc = (jint)TO_HANDLE(gcnew ContextMenu());
- OS_NATIVE_EXIT(env, that, gcnew_1ContextMenu_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ControlTemplate
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ControlTemplate)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ControlTemplate)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ControlTemplate_FUNC);
- rc = (jint)TO_HANDLE(gcnew ControlTemplate());
- OS_NATIVE_EXIT(env, that, gcnew_1ControlTemplate_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1CroppedBitmap
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CroppedBitmap)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1CroppedBitmap)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1CroppedBitmap_FUNC);
- rc = (jint)TO_HANDLE(gcnew CroppedBitmap((BitmapSource^)TO_OBJECT(arg0), (Int32Rect)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, gcnew_1CroppedBitmap_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1DashStyle
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DashStyle)(JNIEnv *env, jclass that, jint arg0, jdouble arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DashStyle)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1DashStyle_FUNC);
- rc = (jint)TO_HANDLE(gcnew DashStyle((DoubleCollection^)TO_OBJECT(arg0), arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1DashStyle_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1DataTemplate
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DataTemplate)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DataTemplate)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1DataTemplate_FUNC);
- rc = (jint)TO_HANDLE(gcnew DataTemplate());
- OS_NATIVE_EXIT(env, that, gcnew_1DataTemplate_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1DiscreteDoubleKeyFrame
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DiscreteDoubleKeyFrame)(JNIEnv *env, jclass that, jdouble arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DiscreteDoubleKeyFrame)
- (JNIEnv *env, jclass that, jdouble arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1DiscreteDoubleKeyFrame_FUNC);
- rc = (jint)TO_HANDLE(gcnew DiscreteDoubleKeyFrame(arg0, (KeyTime)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, gcnew_1DiscreteDoubleKeyFrame_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1DispatcherFrame
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DispatcherFrame)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DispatcherFrame)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1DispatcherFrame_FUNC);
- rc = (jint)TO_HANDLE(gcnew DispatcherFrame());
- OS_NATIVE_EXIT(env, that, gcnew_1DispatcherFrame_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1DispatcherTimer
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DispatcherTimer)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DispatcherTimer)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1DispatcherTimer_FUNC);
- rc = (jint)TO_HANDLE(gcnew DispatcherTimer());
- OS_NATIVE_EXIT(env, that, gcnew_1DispatcherTimer_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1DoubleAnimationUsingKeyFrames
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DoubleAnimationUsingKeyFrames)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DoubleAnimationUsingKeyFrames)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1DoubleAnimationUsingKeyFrames_FUNC);
- rc = (jint)TO_HANDLE(gcnew DoubleAnimationUsingKeyFrames());
- OS_NATIVE_EXIT(env, that, gcnew_1DoubleAnimationUsingKeyFrames_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1DoubleCollection
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DoubleCollection)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DoubleCollection)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1DoubleCollection_FUNC);
- rc = (jint)TO_HANDLE(gcnew DoubleCollection(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1DoubleCollection_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1DrawingVisual
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DrawingVisual)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1DrawingVisual)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1DrawingVisual_FUNC);
- rc = (jint)TO_HANDLE(gcnew DrawingVisual());
- OS_NATIVE_EXIT(env, that, gcnew_1DrawingVisual_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Duration
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Duration)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Duration)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Duration_FUNC);
- rc = (jint)TO_HANDLE(gcnew Duration((TimeSpan)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1Duration_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Expander
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Expander)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Expander)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Expander_FUNC);
- rc = (jint)TO_HANDLE(gcnew Expander());
- OS_NATIVE_EXIT(env, that, gcnew_1Expander_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1FileInfo
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FileInfo)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FileInfo)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1FileInfo_FUNC);
- rc = (jint)TO_HANDLE(gcnew System::IO::FileInfo((String^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1FileInfo_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1FontFamily
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FontFamily)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FontFamily)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1FontFamily_FUNC);
- rc = (jint)TO_HANDLE(gcnew FontFamily((String^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1FontFamily_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1FormatConvertedBitmap
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FormatConvertedBitmap)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jdouble arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FormatConvertedBitmap)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jdouble arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1FormatConvertedBitmap_FUNC);
- rc = (jint)TO_HANDLE(gcnew FormatConvertedBitmap((BitmapSource^)TO_OBJECT(arg0), (PixelFormat)TO_OBJECT(arg1), (BitmapPalette^)TO_OBJECT(arg2), arg3));
- OS_NATIVE_EXIT(env, that, gcnew_1FormatConvertedBitmap_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1FormattedText
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FormattedText)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jdouble arg4, jint arg5);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FormattedText)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3, jdouble arg4, jint arg5)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1FormattedText_FUNC);
- rc = (jint)TO_HANDLE(gcnew FormattedText((String^)TO_OBJECT(arg0), (CultureInfo^)TO_OBJECT(arg1), (FlowDirection)arg2, (Typeface^)TO_OBJECT(arg3), arg4, (Brush^)TO_OBJECT(arg5)));
- OS_NATIVE_EXIT(env, that, gcnew_1FormattedText_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1FrameworkElementFactory__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FrameworkElementFactory__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FrameworkElementFactory__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1FrameworkElementFactory__I_FUNC);
- rc = (jint)TO_HANDLE(gcnew FrameworkElementFactory((Type^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1FrameworkElementFactory__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1FrameworkElementFactory__II
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FrameworkElementFactory__II)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1FrameworkElementFactory__II)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1FrameworkElementFactory__II_FUNC);
- rc = (jint)TO_HANDLE(gcnew FrameworkElementFactory((Type^)TO_OBJECT(arg0), (String^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, gcnew_1FrameworkElementFactory__II_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1GeometryGroup
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GeometryGroup)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GeometryGroup)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1GeometryGroup_FUNC);
- rc = (jint)TO_HANDLE(gcnew GeometryGroup());
- OS_NATIVE_EXIT(env, that, gcnew_1GeometryGroup_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Grid
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Grid)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Grid)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Grid_FUNC);
- rc = (jint)TO_HANDLE(gcnew Grid());
- OS_NATIVE_EXIT(env, that, gcnew_1Grid_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1GridLength
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridLength)(JNIEnv *env, jclass that, jdouble arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridLength)
- (JNIEnv *env, jclass that, jdouble arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1GridLength_FUNC);
- rc = (jint)TO_HANDLE(gcnew GridLength(arg0, (GridUnitType)arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1GridLength_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1GridView
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridView)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridView)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1GridView_FUNC);
- rc = (jint)TO_HANDLE(gcnew GridView());
- OS_NATIVE_EXIT(env, that, gcnew_1GridView_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1GridViewColumn
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridViewColumn)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridViewColumn)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1GridViewColumn_FUNC);
- rc = (jint)TO_HANDLE(gcnew GridViewColumn());
- OS_NATIVE_EXIT(env, that, gcnew_1GridViewColumn_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1GridViewColumnCollection
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridViewColumnCollection)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridViewColumnCollection)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1GridViewColumnCollection_FUNC);
- rc = (jint)TO_HANDLE(gcnew GridViewColumnCollection());
- OS_NATIVE_EXIT(env, that, gcnew_1GridViewColumnCollection_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1GridViewColumnHeader
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridViewColumnHeader)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GridViewColumnHeader)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1GridViewColumnHeader_FUNC);
- rc = (jint)TO_HANDLE(gcnew GridViewColumnHeader());
- OS_NATIVE_EXIT(env, that, gcnew_1GridViewColumnHeader_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1GroupBox
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GroupBox)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1GroupBox)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1GroupBox_FUNC);
- rc = (jint)TO_HANDLE(gcnew GroupBox());
- OS_NATIVE_EXIT(env, that, gcnew_1GroupBox_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Hyperlink
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Hyperlink)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Hyperlink)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Hyperlink_FUNC);
- rc = (jint)TO_HANDLE(gcnew Hyperlink((Inline^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1Hyperlink_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Image
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Image)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Image)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Image_FUNC);
- rc = (jint)TO_HANDLE(gcnew Image());
- OS_NATIVE_EXIT(env, that, gcnew_1Image_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ImageBrush
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ImageBrush)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ImageBrush)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ImageBrush_FUNC);
- rc = (jint)TO_HANDLE(gcnew ImageBrush((ImageSource^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1ImageBrush_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Int32
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Int32)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Int32)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Int32_FUNC);
- rc = (jint)TO_HANDLE(gcnew Int32(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1Int32_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Int32Rect
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Int32Rect)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Int32Rect)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Int32Rect_FUNC);
- rc = (jint)TO_HANDLE(gcnew Int32Rect(arg0, arg1, arg2, arg3));
- OS_NATIVE_EXIT(env, that, gcnew_1Int32Rect_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1IntPtr
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1IntPtr)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1IntPtr)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1IntPtr_FUNC);
- rc = (jint)TO_HANDLE(gcnew IntPtr(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1IntPtr_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Label
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Label)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Label)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Label_FUNC);
- rc = (jint)TO_HANDLE(gcnew Label());
- OS_NATIVE_EXIT(env, that, gcnew_1Label_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1LineSegment
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1LineSegment)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1LineSegment)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1LineSegment_FUNC);
- rc = (jint)TO_HANDLE(gcnew LineSegment((Point)TO_OBJECT(arg0), arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1LineSegment_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1LinearGradientBrush__IID
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1LinearGradientBrush__IID)(JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1LinearGradientBrush__IID)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1LinearGradientBrush__IID_FUNC);
- rc = (jint)TO_HANDLE(gcnew LinearGradientBrush((Color)TO_OBJECT(arg0), (Color)TO_OBJECT(arg1), arg2));
- OS_NATIVE_EXIT(env, that, gcnew_1LinearGradientBrush__IID_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1LinearGradientBrush__IIII
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1LinearGradientBrush__IIII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1LinearGradientBrush__IIII)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1LinearGradientBrush__IIII_FUNC);
- rc = (jint)TO_HANDLE(gcnew LinearGradientBrush((Color)TO_OBJECT(arg0), (Color)TO_OBJECT(arg1), (Point)TO_OBJECT(arg2), (Point)TO_OBJECT(arg3)));
- OS_NATIVE_EXIT(env, that, gcnew_1LinearGradientBrush__IIII_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ListBox
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ListBox)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ListBox)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ListBox_FUNC);
- rc = (jint)TO_HANDLE(gcnew ListBox());
- OS_NATIVE_EXIT(env, that, gcnew_1ListBox_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ListBoxItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ListBoxItem)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ListBoxItem)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ListBoxItem_FUNC);
- rc = (jint)TO_HANDLE(gcnew ListBoxItem());
- OS_NATIVE_EXIT(env, that, gcnew_1ListBoxItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ListView
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ListView)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ListView)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ListView_FUNC);
- rc = (jint)TO_HANDLE(gcnew ListView());
- OS_NATIVE_EXIT(env, that, gcnew_1ListView_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ListViewItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ListViewItem)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ListViewItem)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ListViewItem_FUNC);
- rc = (jint)TO_HANDLE(gcnew ListViewItem());
- OS_NATIVE_EXIT(env, that, gcnew_1ListViewItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Matrix
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Matrix)(JNIEnv *env, jclass that, jdouble arg0, jdouble arg1, jdouble arg2, jdouble arg3, jdouble arg4, jdouble arg5);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Matrix)
- (JNIEnv *env, jclass that, jdouble arg0, jdouble arg1, jdouble arg2, jdouble arg3, jdouble arg4, jdouble arg5)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Matrix_FUNC);
- rc = (jint)TO_HANDLE(gcnew Matrix(arg0, arg1, arg2, arg3, arg4, arg5));
- OS_NATIVE_EXIT(env, that, gcnew_1Matrix_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1MatrixTransform
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1MatrixTransform)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1MatrixTransform)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1MatrixTransform_FUNC);
- rc = (jint)TO_HANDLE(gcnew MatrixTransform((Matrix)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1MatrixTransform_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Menu
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Menu)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Menu)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Menu_FUNC);
- rc = (jint)TO_HANDLE(gcnew Menu());
- OS_NATIVE_EXIT(env, that, gcnew_1Menu_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1MenuItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1MenuItem)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1MenuItem)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1MenuItem_FUNC);
- rc = (jint)TO_HANDLE(gcnew MenuItem());
- OS_NATIVE_EXIT(env, that, gcnew_1MenuItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1OpenFileDialog
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1OpenFileDialog)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1OpenFileDialog)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1OpenFileDialog_FUNC);
- rc = (jint)TO_HANDLE(gcnew OpenFileDialog());
- OS_NATIVE_EXIT(env, that, gcnew_1OpenFileDialog_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1PasswordBox
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PasswordBox)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PasswordBox)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1PasswordBox_FUNC);
- rc = (jint)TO_HANDLE(gcnew PasswordBox());
- OS_NATIVE_EXIT(env, that, gcnew_1PasswordBox_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Path
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Path)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Path)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Path_FUNC);
- rc = (jint)TO_HANDLE(gcnew Path());
- OS_NATIVE_EXIT(env, that, gcnew_1Path_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1PathFigure
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PathFigure)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PathFigure)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1PathFigure_FUNC);
- rc = (jint)TO_HANDLE(gcnew PathFigure());
- OS_NATIVE_EXIT(env, that, gcnew_1PathFigure_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1PathGeometry
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PathGeometry)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PathGeometry)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1PathGeometry_FUNC);
- rc = (jint)TO_HANDLE(gcnew PathGeometry());
- OS_NATIVE_EXIT(env, that, gcnew_1PathGeometry_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Pen
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Pen)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Pen)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Pen_FUNC);
- rc = (jint)TO_HANDLE(gcnew Pen());
- OS_NATIVE_EXIT(env, that, gcnew_1Pen_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Point
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Point)(JNIEnv *env, jclass that, jdouble arg0, jdouble arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Point)
- (JNIEnv *env, jclass that, jdouble arg0, jdouble arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Point_FUNC);
- rc = (jint)TO_HANDLE(gcnew Point(arg0, arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1Point_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1PointCollection
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PointCollection)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PointCollection)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1PointCollection_FUNC);
- rc = (jint)TO_HANDLE(gcnew PointCollection(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1PointCollection_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1PolyLineSegment
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PolyLineSegment)(JNIEnv *env, jclass that, jint arg0, jboolean arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1PolyLineSegment)
- (JNIEnv *env, jclass that, jint arg0, jboolean arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1PolyLineSegment_FUNC);
- rc = (jint)TO_HANDLE(gcnew PolyLineSegment((PointCollection^)TO_OBJECT(arg0), arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1PolyLineSegment_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Popup
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Popup)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Popup)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Popup_FUNC);
- rc = (jint)TO_HANDLE(gcnew Popup());
- OS_NATIVE_EXIT(env, that, gcnew_1Popup_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ProgressBar
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ProgressBar)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ProgressBar)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ProgressBar_FUNC);
- rc = (jint)TO_HANDLE(gcnew ProgressBar());
- OS_NATIVE_EXIT(env, that, gcnew_1ProgressBar_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1QuadraticBezierSegment
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1QuadraticBezierSegment)(JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1QuadraticBezierSegment)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jboolean arg2)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1QuadraticBezierSegment_FUNC);
- rc = (jint)TO_HANDLE(gcnew QuadraticBezierSegment((Point)TO_OBJECT(arg0), (Point)TO_OBJECT(arg1), arg2));
- OS_NATIVE_EXIT(env, that, gcnew_1QuadraticBezierSegment_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1RadioButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RadioButton)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RadioButton)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1RadioButton_FUNC);
- rc = (jint)TO_HANDLE(gcnew RadioButton());
- OS_NATIVE_EXIT(env, that, gcnew_1RadioButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Rect
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Rect)(JNIEnv *env, jclass that, jdouble arg0, jdouble arg1, jdouble arg2, jdouble arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Rect)
- (JNIEnv *env, jclass that, jdouble arg0, jdouble arg1, jdouble arg2, jdouble arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Rect_FUNC);
- rc = (jint)TO_HANDLE(gcnew Rect(arg0, arg1, arg2, arg3));
- OS_NATIVE_EXIT(env, that, gcnew_1Rect_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Rectangle
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Rectangle)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Rectangle)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Rectangle_FUNC);
- rc = (jint)TO_HANDLE(gcnew System::Windows::Shapes::Rectangle());
- OS_NATIVE_EXIT(env, that, gcnew_1Rectangle_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1RectangleGeometry
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RectangleGeometry)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RectangleGeometry)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1RectangleGeometry_FUNC);
- rc = (jint)TO_HANDLE(gcnew RectangleGeometry((Rect)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1RectangleGeometry_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1RenderTargetBitmap
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RenderTargetBitmap)(JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2, jdouble arg3, jint arg4);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RenderTargetBitmap)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2, jdouble arg3, jint arg4)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1RenderTargetBitmap_FUNC);
- rc = (jint)TO_HANDLE(gcnew RenderTargetBitmap(arg0, arg1, arg2, arg3, (PixelFormat)TO_OBJECT(arg4)));
- OS_NATIVE_EXIT(env, that, gcnew_1RenderTargetBitmap_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1RepeatButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RepeatButton)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RepeatButton)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1RepeatButton_FUNC);
- rc = (jint)TO_HANDLE(gcnew RepeatButton());
- OS_NATIVE_EXIT(env, that, gcnew_1RepeatButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1RowDefinition
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RowDefinition)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1RowDefinition)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1RowDefinition_FUNC);
- rc = (jint)TO_HANDLE(gcnew RowDefinition());
- OS_NATIVE_EXIT(env, that, gcnew_1RowDefinition_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Run
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Run)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Run)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Run_FUNC);
- rc = (jint)TO_HANDLE(gcnew Run());
- OS_NATIVE_EXIT(env, that, gcnew_1Run_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1SaveFileDialog
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1SaveFileDialog)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1SaveFileDialog)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1SaveFileDialog_FUNC);
- rc = (jint)TO_HANDLE(gcnew SaveFileDialog());
- OS_NATIVE_EXIT(env, that, gcnew_1SaveFileDialog_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ScaleTransform
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ScaleTransform)(JNIEnv *env, jclass that, jdouble arg0, jdouble arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ScaleTransform)
- (JNIEnv *env, jclass that, jdouble arg0, jdouble arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ScaleTransform_FUNC);
- rc = (jint)TO_HANDLE(gcnew ScaleTransform(arg0, arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1ScaleTransform_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ScrollBar
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ScrollBar)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ScrollBar)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ScrollBar_FUNC);
- rc = (jint)TO_HANDLE(gcnew ScrollBar());
- OS_NATIVE_EXIT(env, that, gcnew_1ScrollBar_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Separator
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Separator)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Separator)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Separator_FUNC);
- rc = (jint)TO_HANDLE(gcnew Separator());
- OS_NATIVE_EXIT(env, that, gcnew_1Separator_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Setter
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Setter)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Setter)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Setter_FUNC);
- rc = (jint)TO_HANDLE(gcnew Setter((DependencyProperty^)TO_OBJECT(arg0), (Visibility)arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1Setter_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Size__
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Size__)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Size__)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Size___FUNC);
- rc = (jint)TO_HANDLE(gcnew Size());
- OS_NATIVE_EXIT(env, that, gcnew_1Size___FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Size__DD
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Size__DD)(JNIEnv *env, jclass that, jdouble arg0, jdouble arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Size__DD)
- (JNIEnv *env, jclass that, jdouble arg0, jdouble arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Size__DD_FUNC);
- rc = (jint)TO_HANDLE(gcnew Size(arg0, arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1Size__DD_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Slider
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Slider)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Slider)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Slider_FUNC);
- rc = (jint)TO_HANDLE(gcnew Slider());
- OS_NATIVE_EXIT(env, that, gcnew_1Slider_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1SolidColorBrush
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1SolidColorBrush)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1SolidColorBrush)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1SolidColorBrush_FUNC);
- rc = (jint)TO_HANDLE(gcnew SolidColorBrush((Color)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1SolidColorBrush_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1StackPanel
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1StackPanel)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1StackPanel)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1StackPanel_FUNC);
- rc = (jint)TO_HANDLE(gcnew StackPanel());
- OS_NATIVE_EXIT(env, that, gcnew_1StackPanel_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1StreamGeometry
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1StreamGeometry)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1StreamGeometry)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1StreamGeometry_FUNC);
- rc = (jint)TO_HANDLE(gcnew StreamGeometry());
- OS_NATIVE_EXIT(env, that, gcnew_1StreamGeometry_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1String
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1String)(JNIEnv *env, jclass that, jcharArray arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1String)
- (JNIEnv *env, jclass that, jcharArray arg0)
-{
- jchar *lparg0=NULL;
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1String_FUNC);
- if (arg0) if ((lparg0 = env->GetCharArrayElements(arg0, NULL)) == NULL) goto fail;
- rc = (jint)TO_HANDLE(gcnew String((const wchar_t *)lparg0));
-fail:
- if (arg0 && lparg0) env->ReleaseCharArrayElements(arg0, lparg0, 0);
- OS_NATIVE_EXIT(env, that, gcnew_1String_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Style
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Style)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Style)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Style_FUNC);
- rc = (jint)TO_HANDLE(gcnew Style());
- OS_NATIVE_EXIT(env, that, gcnew_1Style_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TabControl
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TabControl)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TabControl)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TabControl_FUNC);
- rc = (jint)TO_HANDLE(gcnew TabControl());
- OS_NATIVE_EXIT(env, that, gcnew_1TabControl_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TabItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TabItem)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TabItem)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TabItem_FUNC);
- rc = (jint)TO_HANDLE(gcnew TabItem());
- OS_NATIVE_EXIT(env, that, gcnew_1TabItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TextBlock
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextBlock)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextBlock)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TextBlock_FUNC);
- rc = (jint)TO_HANDLE(gcnew TextBlock());
- OS_NATIVE_EXIT(env, that, gcnew_1TextBlock_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TextBox
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextBox)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextBox)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TextBox_FUNC);
- rc = (jint)TO_HANDLE(gcnew TextBox());
- OS_NATIVE_EXIT(env, that, gcnew_1TextBox_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TextCharacters
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextCharacters)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextCharacters)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TextCharacters_FUNC);
- rc = (jint)TO_HANDLE(gcnew TextCharacters((String^)TO_OBJECT(arg0), arg1, arg2, (TextRunProperties^)TO_OBJECT(arg3)));
- OS_NATIVE_EXIT(env, that, gcnew_1TextCharacters_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TextDecorationCollection
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextDecorationCollection)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextDecorationCollection)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TextDecorationCollection_FUNC);
- rc = (jint)TO_HANDLE(gcnew TextDecorationCollection(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1TextDecorationCollection_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TextEndOfLine
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextEndOfLine)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextEndOfLine)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TextEndOfLine_FUNC);
- rc = (jint)TO_HANDLE(gcnew TextEndOfLine(arg0, (TextRunProperties^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, gcnew_1TextEndOfLine_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TextEndOfParagraph
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextEndOfParagraph)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextEndOfParagraph)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TextEndOfParagraph_FUNC);
- rc = (jint)TO_HANDLE(gcnew TextEndOfParagraph(arg0, (TextRunProperties^)TO_OBJECT(arg1)));
- OS_NATIVE_EXIT(env, that, gcnew_1TextEndOfParagraph_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TextTabProperties
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextTabProperties)(JNIEnv *env, jclass that, jint arg0, jdouble arg1, jint arg2, jint arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextTabProperties)
- (JNIEnv *env, jclass that, jint arg0, jdouble arg1, jint arg2, jint arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TextTabProperties_FUNC);
- rc = (jint)TO_HANDLE(gcnew TextTabProperties((TextTabAlignment)arg0, arg1, arg2, arg3));
- OS_NATIVE_EXIT(env, that, gcnew_1TextTabProperties_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TextTabPropertiesCollection
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextTabPropertiesCollection)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TextTabPropertiesCollection)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TextTabPropertiesCollection_FUNC);
- rc = (jint)TO_HANDLE(gcnew System::Collections::Generic::List<TextTabProperties^>(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1TextTabPropertiesCollection_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Thickness
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Thickness)(JNIEnv *env, jclass that, jdouble arg0, jdouble arg1, jdouble arg2, jdouble arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Thickness)
- (JNIEnv *env, jclass that, jdouble arg0, jdouble arg1, jdouble arg2, jdouble arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Thickness_FUNC);
- rc = (jint)TO_HANDLE(gcnew Thickness(arg0, arg1, arg2, arg3));
- OS_NATIVE_EXIT(env, that, gcnew_1Thickness_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TimeSpan
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TimeSpan)(JNIEnv *env, jclass that, jlong arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TimeSpan)
- (JNIEnv *env, jclass that, jlong arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TimeSpan_FUNC);
- rc = (jint)TO_HANDLE(gcnew TimeSpan(arg0));
- OS_NATIVE_EXIT(env, that, gcnew_1TimeSpan_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ToggleButton
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ToggleButton)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ToggleButton)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ToggleButton_FUNC);
- rc = (jint)TO_HANDLE(gcnew ToggleButton());
- OS_NATIVE_EXIT(env, that, gcnew_1ToggleButton_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ToolBar
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ToolBar)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ToolBar)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ToolBar_FUNC);
- rc = (jint)TO_HANDLE(gcnew ToolBar());
- OS_NATIVE_EXIT(env, that, gcnew_1ToolBar_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1ToolBarTray
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ToolBarTray)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1ToolBarTray)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1ToolBarTray_FUNC);
- rc = (jint)TO_HANDLE(gcnew ToolBarTray());
- OS_NATIVE_EXIT(env, that, gcnew_1ToolBarTray_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TransformGroup
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TransformGroup)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TransformGroup)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TransformGroup_FUNC);
- rc = (jint)TO_HANDLE(gcnew TransformGroup());
- OS_NATIVE_EXIT(env, that, gcnew_1TransformGroup_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TranslateTransform
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TranslateTransform)(JNIEnv *env, jclass that, jdouble arg0, jdouble arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TranslateTransform)
- (JNIEnv *env, jclass that, jdouble arg0, jdouble arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TranslateTransform_FUNC);
- rc = (jint)TO_HANDLE(gcnew TranslateTransform(arg0, arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1TranslateTransform_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TreeView
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TreeView)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TreeView)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TreeView_FUNC);
- rc = (jint)TO_HANDLE(gcnew TreeView());
- OS_NATIVE_EXIT(env, that, gcnew_1TreeView_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1TreeViewItem
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TreeViewItem)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1TreeViewItem)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1TreeViewItem_FUNC);
- rc = (jint)TO_HANDLE(gcnew TreeViewItem());
- OS_NATIVE_EXIT(env, that, gcnew_1TreeViewItem_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Typeface
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Typeface)(JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Typeface)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jint arg2, jint arg3)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Typeface_FUNC);
- rc = (jint)TO_HANDLE(gcnew Typeface((FontFamily^)TO_OBJECT(arg0), (FontStyle)TO_OBJECT(arg1), (FontWeight)TO_OBJECT(arg2), (FontStretch)TO_OBJECT(arg3)));
- OS_NATIVE_EXIT(env, that, gcnew_1Typeface_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Uri
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Uri)(JNIEnv *env, jclass that, jint arg0, jint arg1);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Uri)
- (JNIEnv *env, jclass that, jint arg0, jint arg1)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Uri_FUNC);
- rc = (jint)TO_HANDLE(gcnew Uri((String^)TO_OBJECT(arg0), (UriKind)arg1));
- OS_NATIVE_EXIT(env, that, gcnew_1Uri_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1Window
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Window)(JNIEnv *env, jclass that);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1Window)
- (JNIEnv *env, jclass that)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1Window_FUNC);
- rc = (jint)TO_HANDLE(gcnew Window());
- OS_NATIVE_EXIT(env, that, gcnew_1Window_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1WriteableBitmap__I
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1WriteableBitmap__I)(JNIEnv *env, jclass that, jint arg0);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1WriteableBitmap__I)
- (JNIEnv *env, jclass that, jint arg0)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1WriteableBitmap__I_FUNC);
- rc = (jint)TO_HANDLE(gcnew WriteableBitmap((BitmapSource^)TO_OBJECT(arg0)));
- OS_NATIVE_EXIT(env, that, gcnew_1WriteableBitmap__I_FUNC);
- return rc;
-}
-#endif
-
-#ifndef NO_gcnew_1WriteableBitmap__IIDDII
-extern "C" JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1WriteableBitmap__IIDDII)(JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2, jdouble arg3, jint arg4, jint arg5);
-JNIEXPORT jint JNICALL OS_NATIVE(gcnew_1WriteableBitmap__IIDDII)
- (JNIEnv *env, jclass that, jint arg0, jint arg1, jdouble arg2, jdouble arg3, jint arg4, jint arg5)
-{
- jint rc = 0;
- OS_NATIVE_ENTER(env, that, gcnew_1WriteableBitmap__IIDDII_FUNC);
- rc = (jint)TO_HANDLE(gcnew WriteableBitmap(arg0, arg1, arg2, arg3, (PixelFormat)TO_OBJECT(arg4), (BitmapPalette^)TO_OBJECT(arg5)));
- OS_NATIVE_EXIT(env, that, gcnew_1WriteableBitmap__IIDDII_FUNC);
- return rc;
-}
-#endif
-
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/Platform.java b/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/Platform.java
deleted file mode 100644
index af0286f6b3..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/Platform.java
+++ /dev/null
@@ -1,17 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.internal;
-
-public class Platform {
-
-public static final String PLATFORM = "wpf";
-
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/COM.java b/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/COM.java
deleted file mode 100644
index 44ad5abe92..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/COM.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.internal.wpf;
-
-
-import org.eclipse.swt.internal.*;
-
-public class COM extends Platform {
- static {
- Library.loadLibrary ("swt-com"); //$NON-NLS-1$
- }
-
-public static final native int OleInitialize(int reserved);
-public static final native void OleUninitialize();
-
-} \ No newline at end of file
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/ICONINFO.java b/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/ICONINFO.java
deleted file mode 100644
index 28fc59980b..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/ICONINFO.java
+++ /dev/null
@@ -1,20 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.internal.wpf;
-
-public class ICONINFO {
- public boolean fIcon;
- public int xHotspot;
- public int yHotspot;
- public int hbmMask;
- public int hbmColor;
- public static final int sizeof = 20;
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/OS.java
deleted file mode 100644
index c5706c381b..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/OS.java
+++ /dev/null
@@ -1,1377 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.internal.wpf;
-
-
-import org.eclipse.swt.internal.*;
-
-public class OS extends C {
-
- /** Constants */
- public static final int Key_LeftAlt = 120;
- public static final int Key_RightAlt = 121;
- public static final int Key_LeftCtrl = 118;
- public static final int Key_RightCtrl = 119;
- public static final int Key_LeftShift = 116;
- public static final int Key_RightShift = 117;
- public static final int Key_Left = 23;
- public static final int Key_Up = 24;
- public static final int Key_Right = 25;
- public static final int Key_Down = 26;
- public static final int Key_PageUp = 19;
- public static final int Key_PageDown = 20;
- public static final int Key_End = 21;
- public static final int Key_Home = 22;
- public static final int Key_Insert = 31;
- public static final int Key_ImeProcessed = 155;
- public static final int Key_F1 = 90;
- public static final int Key_F2 = 91;
- public static final int Key_F3 = 92;
- public static final int Key_F4 = 93;
- public static final int Key_F5 = 94;
- public static final int Key_F6 = 95;
- public static final int Key_F7 = 96;
- public static final int Key_F8 = 97;
- public static final int Key_F9 = 98;
- public static final int Key_F10 = 99;
- public static final int Key_F11 = 100;
- public static final int Key_F12 = 101;
- public static final int Key_F13 = 102;
- public static final int Key_F14 = 103;
- public static final int Key_F15 = 104;
- public static final int Key_Back = 2;
- public static final int Key_Return = 6;
- public static final int Key_Delete = 32;
- public static final int Key_Escape = 13;
- public static final int Key_Tab = 3;
- public static final int Key_NumPad0 = 74;
- public static final int Key_NumPad1 = 75;
- public static final int Key_NumPad2 = 76;
- public static final int Key_NumPad3 = 77;
- public static final int Key_NumPad4 = 78;
- public static final int Key_NumPad5 = 79;
- public static final int Key_NumPad6 = 80;
- public static final int Key_NumPad7 = 81;
- public static final int Key_NumPad8 = 82;
- public static final int Key_NumPad9 = 83;
- public static final int Key_Multiply = 84;
- public static final int Key_Add = 85;
- public static final int Key_Separator = 86;
- public static final int Key_Subtract = 87;
- public static final int Key_System = 156;
- public static final int Key_Decimal = 88;
- public static final int Key_Divide = 89;
- public static final int Key_CapsLock = 8;
- public static final int Key_PrintScreen = 30;
- public static final int Key_Pause = 7;
- public static final int Key_Cancel = 1;
- public static final int Key_NumLock = 114;
- public static final int Key_Scroll = 115;
- public static final int Key_D0 = 34;
- public static final int Key_D1 = 35;
- public static final int Key_D2 = 36;
- public static final int Key_D3 = 37;
- public static final int Key_D4 = 38;
- public static final int Key_D5 = 39;
- public static final int Key_D6 = 40;
- public static final int Key_D7 = 41;
- public static final int Key_D8 = 42;
- public static final int Key_D9 = 43;
- public static final int Key_A = 44;
- public static final int Key_B = 45;
- public static final int Key_C = 46;
- public static final int Key_D = 47;
- public static final int Key_E = 48;
- public static final int Key_F = 49;
- public static final int Key_G = 50;
- public static final int Key_H = 51;
- public static final int Key_I = 52;
- public static final int Key_J = 53;
- public static final int Key_K = 54;
- public static final int Key_L = 55;
- public static final int Key_M = 56;
- public static final int Key_N = 57;
- public static final int Key_O = 58;
- public static final int Key_P = 59;
- public static final int Key_Q = 60;
- public static final int Key_R = 61;
- public static final int Key_S = 62;
- public static final int Key_T = 63;
- public static final int Key_U = 64;
- public static final int Key_V = 65;
- public static final int Key_W = 66;
- public static final int Key_X = 67;
- public static final int Key_Y = 68;
- public static final int Key_Z = 69;
- public static final int Key_OemTilde = 146;
- public static final int Key_Oem2 = 145;
- public static final int Key_Oem4 = 149;
- public static final int Key_Oem6 = 151;
- public static final int Key_Oem7 = 152;
- public static final int Key_OemPipe = 150;
- public static final int Key_OemMinus = 143;
- public static final int Key_OemPlus = 141;
- public static final int Key_OemSemicolon = 140;
- public static final int Key_OemComma = 142;
- public static final int Key_OemPeriod = 144;
-
- public static final byte Visibility_Visible = 0;
- public static final byte Visibility_Hidden = 1;
- public static final byte Visibility_Collapsed = 2;
-
- public static final int GridUnitType_Auto = 0;
- public static final int GridUnitType_Pixel = 1;
- public static final int GridUnitType_Star = 2;
-
- public static final int Orientation_Horizontal = 0;
- public static final int Orientation_Vertical = 1;
-
- public static final int OverflowMode_Never = 2;
-
- public static final int ScrollEventType_EndScroll = 0;
- public static final int ScrollEventType_First = 1;
- public static final int ScrollEventType_LargeDecrement = 2;
- public static final int ScrollEventType_LargeIncrement = 3;
- public static final int ScrollEventType_Last = 4;
- public static final int ScrollEventType_SmallDecrement = 5;
- public static final int ScrollEventType_SmallIncrement = 6;
- public static final int ScrollEventType_ThumbPosition = 7;
- public static final int ScrollEventType_ThumbTrack = 8;
-
- public static final int ShutdownMode_OnExplicitShutdown = 2;
-
- public static final int HorizontalAlignment_Left = 0;
- public static final int HorizontalAlignment_Center = 1;
- public static final int HorizontalAlignment_Right = 2;
- public static final int HorizontalAlignment_Stretch = 3;
-
- public static final int VerticalAlignment_Top = 0;
- public static final int VerticalAlignment_Center = 1;
- public static final int VerticalAlignment_Bottom = 2;
- public static final int VerticalAlignment_Stretch = 3;
-
- public static final int UriKind_RelativeOrAbsolute = 0;
- public static final int UriKind_Absolute = 1;
- public static final int UriKind_Relative = 2;
-
- public static final int Stretch_None = 0;
- public static final int Stretch_Uniform = 2;
-
- public static final int PenLineCap_Flat = 0;
- public static final int PenLineCap_Round = 1;
- public static final int PenLineCap_Square = 2;
-
- public static final int PenLineJoin_Miter = 0;
- public static final int PenLineJoin_Bevel = 1;
- public static final int PenLineJoin_Round = 2;
-
- public static final int SweepDirection_Clockwise = 0;
- public static final int SweepDirection_CounterClockwise = 1;
-
- public static final int FillRule_EvenOdd = 0;
- public static final int FillRule_Nonzero = 1;
-
- public static final int BitmapScalingMode_Unspecified = 0;
- public static final int BitmapScalingMode_LowQuality = 1;
- public static final int BitmapScalingMode_HighQuality = 2;
-
- public static final int EdgeMode_Unspecified = 0;
- public static final int EdgeMode_Aliased = 1;
-
- public static final int FlowDirection_LeftToRight = 0;
- public static final int FlowDirection_RightToLeft = 1;
-
- public static final int TileMode_Tile = 4;
-
- public static final int AlignmentX_Left = 0;
- public static final int AlignmentX_Center = 1;
- public static final int AlignmentX_Right = 2;
- public static final int AlignmentY_Top = 0;
- public static final int AlignmentY_Center = 1;
- public static final int Alignmenty_Bottom = 2;
-
- public static final int BrushMappingMode_Absolute = 0;
- public static final int BrushMappingMode_RelativeToBoundingBox = 1;
-
- public static final int GradientSpreadMethod_Pad = 0;
- public static final int GradientSpreadMethod_Reflect = 1;
- public static final int GradientSpreadMethod_Repeat = 2;
-
- public static final int GeometryCombineMode_Union = 0;
- public static final int GeometryCombineMode_Intersect = 1;
- public static final int GeometryCombineMode_Xor = 2;
- public static final int GeometryCombineMode_Exclude = 3;
-
- public static final int TextAlignment_Left = 0;
- public static final int TextAlignment_Right = 1;
- public static final int TextAlignment_Center = 2;
- public static final int TextAlignment_Justify = 3;
-
- public static final int BaselineAlignment_Baseline = 3;
-
- public static final int TextWrapping_WrapWithOverflow = 0;
- public static final int TextWrapping_NoWrap = 1;
- public static final int TextWrapping_Wrap = 2;
-
- public static final int IntersectionDetail_Empty = 1;
-
- public static final int TextTabAlignment_Left = 0;
-
- public static final int MouseButtonState_Released = 0;
- public static final int MouseButtonState_Pressed = 1;
-
- public static final int MouseButton_Left = 0;
- public static final int MouseButton_Middle = 1;
- public static final int MouseButton_Right = 2;
- public static final int MouseButton_XButton1 = 3;
- public static final int MouseButton_XButton2 = 4;
-
- public static final int ModifierKeys_Alt = 1;
- public static final int ModifierKeys_Control = 2;
- public static final int ModifierKeys_Shift = 4;
-
- public static final int ResizeMode_NoResize = 0;
- public static final int ResizeMode_CanMinimize = 1;
- public static final int ResizeMode_CanResize = 2;
- public static final int ResizeMode_CanResizeWithGrip = 3;
-
- public static final int WindowStyle_None = 0;
- public static final int WindowStyle_SingleBorderWindow = 1;
- public static final int WindowStyle_ThreeDBorderWindow = 2;
- public static final int WindowStyle_ToolWindow = 3;
-
- public static final int Dock_Top = 1;
- public static final int Dock_Bottom = 3;
-
- public static final int SelectionMode_Single = 0;
- public static final int SelectionMode_Multiple = 1;
- public static final int SelectionMode_Extended = 2;
-
- public static final int TickPlacement_None = 0;
- public static final int TickPlacement_TopLeft = 1;
- public static final int TickPlacement_BottomRight = 2;
- public static final int TickPlacement_Both = 3;
-
- public static final int WindowState_Normal = 0;
- public static final int WindowState_Minimized = 1;
- public static final int WindowState_Maximized = 2;
-
- public static final int BitmapCreateOptions_PreservePixelFormat = 1;
-
- public static final int MessageBoxButton_OK = 0;
- public static final int MessageBoxButton_OKCancel = 1;
- public static final int MessageBoxButton_YesNoCancel = 3;
- public static final int MessageBoxButton_YesNo = 4;
-
- public static final int MessageBoxImage_None = 0;
- public static final int MessageBoxImage_Error = 16;
- public static final int MessageBoxImage_Hand = 16;
- public static final int MessageBoxImage_Stop = 16;
- public static final int MessageBoxImage_Question = 32;
- public static final int MessageBoxImage_Exclamation = 48;
- public static final int MessageBoxImage_Warning = 48;
- public static final int MessageBoxImage_Information = 64;
- public static final int MessageBoxImage_Asterisk = 64;
-
- public static final int MessageBoxResult_None = 0;
- public static final int MessageBoxResult_OK = 1;
- public static final int MessageBoxResult_Cancel = 2;
- public static final int MessageBoxResult_Yes = 6;
- public static final int MessageBoxResult_No = 7;
-
- public static final int KeyboardNavigationMode_None = 3;
-
- public static final int PlacementMode_AbsolutePoint = 5;
- public static final int PlacementMode_MousePoint = 8;
-
- public static final int DispatcherPriority_Normal = 9;
- public static final int DispatcherPriority_Send = 10;
-
- public static final int ScrollBarVisibility_Visible = 3;
-
- /** GDI+ constants */
- public static final int PixelFormat_Format24bppRgb = 137224;
- public static final int PixelFormat_Format32bppRgb = 139273;
- public static final int PixelFormat_Format32bppArgb = 2498570;
- public static final int PixelFormat_Format16bppRgb555 = 135173;
- public static final int PixelFormat_Format16bppRgb565 = 135174;
- public static final int PixelFormat_Format16bppArgb1555 = 397319;
- public static final int DialogResult_OK = 1;
-
- public static final int OIC_BANG = 0x7F03;
- public static final int OIC_HAND = 0x7F01;
- public static final int OIC_INFORMATION = 0x7F04;
- public static final int OIC_QUES = 0x7F02;
- public static final int OIC_WINLOGO = 0x7F05;
- public static final int IMAGE_ICON = 0x1;
- public static final int LR_SHARED = 0x8000;
-
-
- /*
- * Note that these GCHandles are leaked.
- */
- public static final int FontStyles_Italic = FontStyles_Italic();
- public static final int FontStyles_Normal = FontStyles_Normal();
- public static final int FontStyles_Oblique = FontStyles_Oblique();
- public static final int FontWeights_Bold = FontWeights_Bold();
- public static final int FontWeights_Normal = FontWeights_Normal();
- public static final int FontStretches_Normal = FontStretches_Normal();
- public static final int ApplicationCommands_Cut = ApplicationCommands_Cut();
- public static final int ApplicationCommands_Paste = ApplicationCommands_Paste();
- public static final int ApplicationCommands_Redo = ApplicationCommands_Redo();
- public static final int ApplicationCommands_Undo = ApplicationCommands_Undo();
- public static final int EditingCommands_Backspace = EditingCommands_Backspace();
- public static final int EditingCommands_Delete = EditingCommands_Delete();
- public static final int EditingCommands_DeleteNextWord = EditingCommands_DeleteNextWord();
- public static final int EditingCommands_DeletePreviousWord = EditingCommands_DeletePreviousWord();
- public static final int Colors_White = Colors_White();
- public static final int Colors_Black = Colors_Black();
- public static final int Colors_Transparent = Colors_Transparent();
- public static final int SystemColors_ControlColor = SystemColors_ControlColor();
-
-
-/** Win32 Natives */
-public static final native int CreateCursor (int hInst, int xHotSpot, int yHotSpot, int nWidth, int nHeight, byte [] pvANDPlane, byte [] pvXORPlane);
-public static final native int GetModuleHandleW (char [] lpModuleName);
-public static final native int CreateIconIndirect (ICONINFO lplf);
-public static final native boolean GetIconInfo (int hIcon, ICONINFO piconinfo);
-public static final native boolean DestroyIcon (int hIcon);
-public static final native boolean DeleteObject (int hGdiObj);
-public static final native int ToUnicode(int wVirtKey, int wScanCode, byte [] lpKeyState, char [] pwszBuff, int cchBuff, int wFlags);
-public static final native boolean GetKeyboardState (byte [] lpKeyState);
-public static final native int MapVirtualKeyW (int uCode, int uMapType);
-public static final native int SetCursorPos (int x, int y);
-public static final native void GetCursorPos (POINT point);
-public static final native int LoadImage (int hinst, int lpszName, int uType, int cxDesired, int cyDesired, int fuLoad);
-
-/** Handlers */
-public static final native int gcnew_CancelEventHandler(int jniRef, String string);
-public static final native int gcnew_ContextMenuEventHandler(int jniRef, String string);
-public static final native int gcnew_RoutedPropertyChangedEventHandler(int jniRef, String string);
-public static final native int gcnew_RoutedPropertyChangedEventHandlerObject(int jniRef, String string);
-public static final native int gcnew_RoutedEventHandler(int jniRef, String string);
-public static final native int gcnew_EventHandler(int jniRef, String string);
-public static final native int gcnew_ExecutedRoutedEventHandler(int jniRef, String string);
-public static final native int gcnew_DispatcherHookEventHandler(int jniRef, String string);
-public static final native int gcnew_SelectionChangedEventHandler(int jniRef, String string);
-public static final native int gcnew_SizeChangedEventHandler(int jniRef, String string);
-public static final native int gcnew_ScrollEventHandler(int jniRef, String string);
-public static final native int gcnew_KeyEventHandler(int jniRef, String string);
-public static final native int gcnew_KeyboardFocusChangedEventHandler(int jniRef, String string);
-public static final native int gcnew_TextChangedEventHandler(int jniRef, String string);
-public static final native int gcnew_TextCompositionEventHandler(int jniRef, String string);
-public static final native int gcnew_TimerHandler(int jniRef, String string);
-public static final native int gcnew_MouseEventHandler(int jniRef, String string);
-public static final native int gcnew_MouseButtonEventHandler(int jniRef, String string);
-public static final native int gcnew_MouseWheelEventHandler(int jniRef, String string);
-public static final native int gcnew_NoArgsDelegate();
-
-/** JNI natives */
-public static final native int NewGlobalRef(Object object);
-public static final native void DeleteGlobalRef(int globalRef);
-public static final native Object JNIGetObject(int globalRef);
-
-/** Natives */
-public static final native void AccessText_Text(int sender, int value);
-public static final native char AccessText_AccessKey(int sender);
-public static final native int ApplicationCommands_Cut();
-public static final native int ApplicationCommands_Paste();
-public static final native int ApplicationCommands_Redo();
-public static final native int ApplicationCommands_Undo();
-public static final native int Application_Dispatcher(int sender);
-public static final native void Application_Run(int sender);
-public static final native void Application_Shutdown(int sender);
-public static final native void Application_ShutdownMode(int sender, int value);
-public static final native int Application_Windows(int sender);
-public static final native void ArrayList_Clear(int sender);
-public static final native int ArrayList_Count(int sender);
-public static final native int ArrayList_default(int sender, int index);
-public static final native void ArrayList_default(int sender, int index, int value);
-public static final native void ArrayList_Insert(int sender, int index, int value);
-public static final native void ArrayList_RemoveAt(int sender, int index);
-public static final native void Binding_Converter(int sender, int value);
-public static final native void Binding_ConverterParameter(int sender, int value);
-public static final native void BindingExpression_UpdateTarget(int sender);
-public static final native int Bitmap_GetHicon(int sender);
-public static final native void BitmapImage_BeginInit(int sender);
-public static final native void BitmapImage_CreateOptions(int sender, int value);
-public static final native void BitmapImage_EndInit(int sender);
-public static final native void BitmapImage_UriSource(int sender, int uri);
-public static final native int BitmapPalette_Colors(int sender);
-public static final native int BitmapSource_Clone(int sender);
-public static final native int BitmapSource_Create(int pixelWidth, int pixelHeight, double dpiX, double dpiY, int pixelFormat, int palette, byte[] buffer, int bufferSize, int stride);
-public static final native void BitmapSource_CopyPixels(int sender, int sourceRect, byte[] buffer, int bufferSize, int stride);
-public static final native int BitmapSource_Format(int sender);
-public static final native int BitmapSource_Palette(int sender);
-public static final native int BitmapSource_PixelHeight(int sender);
-public static final native int BitmapSource_PixelWidth(int sender);
-public static final native int Border_typeid();
-public static final native int Brushes_White();
-public static final native int Brushes_Black();
-public static final native int Brushes_Navy();
-public static final native int Brushes_Transparent();
-public static final native int Brushes_LightSkyBlue();
-public static final native void Brush_Opacity(int sender, double opacity);
-public static final native boolean Button_IsDefault(int sender);
-public static final native void Button_IsDefault(int sender, boolean value);
-public static final native void ButtonBase_Click(int sender, int handler);
-public static final native void CancelEventArgs_Cancel(int sender, boolean value);
-public static final native double Canvas_GetLeft(int element);
-public static final native double Canvas_GetTop(int element);
-public static final native void Canvas_SetLeft(int element, double length);
-public static final native void Canvas_SetTop(int element, double length);
-public static final native int CharacterHit_FirstCharacterIndex(int sender);
-public static final native int CharacterHit_TrailingLength(int sender);
-public static final native int CheckBox_typeid();
-public static final native int Clipboard_GetText();
-public static final native int Color_FromArgb(byte a, byte r, byte g, byte b);
-public static final native byte Color_A(int sender);
-public static final native byte Color_B(int sender);
-public static final native byte Color_G(int sender);
-public static final native byte Color_R(int sender);
-public static final native void ColorDialog_AnyColor(int sender, boolean value);
-public static final native void ColorDialog_Color(int sender, int color);
-public static final native int ColorDialog_Color(int sender);
-public static final native void ColorDialog_CustomColors(int sender, int colors);
-public static final native int ColorDialog_CustomColors(int sender);
-public static final native void ColorList_Add(int sender, int color);
-public static final native int ColorList_Count(int sender);
-public static final native int ColorList_Current(int sender);
-public static final native int ColorList_GetEnumerator(int sender);
-public static final native int Colors_White();
-public static final native int Colors_Black();
-public static final native int Colors_Red();
-public static final native int Colors_Maroon();
-public static final native int Colors_Lime();
-public static final native int Colors_Green();
-public static final native int Colors_Olive();
-public static final native int Colors_Blue();
-public static final native int Colors_Navy();
-public static final native int Colors_LightSkyBlue();
-public static final native int Colors_Magenta();
-public static final native int Colors_Purple();
-public static final native int Colors_Cyan();
-public static final native int Colors_Teal();
-public static final native int Colors_Transparent();
-public static final native int Colors_Silver();
-public static final native int Colors_DarkGray();
-public static final native int Colors_Yellow();
-public static final native void ColumnDefinition_Width(int sender, int width);
-public static final native void ColumnDefinitionCollection_Add(int sender, int column);
-public static final native boolean ComboBox_IsDropDownOpen(int sender);
-public static final native void ComboBox_IsDropDownOpen(int sender, boolean value);
-public static final native void ComboBox_IsEditable(int sender, boolean value);
-public static final native int ComboBox_SelectionBoxItem(int handle);
-public static final native void CommandManager_AddPreviewExecutedHandler(int sender, int handler);
-public static final native boolean CommonDialog_ShowDialog(int sender, int parent);
-public static final native int CompositeCollection_IndexOf(int sender, int object);
-public static final native void CompositeCollection_Insert(int sender, int index, int value);
-public static final native void CompositeCollection_Remove(int sender, int value);
-public static final native void CompositeCollection_RemoveAt(int sender, int value);
-public static final native void Console_Beep();
-public static final native int ContainerVisual_Clip(int sender);
-public static final native void ContainerVisual_Clip(int sender, int clip);
-public static final native int ContentControl_Content(int sender);
-public static final native void ContentControl_Content(int sender, int content);
-public static final native int ContentPresenter_Content(int sender);
-public static final native int ContentPresenter_typeid();
-public static final native void ContextMenu_IsOpen(int sender, boolean value);
-public static final native void ContextMenu_Placement(int sender, int mode);
-public static final native void ContextMenu_HorizontalOffset(int sender, int offset);
-public static final native void ContextMenu_VerticalOffset(int sender, int offset);
-public static final native void ContextMenu_Opened(int sender, int handler);
-public static final native void ContextMenu_Closed(int sender, int handler);
-public static final native double ContextMenuEventArgs_CursorLeft(int sender);
-public static final native double ContextMenuEventArgs_CursorTop(int sender);
-public static final native int Control_BackgroundProperty();
-public static final native int Control_ForegroundProperty();
-public static final native int Control_FontFamilyProperty();
-public static final native int Control_FontStyleProperty();
-public static final native int Control_FontWeightProperty();
-public static final native int Control_FontStretchProperty();
-public static final native int Control_FontSizeProperty();
-public static final native void Control_Background(int sender, int value);
-public static final native void Control_Foreground(int sender, int value);
-public static final native void Control_FontFamily(int sender, int value);
-public static final native void Control_FontStyle(int sender, int value);
-public static final native void Control_FontWeight(int sender, int value);
-public static final native void Control_FontStretch(int sender, int value);
-public static final native void Control_FontSize(int sender, double value);
-public static final native int Control_HorizontalContentAlignment(int sender);
-public static final native void Control_HorizontalContentAlignment(int sender, int value);
-public static final native void Control_MouseDoubleClick(int sender, int handler);
-public static final native int Control_Template(int sender);
-public static final native void Control_Template(int sender, int value);
-public static final native void Control_VerticalContentAlignment(int sender, int value);
-public static final native int CultureInfo_CurrentUICulture();
-public static final native int Cursors_AppStarting();
-public static final native int Cursors_Arrow();
-public static final native int Cursors_Hand();
-public static final native int Cursors_Wait();
-public static final native int Cursors_Cross();
-public static final native int Cursors_Help();
-public static final native int Cursors_SizeAll();
-public static final native int Cursors_SizeNS();
-public static final native int Cursors_SizeNWSE();
-public static final native int Cursors_SizeNESW();
-public static final native int Cursors_SizeWE();
-public static final native int Cursors_ScrollE();
-public static final native int Cursors_ScrollN();
-public static final native int Cursors_ScrollNE();
-public static final native int Cursors_ScrollNW();
-public static final native int Cursors_ScrollS();
-public static final native int Cursors_ScrollSE();
-public static final native int Cursors_ScrollSW();
-public static final native int Cursors_ScrollW();
-public static final native int Cursors_IBeam();
-public static final native int Cursors_UpArrow();
-public static final native int Cursors_No();
-public static final native int CursorInteropHelper_Create(int safeHandle);
-public static final native int DashStyles_Dash();
-public static final native int DashStyles_DashDot();
-public static final native int DashStyles_DashDotDot();
-public static final native int DashStyles_Dot();
-public static final native int DashStyles_Solid();
-public static final native void DependencyObject_ClearValue(int sender, int property);
-public static final native void DependencyObject_SetValue(int sender, int property, int object);
-public static final native void Dispatcher_PushFrame(int frame);
-public static final native int Dispatcher_Hooks(int sender);
-public static final native void DispatcherHooks_DispatcherInactive(int sender, int handler);
-public static final native void DispatcherHooks_OperationAborted(int sender, int handler);
-public static final native void DispatcherHooks_OperationCompleted(int sender, int handler);
-public static final native void DispatcherHooks_OperationPosted(int sender, int handler);
-public static final native void DispatcherFrame_Continue(int sender, boolean value);
-public static final native int DispatcherHookEventArgs_Operation(int sender);
-public static final native int DispatcherOperation_Priority(int sender);
-public static final native int Dispatcher_BeginInvoke(int sender, int priority, int method);
-public static final native void DispatcherTimer_Interval(int sender, int value);
-public static final native void DispatcherTimer_Start(int sender);
-public static final native void DispatcherTimer_Stop(int sender);
-public static final native void DispatcherTimer_Tag(int sender, int value);
-public static final native int DispatcherTimer_Tag(int sender);
-public static final native void DispatcherTimer_Tick(int sender, int handler);
-public static final native int DockPanel_DockProperty();
-public static final native int DockPanel_typeid();
-public static final native void DoubleCollection_Add(int sender, double value);
-public static final native int DoubleAnimationUsingKeyFrames_KeyFrames(int sender);
-public static final native int DoubleKeyFrameCollection_Add(int sender, int keyFrame);
-public static final native int DrawingColor_FromArgb(int a, int r, int g, int b);
-public static final native int DrawingColor_ToArgb(int sender);
-public static final native void DrawingContext_Close(int sender);
-public static final native void DrawingContext_DrawEllipse(int sender, int brush, int pen, int center, double radiusX, double radiusY);
-public static final native void DrawingContext_DrawImage(int sender, int imagesource, int rect);
-public static final native void DrawingContext_DrawLine(int sender, int pen, int point0, int point1);
-public static final native void DrawingContext_DrawGeometry(int sender, int brush, int pen, int geometry);
-public static final native void DrawingContext_DrawRectangle(int sender, int brush, int pen, int rect);
-public static final native void DrawingContext_DrawRoundedRectangle(int sender, int brush, int pen, int rect, double radiusX, double radiusY);
-public static final native void DrawingContext_DrawText(int sender, int formattedText, int point);
-public static final native void DrawingContext_PushTransform(int sender, int transform);
-public static final native void DrawingContext_PushClip(int sender, int clipGeometry);
-public static final native void DrawingContext_PushOpacity(int sender, double opacity);
-public static final native void DrawingContext_Pop(int sender);
-public static final native int DrawingVisual_RenderOpen(int sender);
-public static final native int DrawingVisual_typeid();
-public static final native int EditingCommands_Backspace();
-public static final native int EditingCommands_Delete();
-public static final native int EditingCommands_DeleteNextWord();
-public static final native int EditingCommands_DeletePreviousWord();
-public static final native int Environment_ExpandEnvironmentVariables(int string);
-public static final native int ExecutedRoutedEventArgs_Command(int sender);
-public static final native void ExecutedRoutedEventArgs_Handled(int sender, boolean handled);
-public static final native void Expander_Collapsed(int sender, int handler);
-public static final native void Expander_Expanded(int sender, int handler);
-public static final native boolean Expander_IsExpanded(int sender);
-public static final native void Expander_IsExpanded(int sender, boolean value);
-public static final native void FileDialog_FileName(int sender, int value);
-public static final native int FileDialog_FileNames(int sender);
-public static final native void FileDialog_Filter(int sender, int value);
-public static final native void FileDialog_InitialDirectory(int sender, int value);
-public static final native void FileDialog_Title(int sender, int value);
-public static final native int FileInfo_DirectoryName(int sender);
-public static final native int FileInfo_Name(int sender);
-public static final native int FontFamily_Source(int sender);
-public static final native int FontFamily_GetTypefaces(int sender);
-public static final native int FontStyles_Italic();
-public static final native int FontStyles_Normal();
-public static final native int FontStyles_Oblique();
-public static final native int FontWeight_FromOpenTypeWeight(int weight);
-public static final native int FontWeight_ToOpenTypeWeight(int sender);
-public static final native int FontWeights_Bold();
-public static final native int FontWeights_Normal();
-public static final native int FontStretches_Normal();
-public static final native int FontStretch_FromOpenTypeStretch(int stretch);
-public static final native int FontStretch_ToOpenTypeStretch(int sender);
-public static final native int Fonts_SystemTypefaces();
-public static final native double FormattedText_Baseline(int sender);
-public static final native int FormattedText_BuildGeometry(int sender, int origin);
-public static final native int FormattedText_BuildHighlightGeometry(int sender, int origin);
-public static final native double FormattedText_Height(int sender);
-public static final native double FormattedText_WidthIncludingTrailingWhitespace(int sender);
-public static final native int FormsCommonDialog_ShowDialog(int sender);
-public static final native int FrameworkContentElement_Parent(int sender);
-public static final native int FrameworkContentElement_Tag(int sender);
-public static final native void FrameworkContentElement_Tag(int sender, int value);
-public static final native int FrameworkContentElement_typeid();
-public static final native void FrameworkElement_BeginInit(int sender);
-public static final native void FrameworkElement_BringIntoView(int sender);
-public static final native void FrameworkElement_ContextMenu(int sender, int value);
-public static final native void FrameworkElement_ContextMenuClosing(int sender, int handler);
-public static final native void FrameworkElement_ContextMenuOpening(int sender, int handler);
-public static final native void FrameworkElement_Cursor(int sender, int cursor);
-public static final native int FrameworkElement_CursorProperty();
-public static final native int FrameworkElement_ActualHeightProperty();
-public static final native int FrameworkElement_ActualWidthProperty();
-public static final native int FrameworkElement_GetBindingExpression(int sender, int dp);
-public static final native void FrameworkElement_HorizontalAlignment(int sender, int value);
-public static final native boolean FrameworkElement_IsLoaded(int sender);
-public static final native void FrameworkElement_Loaded(int sender, int handler);
-public static final native void FrameworkElement_Margin(int sender, int value);
-public static final native int FrameworkElement_MarginProperty();
-public static final native int FrameworkElement_Name(int sender);
-public static final native int FrameworkElement_NameProperty();
-public static final native int FrameworkElement_Parent(int sender);
-public static final native int FrameworkElement_Tag(int sender);
-public static final native void FrameworkElement_Tag(int sender, int tag);
-public static final native int FrameworkElement_typeid();
-public static final native int FrameworkElement_ToolTip(int sender);
-public static final native void FrameworkElement_ToolTip(int sender, int value);
-public static final native double FrameworkElement_MinHeight(int sender);
-public static final native void FrameworkElement_MinHeight(int sender, double height);
-public static final native double FrameworkElement_MinWidth(int sender);
-public static final native void FrameworkElement_MinWidth(int sender, double width);
-public static final native double FrameworkElement_Height(int sender);
-public static final native void FrameworkElement_Height(int sender, double height);
-public static final native double FrameworkElement_Width(int sender);
-public static final native void FrameworkElement_Width(int sender, double width);
-public static final native double FrameworkElement_ActualWidth(int sender);
-public static final native double FrameworkElement_ActualHeight(int sender);
-public static final native int FrameworkElement_WidthProperty();
-public static final native int FrameworkElement_HeightProperty();
-public static final native void FrameworkElement_SizeChanged(int sender, int handler);
-public static final native void FrameworkElement_VerticalAlignment(int sender, int str);
-public static final native int FrameworkElement_VerticalAlignmentProperty();
-public static final native void FrameworkElementFactory_AppendChild(int sender, int value);
-public static final native void FrameworkElementFactory_SetBinding(int sender, int dp, int binding);
-public static final native void FrameworkElementFactory_SetValue(int sender, int dp, boolean value);
-public static final native void FrameworkElementFactory_SetValue(int sender, int dp, int value);
-public static final native void FrameworkElementFactory_SetValueDock(int sender, int dp, int value);
-public static final native void FrameworkElementFactory_SetValueStretch(int sender, int dp, int value);
-public static final native void FrameworkElementFactory_SetValueOrientation(int sender, int dp, int value);
-public static final native void FrameworkElementFactory_SetValueVerticalAlignment(int sender, int dp, int value);
-public static final native void FrameworkElementFactory_SetValueVisibility(int sender, int dp, byte value);
-public static final native int FrameworkTemplate_FindName(int sender, int name, int parent);
-public static final native void FrameworkTemplate_VisualTree(int sender, int value);
-public static final native boolean Freezable_CanFreeze(int sender);
-public static final native int Freezable_Clone(int sender);
-public static final native void Freezable_Freeze(int sender);
-public static final native void GeometryCollection_Clear(int sender);
-public static final native int GeometryCollection_Count(int sender);
-public static final native void GeometryCollection_Add(int sender, int geometry);
-public static final native void GeometryCollection_Remove(int sender, int geometry);
-public static final native int Geometry_Clone(int sender);
-public static final native int Geometry_Bounds(int sender);
-public static final native int Geometry_GetFlattenedPathGeometry(int sender);
-public static final native boolean Geometry_IsEmpty(int sender);
-public static final native boolean Geometry_FillContains(int sender, int point);
-public static final native int Geometry_FillContainsWithDetail(int sender, int geometry);
-public static final native boolean Geometry_StrokeContains(int sender, int pen, int hitPoint);
-public static final native int Geometry_Transform(int sender);
-public static final native void Geometry_Transform(int sender, int transform);
-public static final native int GeometryGroup_Children(int sender);
-public static final native int GeometryGroup_Children(int sender, int index);
-public static final native int GlyphRun_BidiLevel(int sender);
-public static final native void GradientBrush_MappingMode(int sender, int mode);
-public static final native void GradientBrush_SpreadMethod(int sender, int method);
-public static final native int Grid_ColumnDefinitions(int sender);
-public static final native int Grid_RowDefinitions(int sender);
-public static final native void Grid_SetColumn(int element, int index);
-public static final native void Grid_SetColumnSpan(int element, int value);
-public static final native void Grid_SetRow(int element, int index);
-public static final native void Grid_SetRowSpan(int element, int value);
-public static final native void GridView_ColumnHeaderContainerStyle(int sender, int style);
-public static final native int GridView_Columns(int sender);
-public static final native void GridView_AllowsColumnReorder(int sender, boolean value);
-public static final native double GridViewColumn_ActualWidth(int sender);
-public static final native int GridViewColumn_CellTemplate(int sender);
-public static final native void GridViewColumn_CellTemplate(int sender, int value);
-public static final native int GridViewColumn_Header(int sender);
-public static final native void GridViewColumn_Header(int sender, int value);
-public static final native int GridViewColumn_HeaderTemplate(int sender);
-public static final native void GridViewColumn_HeaderTemplate(int sender, int value);
-public static final native double GridViewColumn_Width(int sender);
-public static final native void GridViewColumn_Width(int sender, double value);
-public static final native int GridViewColumn_WidthProperty();
-public static final native int GridViewColumnCollection_default(int sender, int index);
-public static final native void GridViewColumnCollection_Clear(int sender);
-public static final native int GridViewColumnCollection_Count(int sender);
-public static final native int GridViewColumnCollection_IndexOf(int sender, int item);
-public static final native void GridViewColumnCollection_Insert(int sender, int index, int value);
-public static final native boolean GridViewColumnCollection_Remove(int sender, int value);
-public static final native void GridViewColumnHeader_Content(int sender, int value);
-public static final native int GridViewHeaderRowPresenter_ColumnsProperty();
-public static final native int GridViewHeaderRowPresenter_typeid();
-public static final native void GridViewRowPresenter_Content(int sender, int value);
-public static final native int GridViewRowPresenter_Content(int sender);
-public static final native int GridViewRowPresenter_typeid();
-public static final native void GridViewRowPresenterBase_Columns(int sender, int value);
-public static final native int GCHandle_Alloc(int sender);
-public static final native void GCHandle_Free(int sender);
-public static final native int HeaderedContentControl_Header(int sender);
-public static final native void HeaderedContentControl_Header(int sender, int header);
-public static final native int HeaderedItemsControl_Header(int sender);
-public static final native void HeaderedItemsControl_Header(int sender, int value);
-public static final native void Hyperlink_Click(int sender, int handler);
-public static final native int ICollection_Count(int sender);
-public static final native int IEnumerator_Current(int sender);
-public static final native boolean IEnumerator_MoveNext(int sender);
-public static final native void IList_Add(int sender, int value);
-public static final native int IList_default(int sender, int index);
-public static final native int IList_GetEnumerator(int sender);
-public static final native int IndexedGlyphRun_TextSourceCharacterIndex(int sender);
-public static final native int IndexedGlyphRun_TextSourceLength(int sender);
-public static final native int IndexedGlyphRun_GlyphRun(int sender);
-public static final native int IndexedGlyphRunCollection_GetEnumerator(int sender);
-public static final native int IndexedGlyphRunCollection_Current(int sender);
-public static final native void InlineCollection_Add(int sender, int value);
-public static final native void InlineCollection_Clear(int sender);
-public static final native int InputEventArgs_Timestamp(int sender);
-public static final native void Image_Source(int sender, int imageSource);
-public static final native int Image_SourceProperty();
-public static final native int Image_StretchProperty();
-public static final native void Image_Stretch(int sender, int stretch);
-public static final native int Image_typeid();
-public static final native int Imaging_CreateBitmapSourceFromHIcon(int hIcon, int sourceRect, int sizeOptions);
-public static final native int ImageSource_typeid();
-public static final native int IntPtr_ToInt32 (int value);
-public static final native void ItemCollection_Add(int sender, int item);
-public static final native void ItemCollection_Clear(int sender);
-public static final native int ItemCollection_Count(int sender);
-public static final native int ItemCollection_CurrentItem(int sender);
-public static final native int ItemCollection_CurrentPosition(int sender);
-public static final native int ItemCollection_GetItemAt(int sender, int index);
-public static final native int ItemCollection_IndexOf(int sender, int value);
-public static final native void ItemCollection_Insert(int sender, int index, int value);
-public static final native void ItemCollection_Remove(int sender, int item);
-public static final native void ItemCollection_RemoveAt(int sender, int index);
-public static final native boolean ItemsControl_HasItems(int sender);
-public static final native int ItemsControl_Items(int sender);
-public static final native void ItemsControl_ItemsSource(int sender, int value);
-public static final native int ItemsPresenter_typeid();
-public static final native int KeyInterop_VirtualKeyFromKey(int key);
-public static final native int Keyboard_FocusedElement();
-public static final native int Keyboard_Modifiers();
-public static final native void KeyboardNavigation_SetTabNavigation(int element, int mode);
-public static final native int KeyboardDevice_Modifiers(int sender);
-public static final native int KeyboardEventArgs_KeyboardDevice(int sender);
-public static final native boolean KeyEventArgs_IsDown(int sender);
-public static final native boolean KeyEventArgs_IsRepeat(int sender);
-public static final native boolean KeyEventArgs_IsToggled(int sender);
-public static final native int KeyEventArgs_Key(int sender);
-public static final native int KeyEventArgs_SystemKey(int sender);
-public static final native int KeyTime_Uniform();
-public static final native boolean Matrix_IsIdentity(int sender);
-public static final native void Matrix_Invert(int sender);
-public static final native double Matrix_M11(int sender);
-public static final native double Matrix_M12(int sender);
-public static final native double Matrix_M21(int sender);
-public static final native double Matrix_M22(int sender);
-public static final native double Matrix_OffsetX(int sender);
-public static final native double Matrix_OffsetY(int sender);
-public static final native void Matrix_M11(int sender, double value);
-public static final native void Matrix_M12(int sender, double value);
-public static final native void Matrix_M21(int sender, double value);
-public static final native void Matrix_M22(int sender, double value);
-public static final native void Matrix_OffsetX(int sender, double value);
-public static final native void Matrix_OffsetY(int sender, double value);
-public static final native int Matrix_Multiply(int m1, int m2);
-public static final native void Matrix_RotatePrepend(int sender, double angle);
-public static final native void Matrix_ScalePrepend(int sender, double scaleX, double scaleY);
-public static final native void Matrix_TranslatePrepend(int sender, double tx, double ty);
-public static final native int Matrix_Transform(int sender, int point);
-public static final native int MessageBox_Show (int messageBoxText, int caption, int button, int icon, int defaultResult);
-public static final native int Mouse_DirectlyOver();
-public static final native int Mouse_GetPosition(int relativeTo);
-public static final native boolean Mouse_SetCursor(int cursor);
-public static final native int Mouse_LeftButton();
-public static final native int Mouse_RightButton();
-public static final native int Mouse_MiddleButton();
-public static final native int Mouse_XButton1();
-public static final native int Mouse_XButton2();
-public static final native int MouseButtonEventArgs_ButtonState(int sender);
-public static final native int MouseButtonEventArgs_ClickCount(int sender);
-public static final native int MouseButtonEventArgs_ChangedButton(int sender);
-public static final native int MouseEventArgs_GetPosition(int sender, int relativeTo);
-public static final native int MouseEventArgs_LeftButton(int sender);
-public static final native int MouseEventArgs_MiddleButton(int sender);
-public static final native int MouseEventArgs_RightButton(int sender);
-public static final native int MouseEventArgs_XButton1(int sender);
-public static final native int MouseEventArgs_XButton2(int sender);
-public static final native int MouseWheelEventArgs_Delta(int sender);
-public static final native boolean ListBoxItem_IsSelected(int sender);
-public static final native void ListBoxItem_IsSelected(int sender, boolean value);
-public static final native void ListBox_ScrollIntoView(int sender, int value);
-public static final native void ListBox_SelectAll(int sender);
-public static final native int ListBox_SelectedItems(int sender);
-public static final native void ListBox_SelectionMode(int sender, int value);
-public static final native void ListBox_UnselectAll(int sender);
-public static final native void ListView_View(int sender, int value);
-public static final native void Menu_IsMainMenu(int sender, boolean value);
-public static final native void MenuItem_Click(int sender, int handler);
-public static final native void MenuItem_Icon(int sender, int value);
-public static final native void MenuItem_InputGestureText(int sender, int value);
-public static final native void MenuItem_IsCheckable(int sender, boolean value);
-public static final native boolean MenuItem_IsChecked(int sender);
-public static final native void MenuItem_IsChecked(int sender, boolean value);
-public static final native void MenuItem_SubmenuClosed(int sender, int handler);
-public static final native void MenuItem_SubmenuOpened(int sender, int handler);
-public static final native int Int32Rect_Empty();
-public static final native int MatrixTransform_Matrix(int sender);
-public static final native void MatrixTransform_Matrix(int sender, int value);
-public static final native boolean Object_Equals(int sender, int o);
-public static final native int Object_GetType(int sender);
-public static final native int Object_ToString(int sender);
-public static final native void OpenFileDialog_Multiselect (int sender, boolean value);
-public static final native void RowDefinition_Height(int sender, int height);
-public static final native void RowDefinitionCollection_Add(int sender, int row);
-public static final native void Panel_Background(int sender, int brush);
-public static final native int Panel_BackgroundProperty();
-public static final native int Panel_Children(int sender);
-public static final native int Panel_GetZIndex(int element);
-public static final native void Panel_SetZIndex(int element, int index);
-public static final native int PasswordBox_Password(int sender);
-public static final native void PasswordBox_Password(int sender, int value);
-public static final native char PasswordBox_PasswordChar(int sender);
-public static final native void PasswordBox_PasswordChar(int sender, char value);
-public static final native int PasswordBox_MaxLength(int sender);
-public static final native void PasswordBox_MaxLength(int sender, int value);
-public static final native void PasswordBox_PasswordChanged(int sender, int handler);
-public static final native void PasswordBox_Paste(int sender);
-public static final native void Path_Data(int sender, int geometry);
-public static final native void Path_Fill(int sender, int brush);
-public static final native void Path_Stretch(int sender, int value);
-public static final native void PathFigureCollection_Add(int sender, int element);
-public static final native int PathFigureCollection_Count(int sender);
-public static final native void PathFigure_StartPoint(int sender, int point);
-public static final native void PathFigure_IsClosed(int sender, boolean closed);
-public static final native boolean PathFigure_IsClosed(int sender);
-public static final native int PathFigure_Segments(int sender);
-public static final native int PathFigure_Segments(int sender, int index);
-public static final native void PathGeometry_AddGeometry(int sender, int geometry);
-public static final native int PathGeometry_Bounds(int sender);
-public static final native void PathGeometry_FillRule(int sender, int value);
-public static final native int PathGeometry_Figures(int sender);
-public static final native int PathGeometry_Figures(int sender, int index);
-public static final native void PathSegmentCollection_Add(int sender, int element);
-public static final native int PathSegmentCollection_Count(int sender);
-public static final native int Pen_Brush(int sender);
-public static final native void Pen_Brush(int sender, int value);
-public static final native void Pen_DashCap(int sender, int value);
-public static final native void Pen_DashStyle(int sender, int value);
-public static final native void Pen_EndLineCap(int sender, int value);
-public static final native void Pen_StartLineCap(int sender, int value);
-public static final native void Pen_LineJoin(int sender, int value);
-public static final native void Pen_Thickness(int sender, double value);
-public static final native int PixelFormat_BitsPerPixel(int sender);
-public static final native int PixelFormats_Bgr101010();
-public static final native int PixelFormats_Bgr24();
-public static final native int PixelFormats_Bgr32();
-public static final native int PixelFormats_Bgr555();
-public static final native int PixelFormats_Bgr565();
-public static final native int PixelFormats_Bgra32();
-public static final native int PixelFormats_BlackWhite();
-public static final native int PixelFormats_Default();
-public static final native int PixelFormats_Indexed1();
-public static final native int PixelFormats_Indexed2();
-public static final native int PixelFormats_Indexed4();
-public static final native int PixelFormats_Indexed8();
-public static final native int PixelFormats_Pbgra32();
-public static final native int PixelFormats_Rgb24();
-public static final native void PointCollection_Add(int sender, int point);
-public static final native double Point_X(int sender);
-public static final native double Point_Y(int sender);
-public static final native void Popup_Child(int sender, int child);
-public static final native int Popup_Child(int sender);
-public static final native void Popup_HorizontalOffset(int sender, double value);
-public static final native double Popup_HorizontalOffset(int sender);
-public static final native void Popup_IsOpen(int sender, boolean value);
-public static final native boolean Popup_IsOpen(int sender);
-public static final native void Popup_VerticalOffset(int sender, double value);
-public static final native double Popup_VerticalOffset(int sender);
-public static final native void Popup_Closed(int sender, int handler);
-public static final native void Popup_Opened(int sender, int handler);
-public static final native int PresentationSource_FromVisual(int visual);
-public static final native void ProgressBar_IsIndeterminate(int sender, boolean value);
-public static final native void ProgressBar_IsIndeterminate(int sender);
-public static final native void ProgressBar_Orientation(int handle, int value);
-public static final native double RangeBase_LargeChange(int sender);
-public static final native void RangeBase_LargeChange(int sender, double value);
-public static final native double RangeBase_Maximum(int sender);
-public static final native void RangeBase_Maximum(int sender, double value);
-public static final native double RangeBase_Minimum(int sender);
-public static final native void RangeBase_Minimum(int sender, double value);
-public static final native double RangeBase_SmallChange(int sender);
-public static final native void RangeBase_SmallChange(int sender, double value);
-public static final native double RangeBase_Value(int sender);
-public static final native void RangeBase_Value(int sender, double value);
-public static final native void RangeBase_ValueChanged(int sender, int handler);
-public static final native void Rect_Intersect(int sender, int rect);
-public static final native void Rect_Union(int sender, int rect);
-public static final native double Rect_X(int sender);
-public static final native void Rect_X(int sender, double value);
-public static final native double Rect_Y(int sender);
-public static final native void Rect_Y(int sender, double value);
-public static final native double Rect_Width(int sender);
-public static final native void Rect_Width(int sender, double value);
-public static final native double Rect_Height(int sender);
-public static final native void Rect_Height(int sender, double value);
-public static final native int Registry_ClassesRoot();
-public static final native int RegistryKey_OpenSubKey(int sender, int key);
-public static final native int RegistryKey_GetSubKeyNames(int sender);
-public static final native int RegistryKey_GetValue(int sender, int name);
-public static final native int RepeatBehavior_Forever();
-public static final native int RenderOptions_GetBitmapScalingMode(int target);
-public static final native void RenderOptions_SetBitmapScalingMode(int target, int mode);
-public static final native void RenderOptions_SetEdgeMode(int target, int edgeMode);
-public static final native void RenderTargetBitmap_Render(int sender, int visual);
-public static final native void RoutedEventArgs_Handled(int sender, boolean handled);
-public static final native int RoutedEventArgs_typeid();
-public static final native int RoutedEventArgs_OriginalSource(int sender);
-public static final native int RoutedEventArgs_Source(int sender);
-public static final native void Run_Text(int sender, int value);
-public static final native int ScrollBar_Orientation(int sender);
-public static final native void ScrollBar_Orientation(int sender, int orientation);
-public static final native void ScrollBar_Scroll(int sender, int handler);
-public static final native double ScrollBar_ViewportSize(int sender);
-public static final native void ScrollBar_ViewportSize(int sender, double value);
-public static final native int ScrollBar_typeid();
-public static final native int ScrollEventArgs_ScrollEventType(int sender);
-public static final native int ScrollViewer_typeid ();
-public static final native void Selector_IsSynchronizedWithCurrentItem(int sender, boolean value);
-public static final native int Selector_SelectedIndex(int sender);
-public static final native void Selector_SelectedIndex(int sender, int value);
-public static final native int Selector_SelectedItem(int sender);
-public static final native int Selector_SelectedValue(int sender);
-public static final native void Selector_SelectionChanged(int sender, int handler);
-public static final native int SelectionChangedEventArgs_AddedItems(int sender);
-public static final native int SelectionChangedEventArgs_RemovedItems(int sender);
-public static final native void SetterBaseCollection_Add(int sender, int setter);
-public static final native double Size_Width(int sender);
-public static final native double Size_Height(int sender);
-public static final native void Size_Width(int sender, double width);
-public static final native void Size_Height(int sender, double height);
-public static final native void Shape_Fill(int sender, int brush);
-public static final native void Shape_Stroke(int sender, int brush);
-public static final native void Shape_StrokeThickness(int sender, double strokethickness);
-public static final native void Slider_Orientation(int sender, int value);
-public static final native void Slider_TickFrequency(int sender, double value);
-public static final native void Slider_TickPlacement(int sender, int value);
-public static final native void StackPanel_Orientation(int sender, int orientation);
-public static final native int StackPanel_OrientationProperty();
-public static final native int StackPanel_typeid();
-public static final native int StreamGeometry_Open(int sender);
-public static final native void StreamGeometryContext_BeginFigure(int sender, int startPoint, boolean isFilled, boolean isClosed);
-public static final native void StreamGeometryContext_Close(int sender);
-public static final native void StreamGeometryContext_LineTo(int sender, int startPoint, boolean isStroked, boolean isSmoothJoin);
-public static final native int String_ToCharArray(int sender);
-public static final native int String_Length(int sender);
-public static final native int Style_Setters(int sender);
-public static final native int SWTCanvas_Visual(int sender);
-public static final native void SWTCanvas_Visual(int sender, int visual);
-public static final native void SWTRow_NotifyPropertyChanged(int sender, int property);
-public static final native void SWTTextRunProperties_ForegroundBrush(int sender, int brush);
-public static final native int SystemColors_ControlBrush();
-public static final native int SystemColors_ControlColor();
-public static final native int SystemColors_ControlTextBrush();
-public static final native int SystemColors_ControlTextColor();
-public static final native int SystemColors_ControlDarkColor();
-public static final native int SystemColors_ControlLightColor();
-public static final native int SystemColors_ControlDarkDarkColor();
-public static final native int SystemColors_InfoColor();
-public static final native int SystemColors_InfoTextColor();
-public static final native int SystemColors_ActiveBorderColor();
-public static final native int SystemColors_ActiveCaptionColor();
-public static final native int SystemColors_ActiveCaptionTextColor();
-public static final native int SystemColors_GradientActiveCaptionColor();
-public static final native int SystemColors_InactiveCaptionColor();
-public static final native int SystemColors_InactiveCaptionTextColor();
-public static final native int SystemColors_GradientInactiveCaptionColor();
-public static final native int SystemColors_WindowColor();
-public static final native int SystemColors_WindowTextColor();
-public static final native int SystemColors_HighlightBrush();
-public static final native int SystemColors_HighlightColor();
-public static final native int SystemColors_HighlightTextColor();
-public static final native int SystemFonts_MessageFontFamily();
-public static final native int SystemFonts_MessageFontStyle();
-public static final native double SystemParameters_PrimaryScreenHeight();
-public static final native double SystemParameters_PrimaryScreenWidth();
-public static final native double SystemParameters_VirtualScreenLeft();
-public static final native double SystemParameters_VirtualScreenTop();
-public static final native double SystemParameters_VirtualScreenWidth();
-public static final native double SystemParameters_VirtualScreenHeight();
-public static final native double SystemParameters_VerticalScrollBarWidth();
-public static final native double SystemParameters_VerticalScrollBarButtonHeight();
-public static final native boolean SystemParameters_HighContrast();
-public static final native double SystemParameters_HorizontalScrollBarHeight();
-public static final native double SystemParameters_HorizontalScrollBarButtonWidth();
-public static final native int SystemParameters_WheelScrollLines();
-public static final native int SystemParameters_WorkArea();
-public static final native double SystemFonts_MessageFontSize();
-public static final native int SystemFonts_MessageFontWeight();
-public static final native void TextBlock_Background(int sender, int brush);
-public static final native int TextBlock_BackgroundProperty();
-public static final native int TextBlock_FontFamilyProperty();
-public static final native int TextBlock_FontStyleProperty();
-public static final native int TextBlock_FontWeightProperty();
-public static final native int TextBlock_FontStretchProperty();
-public static final native int TextBlock_FontSizeProperty();
-public static final native void TextBlock_FontFamily(int sender, int value);
-public static final native void TextBlock_FontStyle(int sender, int value);
-public static final native void TextBlock_FontWeight(int sender, int value);
-public static final native void TextBlock_FontStretch(int sender, int value);
-public static final native void TextBlock_FontSize(int sender, double value);
-public static final native void TextBlock_Foreground(int sender, int brush);
-public static final native int TextBlock_ForegroundProperty();
-public static final native int TextBounds_Rectangle(int sender);
-public static final native int TextBoundsCollection_GetEnumerator(int sender);
-public static final native int TextBoundsCollection_Current(int sender);
-public static final native void TextTabPropertiesCollection_Add(int sender, int tab);
-public static final native void TabControl_TabStripPlacement(int sender, int value);
-public static final native boolean TabItem_IsSelected(int sender);
-public static final native int TextBlock_Inlines(int sender);
-public static final native void TextBlock_Text(int sender, int str);
-public static final native int TextBlock_TextProperty();
-public static final native int TextBlock_typeid();
-public static final native int TextBox_CaretIndex(int sender);
-public static final native void TextBox_CaretIndex(int sender, int value);
-public static final native int TextBox_GetFirstVisibleLineIndex(int sender);
-public static final native int TextBox_GetLineIndexFromCharacterIndex(int sender, int value);
-public static final native int TextBox_GetRectFromCharacterIndex(int sender, int value);
-public static final native int TextBox_LineCount(int sender);
-public static final native int TextBox_MaxLength(int sender);
-public static final native void TextBox_MaxLength(int sender, int value);
-public static final native void TextBox_ScrollToLine(int sender, int value);
-public static final native void TextBox_Select(int sender, int start, int length);
-public static final native int TextBox_SelectedText(int sender);
-public static final native void TextBox_SelectedText(int sender, int value);
-public static final native int TextBox_SelectionLength(int sender);
-public static final native void TextBox_SelectionLength(int sender, int value);
-public static final native int TextBox_SelectionStart(int sender);
-public static final native void TextBox_SelectionStart(int sender, int value);
-public static final native int TextBox_Text(int sender);
-public static final native void TextBox_Text(int sender, int value);
-public static final native void TextBox_TextWrapping(int sender, int value);
-public static final native void TextBoxBase_AcceptsReturn(int sender, boolean value);
-public static final native void TextBoxBase_AcceptsTab(int sender, boolean value);
-public static final native void TextBoxBase_AppendText(int sender, int value);
-public static final native void TextBoxBase_Copy(int sender);
-public static final native void TextBoxBase_HorizontalScrollBarVisibility(int sender, int value);
-public static final native void TextBoxBase_Cut(int sender);
-public static final native boolean TextBoxBase_IsReadOnly(int sender);
-public static final native void TextBoxBase_IsReadOnly(int sender, boolean value);
-public static final native void TextBoxBase_Paste(int sender);
-public static final native void TextBoxBase_ScrollToEnd(int sender);
-public static final native void TextBoxBase_ScrollToVerticalOffset(int sender, double value);
-public static final native void TextBoxBase_SelectAll(int sender);
-public static final native void TextBoxBase_TextChanged(int sender, int handler);
-public static final native double TextBoxBase_VerticalOffset(int sender);
-public static final native void TextBoxBase_VerticalScrollBarVisibility(int sender, int value);
-public static final native int TextCompositionEventArgs_ControlText(int sender);
-public static final native void TextCompositionEventArgs_Handled(int sender, boolean value);
-public static final native int TextCompositionEventArgs_SystemText(int sender);
-public static final native int TextCompositionEventArgs_Text(int sender);
-public static final native int TextDecorations_Underline();
-public static final native int TextDecorations_Strikethrough();
-public static final native void TextDecorationCollection_Add(int sender, int decoration);
-public static final native int TextFormatter_Create();
-public static final native int TextFormatter_FormatLine(int sender, int textSource, int firstCharIndex, double paragraphWidth, int paragraphProperties, int previousLineBreak);
-public static final native double TextLine_Baseline(int sender);
-public static final native double TextLine_Height(int sender);
-public static final native int TextLine_NewlineLength(int sender);
-public static final native int TextLine_GetNextCaretCharacterHit(int sender, int characterHit);
-public static final native int TextLine_GetPreviousCaretCharacterHit(int sender, int characterHit);
-public static final native int TextLine_GetTextLineBreak(int sender);
-public static final native int TextLine_GetTextBounds(int sender, int firstTextSourceCharacterIndex, int textLength);
-public static final native int TextLine_GetCharacterHitFromDistance(int sender, double distance);
-public static final native int TextLine_GetIndexedGlyphRuns(int sender);
-public static final native double TextLine_GetDistanceFromCharacterHit(int sender, int characterHit);
-public static final native int TextLine_Length(int sender);
-public static final native double TextLine_Start(int sender);
-public static final native double TextLine_Width(int sender);
-public static final native double TextLine_WidthIncludingTrailingWhitespace(int sender);
-public static final native void TextLine_Draw(int sender, int drawContext, int origin, int invertAxes);
-public static final native void TileBrush_TileMode(int sender, int mode);
-public static final native void TileBrush_Stretch(int sender, int stretch);
-public static final native void TileBrush_Viewport(int sender, int viewport);
-public static final native void TileBrush_ViewportUnits(int sender, int mode);
-public static final native void TileBrush_AlignmentX(int sender, int value);
-public static final native void TileBrush_AlignmentY(int sender, int value);
-public static final native void Timeline_AutoReverse(int sender, boolean autoReverse);
-public static final native void Timeline_Duration(int sender, int duration);
-public static final native void Timeline_RepeatBehavior(int sender, int behavior);
-public static final native int TimeSpan_FromMilliseconds(int ms);
-public static final native void ToggleButton_Checked(int sender, int handler);
-public static final native int ToggleButton_CheckedEvent();
-public static final native int ToggleButton_IndeterminateEvent ();
-public static final native boolean ToggleButton_IsChecked(int sender);
-public static final native void ToggleButton_IsChecked(int sender, boolean value);
-public static final native void ToggleButton_IsCheckedNullSetter(int sender);
-public static final native int ToggleButton_IsCheckedProperty();
-public static final native int ToggleButton_IsThreeStateProperty();
-public static final native void ToggleButton_Unchecked(int sender, int handler);
-public static final native int ToggleButton_UncheckedEvent();
-public static final native void ToolBar_SetOverflowMode(int element, int mode);
-public static final native void ToolBarTray_IsLocked(int sender, boolean value);
-public static final native void ToolBarTray_Orientation(int sender, int value);
-public static final native int ToolBarTray_ToolBars(int sender);
-public static final native void TransformCollection_Add(int sender, int transform);
-public static final native int Transform_Clone(int sender);
-public static final native int TransformGroup_Children(int sender);
-public static final native int TreeView_SelectedItem(int sender);
-public static final native void TreeView_SelectedItemChanged(int sender, int handler);
-public static final native int TreeView_typeid();
-public static final native int TreeViewItem_CollapsedEvent();
-public static final native int TreeViewItem_ExpandedEvent();
-public static final native boolean TreeViewItem_IsExpanded(int sender);
-public static final native void TreeViewItem_IsExpanded(int sender, boolean value);
-public static final native void TreeViewItem_IsSelected(int sender, boolean value);
-public static final native int TypeConverter_ConvertFromString(int sender, int string);
-public static final native int TypeConverter_ConvertToString(int sender, int object);
-public static final native int TypeDescriptor_GetConverter(int object);
-public static final native int Typeface_FontFamily(int sender);
-public static final native int Typeface_Style(int sender);
-public static final native int Typeface_Weight(int sender);
-public static final native int Typeface_Stretch(int sender);
-public static final native int TypefaceCollection_Count(int sender);
-public static final native int TypefaceCollection_Current(int sender);
-public static final native int TypefaceCollection_GetEnumerator(int sender);
-public static final native boolean Type_IsInstanceOfType(int sender, int object);
-public static final native int Type_FullName(int sender);
-public static final native void UIElementCollection_Add(int sender, int child);
-public static final native void UIElementCollection_Insert(int sender, int index, int child);
-public static final native int UIElementCollection_IndexOf(int sender, int child);
-public static final native boolean UIElementCollection_Contains(int sender, int child);
-public static final native int UIElementCollection_Count(int sender);
-public static final native int UIElementCollection_Current(int sender);
-public static final native int UIElementCollection_GetEnumerator(int sender);
-public static final native void UIElementCollection_Remove(int sender, int child);
-public static final native void UIElement_AddHandler(int sender, int event, int handler);
-public static final native boolean UIElement_CaptureMouse(int sender);
-public static final native void UIElement_Clip(int sender, int geometry);
-public static final native void UIElement_ClipToBounds(int sender, boolean value);
-public static final native boolean UIElement_IsEnabled(int sender);
-public static final native boolean UIElement_Focus(int sender);
-public static final native void UIElement_Focusable (int sender, boolean value);
-public static final native void UIElement_BeginAnimation(int sender, int dp, int animation);
-public static final native int UIElement_InputHitTest(int sender, int point);
-public static final native void UIElement_InvalidateVisual(int sender);
-public static final native boolean UIElement_IsFocused(int sender);
-public static final native boolean UIElement_IsKeyboardFocused(int sender);
-public static final native boolean UIElement_IsKeyboardFocusWithin(int sender);
-public static final native void UIElement_IsEnabled(int sender, boolean enable);
-public static final native boolean UIElement_IsMouseOver(int sender);
-public static final native boolean UIElement_IsVisible(int sender);
-public static final native void UIElement_KeyUp(int sender, int handler);
-public static final native void UIElement_KeyDown(int sender, int handler);
-public static final native int UIElement_DesiredSize(int sender);
-public static final native void UIElement_Measure(int sender, int availableSize);
-public static final native void UIElement_MouseDown(int sender, int handler);
-public static final native void UIElement_MouseEnter(int sender, int handler);
-public static final native void UIElement_MouseLeave(int sender, int handler);
-public static final native void UIElement_MouseMove(int sender, int handler);
-public static final native void UIElement_MouseWheel(int sender, int handler);
-public static final native void UIElement_MouseUp(int sender, int handler);
-public static final native int UIElement_OpacityProperty();
-public static final native void UIElement_PreviewMouseDown(int sender, int handler);
-public static final native void UIElement_PreviewMouseMove(int sender, int handler);
-public static final native void UIElement_PreviewMouseWheel(int sender, int handler);
-public static final native void UIElement_PreviewMouseUp(int sender, int handler);
-public static final native void UIElement_PreviewGotKeyboardFocus(int sender, int handler);
-public static final native void UIElement_PreviewLostKeyboardFocus(int sender, int handler);
-public static final native void UIElement_LostKeyboardFocus(int sender, int handler);
-public static final native void UIElement_PreviewTextInput(int sender, int handler);
-public static final native void UIElement_ReleaseMouseCapture(int sender);
-public static final native void UIElement_TextInput(int sender, int handler);
-public static final native int UIElement_TranslatePoint(int sender, int point, int relativeTo);
-public static final native void UIElement_UpdateLayout(int sender);
-public static final native byte UIElement_Visibility(int sender);
-public static final native void UIElement_Visibility(int sender, byte visible);
-public static final native int UIElement_VisibilityProperty();
-public static final native double VirtualizingStackPanel_VerticalOffset(int sender);
-public static final native int Visual_PointToScreen(int sender, int point);
-public static final native int Visual_PointFromScreen(int sender, int point);
-public static final native int VisualTreeHelper_GetChild(int sender, int value);
-public static final native int VisualTreeHelper_GetChildrenCount(int sender);
-public static final native int VisualTreeHelper_GetParent(int sender);
-public static final native int WindowCollection_Count(int sender);
-public static final native int WindowCollection_Current(int sender);
-public static final native int WindowCollection_GetEnumerator(int sender);
-public static final native void Window_Activate(int sender);
-public static final native void Window_Close(int sender);
-public static final native void Window_Closing(int sender, int handler);
-public static final native void Window_Activated(int sender, int handler);
-public static final native void Window_Deactivated(int sender, int handler);
-public static final native void Window_LocationChanged(int sender, int handler);
-public static final native void Window_Hide(int sender);
-public static final native void Window_Owner(int sender, int owner);
-public static final native void Window_Show(int sender);
-public static final native double Window_Left(int sender);
-public static final native double Window_Top(int sender);
-public static final native void Window_Topmost(int sender, boolean value);
-public static final native void Window_Left(int sender, double left);
-public static final native void Window_Top(int sender, double top);
-public static final native void Window_Icon(int sender, int icon);
-public static final native boolean Window_IsActive(int sender);
-public static final native int Window_WindowState (int sender);
-public static final native void Window_WindowState (int sender, int windowState);
-public static final native void Window_AllowsTransparency(int sender, boolean value);
-public static final native void Window_WindowStyle(int sender, int value);
-public static final native void Window_ShowInTaskbar(int sender, boolean value);
-public static final native void Window_ResizeMode(int sender, int value);
-public static final native int Window_Title(int sender);
-public static final native void Window_Title(int sender, int string);
-public static final native void WriteableBitmap_WritePixels(int sender, int sourceRect, byte[] buffer, int bufferSize, int stride);
-
-public static final native int gcnew_AccessText();
-public static final native int gcnew_Application();
-public static final native int gcnew_ArrayList(int count);
-public static final native int gcnew_ArcSegment(int point, int size, double rotationAngle, boolean isLargeArc, int sweepDirection, boolean isStroked);
-public static final native int gcnew_BitmapImage();
-public static final native int gcnew_BezierSegment(int point1, int point2, int point3, boolean isScrolled);
-public static final native int gcnew_Binding();
-public static final native int gcnew_Binding(int path);
-public static final native int gcnew_BitmapPalette(int colors);
-public static final native int gcnew_Bitmap(int width, int height, int stride, int format, byte[] scan0);
-public static final native int gcnew_Button();
-public static final native int gcnew_Canvas();
-public static final native int gcnew_CheckBox();
-public static final native int gcnew_ColorDialog();
-public static final native int gcnew_ColorList(int count);
-public static final native int gcnew_ComboBox();
-public static final native int gcnew_ComboBoxItem();
-public static final native int gcnew_ControlTemplate();
-public static final native int gcnew_CroppedBitmap(int source, int sourceRect);
-public static final native int gcnew_CharacterHit(int firstCharacterIndex, int trailingLength);
-public static final native int gcnew_CombinedGeometry(int geometryCombineMode, int geometry1, int geometry2);
-public static final native int gcnew_CompositeCollection();
-public static final native int gcnew_ContextMenu();
-public static final native int gcnew_ContentControl();
-public static final native int gcnew_ColumnDefinition();
-public static final native int gcnew_DrawingVisual();
-public static final native int gcnew_DoubleAnimationUsingKeyFrames();
-public static final native int gcnew_DashStyle(int dashes, double offset);
-public static final native int gcnew_DataTemplate();
-public static final native int gcnew_DispatcherFrame();
-public static final native int gcnew_DispatcherTimer();
-public static final native int gcnew_DiscreteDoubleKeyFrame(double value, int keytime);
-public static final native int gcnew_DoubleCollection(int capacity);
-public static final native int gcnew_Duration(int timespan);
-public static final native int gcnew_Expander();
-public static final native int gcnew_FileInfo(int path);
-public static final native int gcnew_FontFamily(int str);
-public static final native int gcnew_FormatConvertedBitmap(int source, int destinationFormat, int destinationPalette, double alphaThreshold);
-public static final native int gcnew_FormattedText(int string, int culture, int flowDirection, int typeface, double emSize, int brush);
-public static final native int gcnew_FrameworkElementFactory(int type);
-public static final native int gcnew_FrameworkElementFactory(int type, int name);
-public static final native int gcnew_GeometryGroup();
-public static final native int gcnew_Grid();
-public static final native int gcnew_GridLength(double value, int type);
-public static final native int gcnew_GridView();
-public static final native int gcnew_GridViewColumn();
-public static final native int gcnew_GridViewColumnCollection();
-public static final native int gcnew_GridViewColumnHeader();
-//public static final native int gcnew_GridViewRowPresenter();
-public static final native int gcnew_GroupBox();
-public static final native int gcnew_Hyperlink(int inline);
-public static final native int gcnew_ImageBrush(int imageSource);
-public static final native int gcnew_Image();
-public static final native int gcnew_Int32(int value);
-public static final native int gcnew_Int32Rect(int x, int y, int width, int height);
-public static final native int gcnew_IntPtr(int value);
-public static final native int gcnew_Label();
-public static final native int gcnew_LinearGradientBrush(int startColor, int endColor, double angle);
-public static final native int gcnew_LinearGradientBrush(int startColor, int endColor, int startPoint, int endPonit);
-public static final native int gcnew_LineSegment(int point, boolean isStroked);
-public static final native int gcnew_ListBox();
-public static final native int gcnew_ListBoxItem();
-public static final native int gcnew_ListView();
-public static final native int gcnew_ListViewItem();
-public static final native int gcnew_Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY);
-public static final native int gcnew_MatrixTransform(int matrix);
-public static final native int gcnew_Menu();
-public static final native int gcnew_MenuItem();
-public static final native int gcnew_OpenFileDialog();
-public static final native int gcnew_PasswordBox();
-public static final native int gcnew_Path();
-public static final native int gcnew_PathFigure();
-public static final native int gcnew_PathGeometry();
-public static final native int gcnew_Pen();
-public static final native int gcnew_PolyLineSegment(int points, boolean isStroked);
-public static final native int gcnew_PointCollection(int capacity);
-public static final native int gcnew_Point(double x, double y);
-public static final native int gcnew_Popup();
-public static final native int gcnew_ProgressBar();
-public static final native int gcnew_QuadraticBezierSegment(int point1, int point2, boolean isScrolled);
-public static final native int gcnew_RadioButton();
-public static final native int gcnew_Rect(double x, double y, double width, double height);
-public static final native int gcnew_RectangleGeometry(int rect);
-public static final native int gcnew_RenderTargetBitmap(int pixelWidth, int pixelHeight, double dpiX, double dpiY, int pixelFormat);
-public static final native int gcnew_RepeatButton();
-public static final native int gcnew_Rectangle();
-public static final native int gcnew_RowDefinition();
-public static final native int gcnew_Run();
-public static final native int gcnew_SaveFileDialog();
-public static final native int gcnew_ScrollBar();
-public static final native int gcnew_Separator();
-public static final native int gcnew_Setter(int dp, int value);
-public static final native int gcnew_Size();
-public static final native int gcnew_Size(double width, double height);
-public static final native int gcnew_Slider();
-public static final native int gcnew_ScaleTransform(double scaleX, double scaleY);
-public static final native int gcnew_SolidColorBrush(int color);
-public static final native int gcnew_StackPanel();
-public static final native int gcnew_StreamGeometry();
-public static final native int gcnew_String(char[] value);
-public static final native int gcnew_Style();
-public static final native int gcnew_SWTCanvas(int jniRef);
-public static final native int gcnew_SWTSafeHandle(int handle, boolean isIcon);
-public static final native int gcnew_SWTCellConverter();
-public static final native int gcnew_SWTTextSource(int jniRef);
-public static final native int gcnew_SWTRow(int parentJniRef, int item);
-public static final native int gcnew_SWTTextEmbeddedObject(int properties, int lenght, double width, double height, double baseline);
-public static final native int gcnew_SWTTextRunProperties(int typeface, double size, double hittingSize, int textDecorations, int foregroundBrush, int backgroundBrush, int baselineAlignment, int culture);
-public static final native int gcnew_SWTTextParagraphProperties(int flowDirection, int textAlignment, boolean firstLineInParagraph, int defaultTextRunProperties, int textWrap, double lineHeight, double indent, int tabs);
-public static final native int gcnew_SWTTreeViewRowPresenter(int treeView);
-public static final native int gcnew_TabControl();
-public static final native int gcnew_TabItem();
-public static final native int gcnew_TextDecorationCollection(int capacity);
-public static final native int gcnew_TextTabProperties(int alignment, double location, int tabLeader, int aligningChar);
-public static final native int gcnew_TextTabPropertiesCollection(int capacity);
-public static final native int gcnew_TextBlock();
-public static final native int gcnew_TextBox();
-public static final native int gcnew_TextCharacters(int string, int offsetToFirstChar, int length, int textRunProperties);
-public static final native int gcnew_TextEndOfLine(int length, int textRunProperties);
-public static final native int gcnew_TextEndOfParagraph(int length, int textRunProperties);
-public static final native int gcnew_TimeSpan(long ticks);
-public static final native int gcnew_Thickness(double left, double top, double right, double bottom);
-public static final native int gcnew_ToggleButton();
-public static final native int gcnew_ToolBar();
-public static final native int gcnew_ToolBarTray();
-public static final native int gcnew_TransformGroup();
-public static final native int gcnew_TranslateTransform(double offsetX, double offsetY);
-public static final native int gcnew_TreeView();
-public static final native int gcnew_TreeViewItem();
-public static final native int gcnew_Typeface(int fontFamily, int style, int weight, int stretch);
-public static final native int gcnew_Uri(int str, int type);
-public static final native int gcnew_Window();
-public static final native int gcnew_WriteableBitmap (int source);
-public static final native int gcnew_WriteableBitmap (int pixelWidth, int pixelHeight, double dpiX, double dpiY, int pixelFormat, int palette);
-public static final native void memcpy(char[] dest, int src, int size);
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/POINT.java b/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/POINT.java
deleted file mode 100644
index a9b55cee10..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/POINT.java
+++ /dev/null
@@ -1,17 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.internal.wpf;
-
-public class POINT {
- public int x;
- public int y;
- public static final int sizeof = 8;
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/carbon/org/eclipse/swt/printing/Printer.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/carbon/org/eclipse/swt/printing/Printer.java
index 45b864e202..c76216538a 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Printing/carbon/org/eclipse/swt/printing/Printer.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/carbon/org/eclipse/swt/printing/Printer.java
@@ -126,9 +126,9 @@ static int packData(int handle, byte[] buffer, int offset) {
buffer[offset++] = (byte)((length & 0xFF000000) >> 24);
int [] ptr = new int [1];
OS.HLock(handle);
- OS.memmove(ptr, handle, 4);
+ OS.memcpy(ptr, handle, 4);
byte[] buffer1 = new byte[length];
- OS.memmove(buffer1, ptr [0], length);
+ OS.memcpy(buffer1, ptr [0], length);
OS.HUnlock(handle);
System.arraycopy(buffer1, 0, buffer, offset, length);
return offset + length;
@@ -143,10 +143,10 @@ static int unpackData(int[] handle, byte[] buffer, int offset) {
if (handle[0] == 0) SWT.error(SWT.ERROR_NO_HANDLES);
int[] ptr = new int[1];
OS.HLock(handle[0]);
- OS.memmove(ptr, handle[0], 4);
+ OS.memcpy(ptr, handle[0], 4);
byte[] buffer1 = new byte[length];
System.arraycopy(buffer, offset, buffer1, 0, length);
- OS.memmove(ptr[0], buffer1, length);
+ OS.memcpy(ptr[0], buffer1, length);
OS.HUnlock(handle[0]);
return offset + length;
}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/PrintDialog.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/PrintDialog.java
deleted file mode 100644
index f8c48ec56f..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/PrintDialog.java
+++ /dev/null
@@ -1,208 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.printing;
-
-
-import org.eclipse.swt.*;
-import org.eclipse.swt.widgets.*;
-
-/**
- * Instances of this class allow the user to select
- * a printer and various print-related parameters
- * prior to starting a print job.
- * <p>
- * IMPORTANT: This class is intended to be subclassed <em>only</em>
- * within the SWT implementation.
- * </p>
- */
-public class PrintDialog extends Dialog {
- int scope = PrinterData.ALL_PAGES;
- int startPage = -1, endPage = -1;
- boolean printToFile = false;
-
-/**
- * Constructs a new instance of this class given only its parent.
- *
- * @param parent a composite control which will be the parent of the new instance (cannot be null)
- *
- * @exception IllegalArgumentException <ul>
- * <li>ERROR_NULL_ARGUMENT - if the parent is null</li>
- * </ul>
- * @exception SWTException <ul>
- * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li>
- * <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li>
- * </ul>
- *
- * @see SWT
- * @see Widget#checkSubclass
- * @see Widget#getStyle
- */
-public PrintDialog (Shell parent) {
- this (parent, SWT.PRIMARY_MODAL);
-}
-/**
- * Constructs a new instance of this class given its parent
- * and a style value describing its behavior and appearance.
- * <p>
- * The style value is either one of the style constants defined in
- * class <code>SWT</code> which is applicable to instances of this
- * class, or must be built by <em>bitwise OR</em>'ing together
- * (that is, using the <code>int</code> "|" operator) two or more
- * of those <code>SWT</code> style constants. The class description
- * lists the style constants that are applicable to the class.
- * Style bits are also inherited from superclasses.
- * </p>
- *
- * @param parent a composite control which will be the parent of the new instance (cannot be null)
- * @param style the style of control to construct
- *
- * @exception IllegalArgumentException <ul>
- * <li>ERROR_NULL_ARGUMENT - if the parent is null</li>
- * </ul>
- * @exception SWTException <ul>
- * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li>
- * <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li>
- * </ul>
- *
- * @see SWT
- * @see Widget#checkSubclass
- * @see Widget#getStyle
- */
-public PrintDialog (Shell parent, int style) {
- super (parent, style);
- checkSubclass ();
-}
-/**
- * Makes the receiver visible and brings it to the front
- * of the display.
- *
- * @return a printer data object describing the desired print job parameters
- *
- * @exception SWTException <ul>
- * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
- * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
- * </ul>
- */
-public PrinterData open() {
- /* Return the first printer in the list */
- PrinterData[] printers = Printer.getPrinterList();
- if (printers.length > 0) return printers[0];
- return null;
-}
-/**
- * Returns the print job scope that the user selected
- * before pressing OK in the dialog. This will be one
- * of the following values:
- * <dl>
- * <dt><code>ALL_PAGES</code></dt>
- * <dd>Print all pages in the current document</dd>
- * <dt><code>PAGE_RANGE</code></dt>
- * <dd>Print the range of pages specified by startPage and endPage</dd>
- * <dt><code>SELECTION</code></dt>
- * <dd>Print the current selection</dd>
- * </dl>
- *
- * @return the scope setting that the user selected
- */
-public int getScope() {
- return scope;
-}
-/**
- * Sets the scope of the print job. The user will see this
- * setting when the dialog is opened. This can have one of
- * the following values:
- * <dl>
- * <dt><code>ALL_PAGES</code></dt>
- * <dd>Print all pages in the current document</dd>
- * <dt><code>PAGE_RANGE</code></dt>
- * <dd>Print the range of pages specified by startPage and endPage</dd>
- * <dt><code>SELECTION</code></dt>
- * <dd>Print the current selection</dd>
- * </dl>
- *
- * @param scope the scope setting when the dialog is opened
- */
-public void setScope(int scope) {
- this.scope = scope;
-}
-/**
- * Returns the start page setting that the user selected
- * before pressing OK in the dialog.
- * <p>
- * Note that this value is one based and only valid if the scope is
- * <code>PAGE_RANGE</code>.
- * </p>
- *
- * @return the start page setting that the user selected
- */
-public int getStartPage() {
- return startPage;
-}
-/**
- * Sets the start page that the user will see when the dialog
- * is opened.
- * <p>
- * Note that this value is one based and only valid if the scope is
- * <code>PAGE_RANGE</code>.
- * </p>
- *
- * @param startPage the startPage setting when the dialog is opened
- */
-public void setStartPage(int startPage) {
- this.startPage = startPage;
-}
-/**
- * Returns the end page setting that the user selected
- * before pressing OK in the dialog.
- * <p>
- * Note that this value is one based and only valid if the scope is
- * <code>PAGE_RANGE</code>.
- * </p>
- *
- * @return the end page setting that the user selected
- */
-public int getEndPage() {
- return endPage;
-}
-/**
- * Sets the end page that the user will see when the dialog
- * is opened.
- * <p>
- * Note that this value is one based and only valid if the scope is
- * <code>PAGE_RANGE</code>.
- * </p>
- *
- * @param endPage the end page setting when the dialog is opened
- */
-public void setEndPage(int endPage) {
- this.endPage = endPage;
-}
-/**
- * Returns the 'Print to file' setting that the user selected
- * before pressing OK in the dialog.
- *
- * @return the 'Print to file' setting that the user selected
- */
-public boolean getPrintToFile() {
- return printToFile;
-}
-/**
- * Sets the 'Print to file' setting that the user will see
- * when the dialog is opened.
- *
- * @param printToFile the 'Print to file' setting when the dialog is opened
- */
-public void setPrintToFile(boolean printToFile) {
- this.printToFile = printToFile;
-}
-protected void checkSubclass() {
-}
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/Printer.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/Printer.java
deleted file mode 100644
index 977a5656d0..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/Printer.java
+++ /dev/null
@@ -1,317 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.printing;
-
-
-import org.eclipse.swt.*;
-import org.eclipse.swt.graphics.*;
-
-/**
- * Instances of this class are used to print to a printer.
- * Applications create a GC on a printer using <code>new GC(printer)</code>
- * and then draw on the printer GC using the usual graphics calls.
- * <p>
- * A <code>Printer</code> object may be constructed by providing
- * a <code>PrinterData</code> object which identifies the printer.
- * A <code>PrintDialog</code> presents a print dialog to the user
- * and returns an initialized instance of <code>PrinterData</code>.
- * Alternatively, calling <code>new Printer()</code> will construct a
- * printer object for the user's default printer.
- * </p><p>
- * Application code must explicitly invoke the <code>Printer.dispose()</code>
- * method to release the operating system resources managed by each instance
- * when those instances are no longer required.
- * </p>
- *
- * @see PrinterData
- * @see PrintDialog
- */
-public final class Printer extends Device {
- PrinterData data;
-
-/**
- * Returns an array of <code>PrinterData</code> objects
- * representing all available printers.
- *
- * @return the list of available printers
- */
-public static PrinterData[] getPrinterList() {
- PrinterData printerList[] = new PrinterData[0];
- return printerList;
-}
-
-/**
- * Returns a <code>PrinterData</code> object representing
- * the default printer or <code>null</code> if there is no
- * printer available on the System.
- *
- * @return the default printer data or null
- *
- * @since 2.1
- */
-public static PrinterData getDefaultPrinterData() {
- return null;
-}
-
-/**
- * Constructs a new printer representing the default printer.
- * <p>
- * You must dispose the printer when it is no longer required.
- * </p>
- *
- * @exception SWTError <ul>
- * <li>ERROR_NO_HANDLES - if there are no valid printers
- * </ul>
- *
- * @see Device#dispose
- */
-public Printer() {
- this(getDefaultPrinterData());
-}
-
-/**
- * Constructs a new printer given a <code>PrinterData</code>
- * object representing the desired printer.
- * <p>
- * You must dispose the printer when it is no longer required.
- * </p>
- *
- * @param data the printer data for the specified printer
- *
- * @exception IllegalArgumentException <ul>
- * <li>ERROR_INVALID_ARGUMENT - if the specified printer data does not represent a valid printer
- * </ul>
- * @exception SWTError <ul>
- * <li>ERROR_NO_HANDLES - if there are no valid printers
- * </ul>
- *
- * @see Device#dispose
- */
-public Printer(PrinterData data) {
- super (data);
- SWT.error(SWT.ERROR_NO_HANDLES);
-}
-
-
-/**
- * Invokes platform specific functionality to allocate a new GC handle.
- * <p>
- * <b>IMPORTANT:</b> This method is <em>not</em> part of the public
- * API for <code>Printer</code>. It is marked public only so that it
- * can be shared within the packages provided by SWT. It is not
- * available on all platforms, and should never be called from
- * application code.
- * </p>
- *
- * @param data the platform specific GC data
- * @return the platform specific GC handle
- */
-public int internal_new_GC(GCData data) {
- return 0;
-}
-
-/**
- * Invokes platform specific functionality to dispose a GC handle.
- * <p>
- * <b>IMPORTANT:</b> This method is <em>not</em> part of the public
- * API for <code>Printer</code>. It is marked public only so that it
- * can be shared within the packages provided by SWT. It is not
- * available on all platforms, and should never be called from
- * application code.
- * </p>
- *
- * @param hDC the platform specific GC handle
- * @param data the platform specific GC data
- */
-public void internal_dispose_GC(int xGC, GCData data) {
-}
-
-/**
- * Starts a print job and returns true if the job started successfully
- * and false otherwise.
- * <p>
- * This must be the first method called to initiate a print job,
- * followed by any number of startPage/endPage calls, followed by
- * endJob. Calling startPage, endPage, or endJob before startJob
- * will result in undefined behavior.
- * </p>
- *
- * @param jobName the name of the print job to start
- * @return true if the job started successfully and false otherwise.
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- *
- * @see #startPage
- * @see #endPage
- * @see #endJob
- */
-public boolean startJob(String jobName) {
- return true;
-}
-
-/**
- * Ends the current print job.
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- *
- * @see #startJob
- * @see #startPage
- * @see #endPage
- */
-public void endJob() {
-}
-
-/**
- * Cancels a print job in progress.
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- */
-public void cancelJob() {
-}
-
-/**
- * Starts a page and returns true if the page started successfully
- * and false otherwise.
- * <p>
- * After calling startJob, this method may be called any number of times
- * along with a matching endPage.
- * </p>
- *
- * @return true if the page started successfully and false otherwise.
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- *
- * @see #endPage
- * @see #startJob
- * @see #endJob
- */
-public boolean startPage() {
- return true;
-}
-
-/**
- * Ends the current page.
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- *
- * @see #startPage
- * @see #startJob
- * @see #endJob
- */
-public void endPage() {
-}
-
-/**
- * Returns a point whose x coordinate is the horizontal
- * dots per inch of the printer, and whose y coordinate
- * is the vertical dots per inch of the printer.
- *
- * @return the horizontal and vertical DPI
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- */
-public Point getDPI() {
- return new Point(0, 0);
-}
-
-/**
- * Returns a rectangle describing the receiver's size and location.
- * For a printer, this is the size of a page, in pixels.
- *
- * @return the bounding rectangle
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- *
- * @see #getClientArea
- * @see #computeTrim
- */
-public Rectangle getBounds() {
- return null;
-}
-
-/**
- * Returns a rectangle which describes the area of the
- * receiver which is capable of displaying data.
- * For a printer, this is the size of the printable area
- * of a page, in pixels.
- *
- * @return the client area
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- *
- * @see #getBounds
- * @see #computeTrim
- */
-public Rectangle getClientArea() {
- return null;
-}
-
-/**
- * Given a desired <em>client area</em> for the receiver
- * (as described by the arguments), returns the bounding
- * rectangle which would be required to produce that client
- * area.
- * <p>
- * In other words, it returns a rectangle such that, if the
- * receiver's bounds were set to that rectangle, the area
- * of the receiver which is capable of displaying data
- * (that is, not covered by the "trimmings") would be the
- * rectangle described by the arguments (relative to the
- * receiver's parent).
- * </p>
- * Note that there is no setBounds for a printer. This method
- * is usually used by passing in the client area (the 'printable
- * area') of the printer. It can also be useful to pass in 0, 0, 0, 0.
- *
- * @param x the desired x coordinate of the client area
- * @param y the desired y coordinate of the client area
- * @param width the desired width of the client area
- * @param height the desired height of the client area
- * @return the required bounds to produce the given client area
- *
- * @exception SWTException <ul>
- * <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li>
- * </ul>
- *
- * @see #getBounds
- * @see #getClientArea
- */
-public Rectangle computeTrim(int x, int y, int width, int height) {
- return new Rectangle(0,0,0,0);
-}
-
-/**
- * Returns a <code>PrinterData</code> object representing the
- * target printer for this print job.
- *
- * @return a PrinterData object describing the receiver
- */
-public PrinterData getPrinterData() {
- return data;
-}
-
-}
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/carbon/org/eclipse/swt/program/Program.java b/bundles/org.eclipse.swt/Eclipse SWT Program/carbon/org/eclipse/swt/program/Program.java
index da2028a63b..29ec0bdd77 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/carbon/org/eclipse/swt/program/Program.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Program/carbon/org/eclipse/swt/program/Program.java
@@ -361,8 +361,7 @@ public static boolean launch (String fileName) {
fileName.getChars(0, chars.length, chars, 0);
int str = OS.CFStringCreateWithCharacters(0, chars, chars.length);
if (str != 0) {
- int unscapedStr = OS.CFStringCreateWithCharacters(0, new char[]{'%'}, 1);
- int escapedStr = OS.CFURLCreateStringByAddingPercentEscapes(OS.kCFAllocatorDefault, str, unscapedStr, 0, OS.kCFStringEncodingUTF8);
+ int escapedStr = OS.CFURLCreateStringByAddingPercentEscapes(OS.kCFAllocatorDefault, str, 0, 0, OS.kCFStringEncodingUTF8);
if (escapedStr != 0) {
int url = OS.CFURLCreateWithString(OS.kCFAllocatorDefault, escapedStr, 0);
if (url != 0) {
@@ -371,7 +370,6 @@ public static boolean launch (String fileName) {
}
OS.CFRelease(escapedStr);
}
- if (unscapedStr != 0) OS.CFRelease(unscapedStr);
OS.CFRelease(str);
}
return rc == OS.noErr;
@@ -396,7 +394,7 @@ public boolean execute (String fileName) {
int rc = -1;
int fsRefPtr = OS.NewPtr(fsRef.length);
if (fsRefPtr != 0) {
- OS.memmove(fsRefPtr, fsRef, fsRef.length);
+ OS.memcpy(fsRefPtr, fsRef, fsRef.length);
LSApplicationParameters params = new LSApplicationParameters();
params.version = 0;
params.flags = 0;
@@ -409,8 +407,7 @@ public boolean execute (String fileName) {
fileName.getChars(0, chars.length, chars, 0);
int str = OS.CFStringCreateWithCharacters(0, chars, chars.length);
if (str != 0) {
- int unscapedStr = OS.CFStringCreateWithCharacters(0, new char[]{'%'}, 1);
- int escapedStr = OS.CFURLCreateStringByAddingPercentEscapes(OS.kCFAllocatorDefault, str, unscapedStr, 0, OS.kCFStringEncodingUTF8);
+ int escapedStr = OS.CFURLCreateStringByAddingPercentEscapes(OS.kCFAllocatorDefault, str, 0, 0, OS.kCFStringEncodingUTF8);
if (escapedStr != 0) {
int urls = OS.CFArrayCreateMutable(OS.kCFAllocatorDefault, 1, 0);
if (urls != 0) {
@@ -423,7 +420,6 @@ public boolean execute (String fileName) {
}
OS.CFRelease(escapedStr);
}
- if (unscapedStr != 0) OS.CFRelease(unscapedStr);
OS.CFRelease(str);
}
}
@@ -451,12 +447,12 @@ ImageData createImageFromFamily (int family, int type, int maskType, int width,
OS.HLock (maskHandle);
int[] iconPtr = new int [1];
int[] maskPtr = new int [1];
- OS.memmove (iconPtr, dataHandle, 4);
- OS.memmove (maskPtr, maskHandle, 4);
+ OS.memcpy (iconPtr, dataHandle, 4);
+ OS.memcpy (maskPtr, maskHandle, 4);
byte[] data = new byte[dataSize];
- OS.memmove (data, iconPtr [0], dataSize);
+ OS.memcpy (data, iconPtr [0], dataSize);
byte[] alphaData = new byte[width * height];
- OS.memmove(alphaData, maskPtr[0], alphaData.length);
+ OS.memcpy(alphaData, maskPtr[0], alphaData.length);
OS.HUnlock (maskHandle);
OS.HUnlock (dataHandle);
OS.DisposeHandle (maskHandle);
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h b/bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h
index 3249569ce1..c8d244bbf3 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT Program/cde/library/cde_stats.h
@@ -16,13 +16,9 @@ extern char* CDE_nativeFunctionNames[];
#define CDE_NATIVE_ENTER(env, that, func) CDE_nativeFunctionCallCount[func]++;
#define CDE_NATIVE_EXIT(env, that, func)
#else
-#ifndef CDE_NATIVE_ENTER
#define CDE_NATIVE_ENTER(env, that, func)
-#endif
-#ifndef CDE_NATIVE_EXIT
#define CDE_NATIVE_EXIT(env, that, func)
#endif
-#endif
typedef enum {
DtActionArg_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h b/bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h
index 2b9693213a..69ef29a128 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT Program/gnome/library/gnome_stats.h
@@ -20,13 +20,9 @@ extern char* GNOME_nativeFunctionNames[];
#define GNOME_NATIVE_ENTER(env, that, func) GNOME_nativeFunctionCallCount[func]++;
#define GNOME_NATIVE_EXIT(env, that, func)
#else
-#ifndef GNOME_NATIVE_ENTER
#define GNOME_NATIVE_ENTER(env, that, func)
-#endif
-#ifndef GNOME_NATIVE_EXIT
#define GNOME_NATIVE_EXIT(env, that, func)
#endif
-#endif
typedef enum {
GnomeVFSMimeApplication_1sizeof_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java b/bundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java
index 234896fd78..3182c09a1b 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java
@@ -247,19 +247,16 @@ public static boolean launch (String fileName) {
public boolean execute (String fileName) {
if (fileName == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
int index = 0;
- boolean append = true;
String prefix = command, suffix = ""; //$NON-NLS-1$
while (index < ARGUMENTS.length) {
int i = command.indexOf (ARGUMENTS [index]);
if (i != -1) {
- append = false;
prefix = command.substring (0, i);
suffix = command.substring (i + ARGUMENTS [index].length (), command.length ());
break;
}
index++;
}
- if (append) fileName = " \"" + fileName + "\"";
String commandLine = prefix + fileName + suffix;
int hHeap = OS.GetProcessHeap ();
/* Use the character encoding for the default locale */
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/wpf/org/eclipse/swt/program/Program.java b/bundles/org.eclipse.swt/Eclipse SWT Program/wpf/org/eclipse/swt/program/Program.java
deleted file mode 100644
index 37a0b076c0..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/wpf/org/eclipse/swt/program/Program.java
+++ /dev/null
@@ -1,311 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.program;
-
-
-import java.io.IOException;
-
-import org.eclipse.swt.internal.*;
-import org.eclipse.swt.internal.wpf.*;
-import org.eclipse.swt.*;
-import org.eclipse.swt.graphics.*;
-
-/**
- * Instances of this class represent programs and
- * their associated file extensions in the operating
- * system.
- */
-public final class Program {
- String name;
- String command;
- String iconName;
-
-/**
- * Prevents uninitialized instances from being created outside the package.
- */
-Program () {
-}
-
-static int createDotNetString (String string) {
- if (string == null) return 0;
- int length = string.length ();
- char [] buffer = new char [length + 1];
- string.getChars (0, length, buffer, 0);
- return OS.gcnew_String (buffer);
-}
-
-static String createJavaString (int ptr) {
- int charArray = OS.String_ToCharArray (ptr);
- char[] chars = new char[OS.String_Length (ptr)];
- OS.memcpy (chars, charArray, chars.length * 2);
- OS.GCHandle_Free (charArray);
- return new String (chars);
-}
-
-/**
- * Finds the program that is associated with an extension.
- * The extension may or may not begin with a '.'. Note that
- * a <code>Display</code> must already exist to guarantee that
- * this method returns an appropriate result.
- *
- * @param extension the program extension
- * @return the program or <code>null</code>
- *
- * @exception IllegalArgumentException <ul>
- * <li>ERROR_NULL_ARGUMENT when extension is null</li>
- * </ul>
- */
-public static Program findProgram (String extension) {
- if (extension == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
- if (extension.length () == 0) return null;
- if (extension.charAt (0) != '.') extension = "." + extension; //$NON-NLS-1$
- int key = createDotNetString (extension);
- int classesRoot = OS.Registry_ClassesRoot ();
- int registryKey = OS.RegistryKey_OpenSubKey (classesRoot, key);
- OS.GCHandle_Free (key);
- OS.GCHandle_Free (classesRoot);
- if (registryKey == 0) return null;
- Program program = null;
- int value = OS.RegistryKey_GetValue (registryKey, 0);
- if (value != 0) {
- String string = createJavaString (value);
- program = getProgram (string);
- OS.GCHandle_Free (value);
- }
- OS.GCHandle_Free (registryKey);
- return program;
-}
-
-/**
- * Answer all program extensions in the operating system. Note
- * that a <code>Display</code> must already exist to guarantee
- * that this method returns an appropriate result.
- *
- * @return an array of extensions
- */
-public static String [] getExtensions () {
- //TODO
- return new String[0];
-}
-
-static String getKeyValue (String string, boolean expand) {
- int classesRoot = OS.Registry_ClassesRoot ();
- int key = createDotNetString (string);
- int registryKey = OS.RegistryKey_OpenSubKey (classesRoot, key);
- OS.GCHandle_Free (key);
- OS.GCHandle_Free (classesRoot);
- if (registryKey == 0) return null;
- String result = null;
- int value = OS.RegistryKey_GetValue (registryKey, 0);
- if (value != 0) {
- if (expand) {
- int expandedValue = OS.Environment_ExpandEnvironmentVariables (value);
- OS.GCHandle_Free (value);
- value = expandedValue;
- }
- result = createJavaString (value);
- OS.GCHandle_Free (value);
- }
- OS.GCHandle_Free (registryKey);
- return result;
-}
-
-static Program getProgram (String key) {
- /* Name */
- String name = getKeyValue (key, false);
- if (name == null || name.length () == 0) {
- name = key;
- }
-
- /* Command */
- String DEFAULT_COMMAND = "\\shell"; //$NON-NLS-1$
- String defaultCommand = getKeyValue (key + DEFAULT_COMMAND, true);
- if (defaultCommand == null || defaultCommand.length() == 0) defaultCommand = "open"; //$NON-NLS-1$
- String COMMAND = "\\shell\\" + defaultCommand + "\\command"; //$NON-NLS-1$
- String command = getKeyValue (key + COMMAND, true);
- if (command == null || command.length () == 0) return null;
-
- /* Icon */
- String DEFAULT_ICON = "\\DefaultIcon"; //$NON-NLS-1$
- String iconName = getKeyValue (key + DEFAULT_ICON, true);
- if (iconName == null) iconName = ""; //$NON-NLS-1$
-
- Program program = new Program ();
- program.name = name;
- program.command = command;
- program.iconName = iconName;
- return program;
-}
-
-/**
- * Answers all available programs in the operating system. Note
- * that a <code>Display</code> must already exist to guarantee
- * that this method returns an appropriate result.
- *
- * @return an array of programs
- */
-public static Program [] getPrograms () {
- //TODO compare results with win32.
- Program [] programs = new Program [1024];
- int classesRoot = OS.Registry_ClassesRoot ();
- int names = OS.RegistryKey_GetSubKeyNames (classesRoot);
- OS.GCHandle_Free (classesRoot);
- int length = OS.ICollection_Count (names);
- int count = 0;
- for (int i = 0; i < length; i++) {
- int name = OS.IList_default (names, i);
- String string = createJavaString (name);
- OS.GCHandle_Free (name);
- Program program = getProgram (string);
- if (program != null) {
- if (count == programs.length) {
- Program [] newPrograms = new Program [programs.length + 1024];
- System.arraycopy (programs, 0, newPrograms, 0, programs.length);
- programs = newPrograms;
- }
- programs [count++] = program;
- }
- }
- OS.GCHandle_Free (names);
- if (count != programs.length) {
- Program [] newPrograms = new Program [count];
- System.arraycopy (programs, 0, newPrograms, 0, count);
- programs = newPrograms;
- }
- return programs;
-}
-
-/**
- * Launches the executable associated with the file in
- * the operating system. If the file is an executable,
- * then the executable is launched. Note that a <code>Display</code>
- * must already exist to guarantee that this method returns
- * an appropriate result.
- *
- * @param fileName the file or program name
- * @return <code>true</code> if the file is launched, otherwise <code>false</code>
- *
- * @exception IllegalArgumentException <ul>
- * <li>ERROR_NULL_ARGUMENT when fileName is null</li>
- * </ul>
- */
-public static boolean launch (String fileName) {
- //TODO
- return false;
-}
-
-/**
- * Executes the program with the file as the single argument
- * in the operating system. It is the responsibility of the
- * programmer to ensure that the file contains valid data for
- * this program.
- *
- * @param fileName the file or program name
- * @return <code>true</code> if the file is launched, otherwise <code>false</code>
- *
- * @exception IllegalArgumentException <ul>
- * <li>ERROR_NULL_ARGUMENT when fileName is null</li>
- * </ul>
- */
-public boolean execute (String fileName) {
- if (fileName == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
- boolean quote = true;
- String prefix = command, suffix = ""; //$NON-NLS-1$
- int index = command.indexOf ("%1"); //$NON-NLS-1$
- if (index != -1) {
- int count=0;
- int i=index + 2, length = command.length ();
- while (i < length) {
- if (command.charAt (i) == '"') count++;
- i++;
- }
- quote = count % 2 == 0;
- prefix = command.substring (0, index);
- suffix = command.substring (index + 2, length);
- }
- if (quote) fileName = " \"" + fileName + "\""; //$NON-NLS-1$ //$NON-NLS-2$
- try {
- Compatibility.exec(prefix + fileName + suffix);
- } catch (IOException e) {
- return false;
- }
- return true;
-}
-
-/**
- * Returns the receiver's image data. This is the icon
- * that is associated with the receiver in the operating
- * system.
- *
- * @return the image data for the program, may be null
- */
-public ImageData getImageData () {
- //TODO
- return null;
-}
-
-/**
- * Returns the receiver's name. This is as short and
- * descriptive a name as possible for the program. If
- * the program has no descriptive name, this string may
- * be the executable name, path or empty.
- *
- * @return the name of the program
- */
-public String getName () {
- return name;
-}
-
-/**
- * Compares the argument to the receiver, and returns true
- * if they represent the <em>same</em> object using a class
- * specific comparison.
- *
- * @param other the object to compare with this object
- * @return <code>true</code> if the object is the same as this object and <code>false</code> otherwise
- *
- * @see #hashCode()
- */
-public boolean equals(Object other) {
- if (this == other) return true;
- if (other instanceof Program) {
- final Program program = (Program) other;
- return name.equals(program.name) && command.equals(program.command)
- && iconName.equals(program.iconName);
- }
- return false;
-}
-
-/**
- * Returns an integer hash code for the receiver. Any two
- * objects that return <code>true</code> when passed to
- * <code>equals</code> must return the same value for this
- * method.
- *
- * @return the receiver's hash
- *
- * @see #equals(Object)
- */
-public int hashCode() {
- return name.hashCode() ^ command.hashCode() ^ iconName.hashCode();
-}
-
-/**
- * Returns a string containing a concise, human-readable
- * description of the receiver.
- *
- * @return a string representation of the program
- */
-public String toString () {
- return "Program {" + name + "}"; //$NON-NLS-1$ //$NON-NLS-2$
-}
-
-}

Back to the top