mixedreality/com.microsoft.mixedreality..../Runtime/Platform/WebViewNative.cs

161 lines
9.4 KiB
C#

using System;
using System.Runtime.InteropServices;
namespace Microsoft.MixedReality.WebView
{
using WebViewInstancePtr = System.IntPtr;
using WebViewTexturePtr = System.IntPtr;
using ComNativePointer = System.IntPtr;
using PermissionStatePtr = System.IntPtr;
internal static class WebViewNative
{
private const string DLL_NAME = "MicrosoftWebViewUnityPlugin";
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct WebViewWindowFeatures
{
public bool HasSize;
public uint Height;
public uint Width;
};
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void TextureAvailableDelegate([In] WebViewInstancePtr instanceId, [In]WebViewTexturePtr texturePtr);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void UrlChangedDelegate([In] WebViewInstancePtr instanceId, [In][MarshalAs(UnmanagedType.LPWStr)] string url);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void PostMessageToUnityDelegate([In] WebViewInstancePtr instanceId, [In][MarshalAs(UnmanagedType.LPWStr)] string message);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void NavigationButtonStatusUpdatedDelegate([In] WebViewInstancePtr instanceId, [In] bool enabled);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void WindowCloseRequestedDelegate([In] WebViewInstancePtr instanceId);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void NewWindowRequestedDelegate([In] WebViewInstancePtr instanceId, [In][MarshalAs(UnmanagedType.LPWStr)] string uri);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void OnReadyDelegate([In] WebViewInstancePtr instanceId);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void NavigationBlockedDelegate([In] WebViewInstancePtr instanceId, [In][MarshalAs(UnmanagedType.LPWStr)] string uri);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void NavigationStartingDelegate([In] WebViewInstancePtr instanceId, [In] Int64 navigationId, [In][MarshalAs(UnmanagedType.LPWStr)] string uri);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void NavigationCompletedDelegate([In] WebViewInstancePtr instanceId, [In] Int64 navigationId, [In] bool succeeded);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void DocumentTitleChanged([In] WebViewInstancePtr instanceId, [In][MarshalAs(UnmanagedType.LPWStr)] string newTitle);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void NonDefaultPermissionSettingEnumDelegate([In] WebViewInstancePtr instanceId, [In][MarshalAs(UnmanagedType.LPWStr)] string origin, [In] int kind, [In] int state, [In] bool enumerationComplete);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate bool PermissionRequestedDelegate([In] WebViewInstancePtr instanceId, [In][MarshalAs(UnmanagedType.LPWStr)] string origin, [In] bool userInitiated, [In] int kind, [In] PermissionStatePtr state);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void ActivateKeyboard();
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void DeactivateKeyboard();
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetWebViewUrl(WebViewInstancePtr instanceId, string url);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void GoBackOnWebView(WebViewInstancePtr instanceId);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void GoForwardOnWebView(WebViewInstancePtr instanceId);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern WebViewInstancePtr InitializeWebView(int w, int h, string parentHWNDHint, ref int errorCode);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern WebViewTexturePtr GetOutputTexture(WebViewInstancePtr instanceId);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void DestroyWebView(WebViewInstancePtr instanceId);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetWebViewSize(WebViewInstancePtr instanceId, int w, int h);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetWebViewContentScale(WebViewInstancePtr instanceId, double scale);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern IntPtr GetRenderEventFunc();
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetTextureAvailableCallback(WebViewInstancePtr instanceId, TextureAvailableDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetUrlChangedCallback(WebViewInstancePtr instanceId, UrlChangedDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetCanGoBackUpdatedCallback(WebViewInstancePtr instanceId, NavigationButtonStatusUpdatedDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetCanGoForwardUpdatedCallback(WebViewInstancePtr instanceId, NavigationButtonStatusUpdatedDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetNewWindowRequestedCallback(WebViewInstancePtr instanceId, NewWindowRequestedDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetWindowCloseRequestedCallback(WebViewInstancePtr instanceId, WindowCloseRequestedDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetReadyCallback(WebViewInstancePtr instanceId, OnReadyDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetNavigationBlockedCallback(WebViewInstancePtr instanceId, NavigationBlockedDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetNavigationStartingCallback(WebViewInstancePtr instanceId, NavigationStartingDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetNavigationCompletedCallback(WebViewInstancePtr instanceId, NavigationCompletedDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetDocumentTitleChangedCallback(WebViewInstancePtr instanceId, DocumentTitleChanged callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void InvokeScript(WebViewInstancePtr instanceId, string script);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void HandlePointerInput(WebViewInstancePtr instanceId, int x, int y, int device, int pointerEvent, int pointerButton, int mouseWheel);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetPostMessageCallback(WebViewInstancePtr instanceId, PostMessageToUnityDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void PostWebMessage(WebViewInstancePtr instanceId, string url, bool isJSON);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void LoadHTMLContent(WebViewInstancePtr instanceId, string htmlContent);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetVirtualHostMapping(WebViewInstancePtr instanceId, string hostName, string folderPath);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void ReleaseFocus(WebViewInstancePtr instanceId);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void GetNonDefaultPermissionSettings(WebViewInstancePtr instanceId, NonDefaultPermissionSettingEnumDelegate settingFoundCallback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetPermissionState(WebViewInstancePtr instanceId, string origin, int kind, int state);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern void SetPermissionRequestedCallback(WebViewInstancePtr instanceId, PermissionRequestedDelegate callback);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.StdCall)]
public static extern ComNativePointer GetNativePointer(WebViewInstancePtr instanceId);
}
}