mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reactive;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CefSharp;
|
|
using CefSharp.Wpf;
|
|
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using Wabbajack.Lib;
|
|
using Wabbajack.Lib.LibCefHelpers;
|
|
using Wabbajack.Lib.WebAutomation;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class WebBrowserVM : ViewModel, IBackNavigatingVM, IDisposable
|
|
{
|
|
[Reactive]
|
|
public string Instructions { get; set; }
|
|
|
|
public IWebBrowser Browser { get; } = new ChromiumWebBrowser();
|
|
public CefSharpWrapper Driver => new CefSharpWrapper(Browser);
|
|
|
|
[Reactive]
|
|
public ViewModel NavigateBackTarget { get; set; }
|
|
|
|
[Reactive]
|
|
public ReactiveCommand<Unit, Unit> BackCommand { get; set; }
|
|
|
|
private WebBrowserVM(string url = "http://www.wabbajack.org")
|
|
{
|
|
Instructions = "Wabbajack Web Browser";
|
|
}
|
|
|
|
public static async Task<WebBrowserVM> GetNew(string url = "http://www.wabbajack.org")
|
|
{
|
|
// Make sure libraries are extracted first
|
|
return new WebBrowserVM(url);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Browser.Dispose();
|
|
}
|
|
}
|
|
}
|