fix / suppress all remaining errors
This commit is contained in:
parent
35337cf3ea
commit
0bd7c40af2
9 changed files with 333 additions and 9200 deletions
|
@ -14,13 +14,13 @@ namespace XeroBrowser
|
|||
{
|
||||
public class DisplayHandler : IDisplayHandler
|
||||
{
|
||||
|
||||
public FrmBrowser Frmref;
|
||||
private readonly FrmBrowser _frmref;
|
||||
public DisplayHandler(FrmBrowser frm)
|
||||
{
|
||||
Frmref = frm;
|
||||
_frmref = frm;
|
||||
}
|
||||
public static Icon BytesToIcon(byte[] bytes)
|
||||
|
||||
private static Icon BytesToIcon(byte[] bytes)
|
||||
{
|
||||
using (MemoryStream ms = new MemoryStream(bytes))
|
||||
{
|
||||
|
@ -54,10 +54,10 @@ namespace XeroBrowser
|
|||
{
|
||||
WebClient wc = new WebClient();
|
||||
byte[] buffer = wc.DownloadData(urls[0]);
|
||||
Frmref.Icon = BytesToIcon(buffer);
|
||||
Frmref.Update();
|
||||
Frmref.ParentTabs.UpdateThumbnailPreviewIcon(Frmref.ParentTabs.Tabs.Single(t => t.Content == Frmref));
|
||||
Frmref.ParentTabs.RedrawTabs();
|
||||
_frmref.Icon = BytesToIcon(buffer);
|
||||
_frmref.Update();
|
||||
_frmref.ParentTabs.UpdateThumbnailPreviewIcon(_frmref.ParentTabs.Tabs.Single(t => t.Content == _frmref));
|
||||
_frmref.ParentTabs.RedrawTabs();
|
||||
|
||||
|
||||
}
|
||||
|
@ -67,17 +67,17 @@ namespace XeroBrowser
|
|||
WebClient wc = new WebClient();
|
||||
Uri furi = new Uri(chromiumWebBrowser.Address);
|
||||
byte[] buffer = wc.DownloadData(furi.GetLeftPart(UriPartial.Authority) +"/favicon.ico");
|
||||
Frmref.Icon = BytesToIcon(buffer);
|
||||
Frmref.Update();
|
||||
Frmref.ParentTabs.UpdateThumbnailPreviewIcon(Frmref.ParentTabs.Tabs.Single(t => t.Content == Frmref));
|
||||
Frmref.ParentTabs.RedrawTabs();
|
||||
_frmref.Icon = BytesToIcon(buffer);
|
||||
_frmref.Update();
|
||||
_frmref.ParentTabs.UpdateThumbnailPreviewIcon(_frmref.ParentTabs.Tabs.Single(t => t.Content == _frmref));
|
||||
_frmref.ParentTabs.RedrawTabs();
|
||||
}
|
||||
catch (Exception){
|
||||
ComponentResourceManager resources = new ComponentResourceManager(typeof(FrmBrowser));
|
||||
Frmref.Icon = ((Icon)(resources.GetObject("$this.Icon")));
|
||||
Frmref.Update();
|
||||
Frmref.ParentTabs.UpdateThumbnailPreviewIcon(Frmref.ParentTabs.Tabs.Single(t => t.Content == Frmref));
|
||||
Frmref.ParentTabs.RedrawTabs();
|
||||
_frmref.Icon = ((Icon)(resources.GetObject("$this.Icon")));
|
||||
_frmref.Update();
|
||||
_frmref.ParentTabs.UpdateThumbnailPreviewIcon(_frmref.ParentTabs.Tabs.Single(t => t.Content == _frmref));
|
||||
_frmref.ParentTabs.RedrawTabs();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,6 +8,7 @@ using System.IO;
|
|||
using System.Windows.Forms;
|
||||
using CefSharp;
|
||||
using Timer = System.Threading.Timer;
|
||||
// ReSharper disable NotAccessedField.Local
|
||||
|
||||
namespace XeroBrowser
|
||||
{
|
||||
|
@ -17,26 +18,26 @@ namespace XeroBrowser
|
|||
|
||||
public event EventHandler<DownloadItem> OnDownloadUpdatedFired;
|
||||
|
||||
public FrmBrowser Frmref;
|
||||
private readonly FrmBrowser _frmref;
|
||||
public DownloadHandler(FrmBrowser frm)
|
||||
{
|
||||
Frmref = frm;
|
||||
_frmref = frm;
|
||||
}
|
||||
|
||||
public DownloadProgress DownloadProgress = new DownloadProgress();
|
||||
public DownloadItem DownloadItem;
|
||||
private readonly DownloadProgress _downloadProgress = new DownloadProgress();
|
||||
private DownloadItem _downloadItem;
|
||||
public void OnBeforeDownload(IWebBrowser chromiumWebBrowser, IBrowser browser, DownloadItem downloadItem, IBeforeDownloadCallback callback)
|
||||
{
|
||||
OnBeforeDownloadFired?.Invoke(this, downloadItem);
|
||||
|
||||
this.DownloadItem = downloadItem;
|
||||
this._downloadItem = downloadItem;
|
||||
|
||||
try
|
||||
{
|
||||
Frmref.Invoke((Action)delegate
|
||||
_frmref.Invoke((Action)delegate
|
||||
{
|
||||
DownloadProgress.Show();
|
||||
DownloadProgress.FormClosing += DownloadProgress_FormClosing;
|
||||
_downloadProgress.Show();
|
||||
_downloadProgress.FormClosing += DownloadProgress_FormClosing;
|
||||
});
|
||||
}
|
||||
catch (ObjectDisposedException){}
|
||||
|
@ -53,10 +54,10 @@ namespace XeroBrowser
|
|||
|
||||
private void DownloadProgress_FormClosing(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
DownloadItem.IsCancelled = true;
|
||||
_downloadItem.IsCancelled = true;
|
||||
}
|
||||
|
||||
public Timer Fivesecondtimer;
|
||||
private Timer _fivesecondtimer;
|
||||
public void OnDownloadUpdated(IWebBrowser chromiumWebBrowser, IBrowser browser, DownloadItem downloadItem, IDownloadItemCallback callback)
|
||||
{
|
||||
OnDownloadUpdatedFired?.Invoke(this, downloadItem);
|
||||
|
@ -64,15 +65,15 @@ namespace XeroBrowser
|
|||
|
||||
if (downloadItem.IsComplete)
|
||||
{
|
||||
Fivesecondtimer = new Timer(tcallback, null, 1000 * 5, 1000 * 5);
|
||||
_fivesecondtimer = new Timer(tcallback, null, 1000 * 5, 1000 * 5);
|
||||
}
|
||||
|
||||
|
||||
Frmref.Invoke((Action)delegate {
|
||||
DownloadProgress.ProgressBar1.Value = downloadItem.PercentComplete;
|
||||
DownloadProgress.ProgressPrecentage.Text = downloadItem.PercentComplete + @"% " + (downloadItem.ReceivedBytes / 0x100000) + @"MB / " + (downloadItem.TotalBytes / 0x100000) + @"MB";
|
||||
DownloadProgress.ProgressFileName.Text = Path.GetFileName(downloadItem.FullPath);
|
||||
DownloadProgress.Update();
|
||||
_frmref.Invoke((Action)delegate {
|
||||
_downloadProgress.ProgressBar1.Value = downloadItem.PercentComplete;
|
||||
_downloadProgress.ProgressPrecentage.Text = downloadItem.PercentComplete + @"% " + (downloadItem.ReceivedBytes / 0x100000) + @"MB / " + (downloadItem.TotalBytes / 0x100000) + @"MB";
|
||||
_downloadProgress.ProgressFileName.Text = Path.GetFileName(downloadItem.FullPath);
|
||||
_downloadProgress.Update();
|
||||
try { } catch (InvalidAsynchronousStateException){}
|
||||
});
|
||||
}
|
||||
|
@ -80,9 +81,9 @@ namespace XeroBrowser
|
|||
private void tcallback(object state)
|
||||
{
|
||||
try {
|
||||
Frmref.Invoke((Action)delegate
|
||||
_frmref.Invoke((Action)delegate
|
||||
{
|
||||
DownloadProgress.Close();
|
||||
_downloadProgress.Close();
|
||||
});
|
||||
}
|
||||
catch (InvalidOperationException){}
|
||||
|
|
|
@ -11,7 +11,7 @@ namespace XeroBrowser
|
|||
{
|
||||
public static AppContainer Container;
|
||||
|
||||
public static TitleBarTabsApplicationContext ApplicationContext;
|
||||
private static TitleBarTabsApplicationContext _applicationContext;
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
|
@ -52,9 +52,9 @@ namespace XeroBrowser
|
|||
Container.SelectedTabIndex = 0;
|
||||
|
||||
try {
|
||||
ApplicationContext = new TitleBarTabsApplicationContext();
|
||||
ApplicationContext.Start(Container);
|
||||
Application.Run(ApplicationContext);
|
||||
_applicationContext = new TitleBarTabsApplicationContext();
|
||||
_applicationContext.Start(Container);
|
||||
Application.Run(_applicationContext);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
|
|
@ -6,12 +6,13 @@ using Bunifu.Utils;
|
|||
using CefSharp;
|
||||
using EasyTabs;
|
||||
using XeroBrowser.Properties;
|
||||
// ReSharper disable PossibleNullReferenceException
|
||||
|
||||
namespace XeroBrowser
|
||||
{
|
||||
public partial class FrmBrowser : Form
|
||||
{
|
||||
Uri _fileUri;
|
||||
private readonly Uri _fileUri;
|
||||
// Uri _fileUri2;
|
||||
public FrmBrowser()
|
||||
{
|
||||
|
@ -29,13 +30,8 @@ namespace XeroBrowser
|
|||
}
|
||||
|
||||
|
||||
public TitleBarTabs ParentTabs
|
||||
{
|
||||
get
|
||||
{
|
||||
return (ParentForm as TitleBarTabs);
|
||||
}
|
||||
}
|
||||
public TitleBarTabs ParentTabs => (ParentForm as TitleBarTabs);
|
||||
|
||||
private void btnForward_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (chromiumWebBrowser1.CanGoForward) chromiumWebBrowser1.Forward();
|
||||
|
@ -78,14 +74,7 @@ namespace XeroBrowser
|
|||
{
|
||||
if (txtSearchOrUrl != null && chromiumWebBrowser1 != null)
|
||||
{
|
||||
if (!chromiumWebBrowser1.Address.EndsWith(_fileUri.ToString()))
|
||||
{
|
||||
txtSearchOrUrl.Text = chromiumWebBrowser1.Address;
|
||||
}
|
||||
else
|
||||
{
|
||||
txtSearchOrUrl.Text = "";
|
||||
}
|
||||
txtSearchOrUrl.Text = !chromiumWebBrowser1.Address.EndsWith(_fileUri.ToString()) ? chromiumWebBrowser1.Address : "";
|
||||
}
|
||||
});
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,10 +1,5 @@
|
|||
/*!
|
||||
* Webflow: Front-end site library
|
||||
* @license MIT
|
||||
* Inline scripts may access the api using an async handler:
|
||||
* var Webflow = Webflow || [];
|
||||
* Webflow.push(readyFunction);
|
||||
*/
|
||||
// noinspection InfiniteRecursionJS,JSPotentiallyInvalidConstructorUsage,JSUnusedGlobalSymbols,RegExpRedundantEscape,JSPotentiallyInvalidUsageOfThis,ExceptionCaughtLocallyJS,JSReferencingMutableVariableFromClosure,HtmlRequiredAltAttribute,JSAssignmentUsedAsCondition,FallThroughInSwitchStatementJS,JSSwitchVariableDeclarationIssue,StatementWithEmptyBodyJS,JSSuspiciousNameCombination,UnreachableCodeJS,ThrowInsideFinallyBlockJS,JSVoidFunctionReturnValueUsed,ES6ConvertVarToLetConst,JSDeprecatedSymbols,JSCheckFunctionSignatures,JSValidateTypes,JSUnresolvedFunction,BadExpressionStatementJS
|
||||
|
||||
! function(t) {
|
||||
var e = {};
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
14
XeroBrowser.sln.DotSettings
Normal file
14
XeroBrowser.sln.DotSettings
Normal file
|
@ -0,0 +1,14 @@
|
|||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=bunifu/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=cpprestsdk/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=disneyplus/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Drms/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=fivesecondtimer/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=frmref/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=furi/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=KHTML/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=loaderror/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Rickroll/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=rickrolled/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=sourceid/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=tcallback/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
|
Reference in a new issue