using System; using System.ComponentModel; using System.IO; using System.Windows.Forms; using Bunifu.Utils; using CefSharp; using EasyTabs; using XeroBrowser.Properties; namespace XeroBrowser { public partial class FrmBrowser : Form { Uri _fileUri; // Uri _fileUri2; public FrmBrowser() { InitializeComponent(); chromiumWebBrowser1.DownloadHandler = new DownloadHandler(this); chromiumWebBrowser1.LifeSpanHandler = new LifeSpanHandler(); chromiumWebBrowser1.MenuHandler = new MenuHandler(); chromiumWebBrowser1.DisplayHandler = new DisplayHandler(this); string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "index.html"); _fileUri = new Uri(filePath); string fileUrl = _fileUri.AbsoluteUri; chromiumWebBrowser1.Load(fileUrl); txtSearchOrUrl.Text = ""; CheckForIllegalCrossThreadCalls = false; } public TitleBarTabs ParentTabs { get { return (ParentForm as TitleBarTabs); } } private void btnForward_Click(object sender, EventArgs e) { if (chromiumWebBrowser1.CanGoForward) chromiumWebBrowser1.Forward(); } public void ChangeUrl(string url) { chromiumWebBrowser1.Load(url); } private void btnBack_Click(object sender, EventArgs e) { if (chromiumWebBrowser1.CanGoBack) chromiumWebBrowser1.Back(); } private void btnRefresh_Click(object sender, EventArgs e) { chromiumWebBrowser1.Reload(); } private bool _isBlocked; private void chromiumWebBrowser1_LoadingStateChanged(object sender, LoadingStateChangedEventArgs e) { if (e.IsLoading) { loadingIndicator.Visible = true; btnRefresh.Visible = false; } else { loadingIndicator.Visible = false; btnRefresh.Visible = true; } try { Invoke((Action)delegate { if (txtSearchOrUrl != null && chromiumWebBrowser1 != null) { if (!chromiumWebBrowser1.Address.EndsWith(_fileUri.ToString())) { txtSearchOrUrl.Text = chromiumWebBrowser1.Address; } else { txtSearchOrUrl.Text = ""; } } }); } catch (ObjectDisposedException) { } catch (InvalidAsynchronousStateException) { } var uri = new Uri(chromiumWebBrowser1.Address); if (uri.Scheme == "file") { txtSearchOrUrl.IconLeft = Resources.local; } else if (uri.Scheme == "https") { txtSearchOrUrl.IconLeft = Resources.secure; } else { txtSearchOrUrl.IconLeft = Resources.insecure1; if (!_isBlocked) { MessageBox.Show(@"Warning: This site is insecure!, Your personal information may be at risk or hackers can install malicious software on your device.", @"Xero Browser", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } // if (txtSearchOrUrl.Text.Contains("netflix.com")) // { //MessageBox.Show("This site requires a DRM (Digital Rights Management) which Xero Browser does not support! TV Shows & Moves will not load.", "Xero Browser", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Warning); // chromiumWebBrowser1.Stop(); // cancel the navigation // isBlocked = true; // chromiumWebBrowser1.LoadHtml("
Being rickrolled is disabled.
", blockedUrl); } } } } private void chromiumWebBrowser1_TitleChanged(object sender, TitleChangedEventArgs e) { try { Invoke((Action)delegate { FindForm().Text = e.Title; }); } catch (ObjectDisposedException) { } } private void btnSettings_Click(object sender, EventArgs e) { Backdrop.Show(new FrmSettings()); } private void chromiumWebBrowser1_KeyDown(object sender, KeyEventArgs e) { } private void bunifuImageButton1_Click(object sender, EventArgs e) { chromiumWebBrowser1.ShowDevTools(); } private void chromiumWebBrowser1_LoadError(object sender, LoadErrorEventArgs e) { // string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "loaderror.html"); // _fileUri2 = new Uri(filePath); // string fileUrl = _fileUri2.AbsoluteUri; } private void txtSearchOrUrl_KeyUp(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter && txtSearchOrUrl.Text.Trim().Length > 0) { if (txtSearchOrUrl.Text.Contains(".")) { chromiumWebBrowser1.Load(txtSearchOrUrl.Text.Trim()); } else { chromiumWebBrowser1.Load("https://www.google.com/search?q=" + txtSearchOrUrl.Text.Trim().Replace(" ", "+") + "&sourceid=chrome&ie=UTF-8"); } } } private void txtSearchOrUrl_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { e.Handled = true; e.SuppressKeyPress = true; } } } }