Ooui-tws-port/Ooui.Forms/Forms.cs

112 lines
3.1 KiB
C#
Raw Normal View History

2017-11-09 07:12:59 +00:00
using System;
using System.Diagnostics;
using Xamarin.Forms;
using Xamarin.Forms.Internals;
using Ooui.Forms;
using System.IO;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
2017-11-09 09:38:19 +00:00
using Ooui;
2017-11-09 07:12:59 +00:00
namespace Xamarin.Forms
{
2017-11-09 21:03:56 +00:00
public static class Forms
{
public static bool IsInitialized { get; private set; }
2017-11-09 07:12:59 +00:00
2017-11-09 21:03:56 +00:00
public static void Init ()
{
if (IsInitialized)
return;
IsInitialized = true;
2017-11-09 07:12:59 +00:00
2017-11-09 21:03:56 +00:00
Log.Listeners.Add (new DelegateLogListener ((c, m) => Trace.WriteLine (m, c)));
2017-11-09 07:12:59 +00:00
2017-11-09 21:03:56 +00:00
Device.SetIdiom (TargetIdiom.Desktop);
Device.PlatformServices = new OouiPlatformServices ();
Device.Info = new OouiDeviceInfo ();
2017-11-09 07:12:59 +00:00
2017-11-09 21:03:56 +00:00
Registrar.RegisterAll (new[] {
typeof(ExportRendererAttribute),
2017-11-09 07:12:59 +00:00
//typeof(ExportCellAttribute),
//typeof(ExportImageSourceHandlerAttribute),
});
2017-11-09 21:03:56 +00:00
}
public static event EventHandler<ViewInitializedEventArgs> ViewInitialized;
public static void SendViewInitialized (this VisualElement self, Ooui.Element nativeView)
{
ViewInitialized?.Invoke (self, new ViewInitializedEventArgs { View = self, NativeView = nativeView });
}
class OouiDeviceInfo : DeviceInfo
{
public override Size PixelScreenSize => new Size (640, 480);
public override Size ScaledScreenSize => PixelScreenSize;
public override double ScalingFactor => 1;
}
class OouiPlatformServices : IPlatformServices
{
public bool IsInvokeRequired => false;
public string RuntimePlatform => "Ooui";
public void BeginInvokeOnMainThread (Action action)
{
Task.Run (action);
}
public Ticker CreateTicker ()
{
throw new NotImplementedException ();
}
public Assembly[] GetAssemblies ()
{
return AppDomain.CurrentDomain.GetAssemblies ();
}
public string GetMD5Hash (string input)
{
throw new NotImplementedException ();
}
public double GetNamedSize (NamedSize size, Type targetElementType, bool useOldSizes)
{
throw new NotImplementedException ();
}
public Task<Stream> GetStreamAsync (Uri uri, CancellationToken cancellationToken)
{
throw new NotImplementedException ();
}
public IIsolatedStorageFile GetUserStoreForApplication ()
{
throw new NotImplementedException ();
}
public void OpenUriAction (Uri uri)
{
throw new NotImplementedException ();
}
public void StartTimer (TimeSpan interval, Func<bool> callback)
{
throw new NotImplementedException ();
}
}
public class ViewInitializedEventArgs
{
public VisualElement View { get; set; }
public Ooui.Element NativeView { get; set; }
}
}
2017-11-09 07:12:59 +00:00
}