ShareX/ShareX.HelpersLib/Forms/HashCheckForm.cs

279 lines
8.7 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2020-02-05 20:19:48 +13:00
Copyright (c) 2007-2020 ShareX Team
2013-11-03 23:53:49 +13:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
2014-12-11 09:25:20 +13:00
using ShareX.HelpersLib.Properties;
2013-11-03 23:53:49 +13:00
using System;
using System.Drawing;
using System.Windows.Forms;
2014-12-11 09:25:20 +13:00
namespace ShareX.HelpersLib
2013-11-03 23:53:49 +13:00
{
public partial class HashCheckForm : Form
2013-11-03 23:53:49 +13:00
{
2020-09-13 12:45:40 +12:00
public bool CompareTwoFiles { get; private set; }
2013-11-03 23:53:49 +13:00
private HashCheck hashCheck;
private Translator translator;
2013-11-03 23:53:49 +13:00
public HashCheckForm()
{
InitializeComponent();
2019-06-25 06:36:16 +12:00
ShareXResources.ApplyTheme(this);
2013-11-03 23:53:49 +13:00
2020-09-13 12:45:40 +12:00
UpdateCompareControls();
2013-11-03 23:53:49 +13:00
cbHashType.Items.AddRange(Helpers.GetEnumDescriptions<HashType>());
cbHashType.SelectedIndex = (int)HashType.SHA1;
hashCheck = new HashCheck();
hashCheck.FileCheckProgressChanged += fileCheck_FileCheckProgressChanged;
hashCheck.FileCheckCompleted += fileCheck_FileCheckCompleted;
translator = new Translator();
2013-11-03 23:53:49 +13:00
}
#region File hash check
private void UpdateResult()
{
if (!string.IsNullOrEmpty(txtResult.Text) && !string.IsNullOrEmpty(txtTarget.Text))
{
if (txtResult.Text.Equals(txtTarget.Text, StringComparison.InvariantCultureIgnoreCase))
{
txtTarget.BackColor = Color.FromArgb(200, 255, 200);
}
else
{
txtTarget.BackColor = Color.FromArgb(255, 200, 200);
}
2019-06-24 01:59:48 +12:00
txtTarget.ForeColor = SystemColors.ControlText;
}
else
{
2019-06-24 01:59:48 +12:00
txtTarget.BackColor = txtResult.BackColor;
txtTarget.ForeColor = txtResult.ForeColor;
}
}
2020-09-13 12:45:40 +12:00
private void UpdateCompareControls()
{
lblFilePath2.Enabled = txtFilePath2.Enabled = btnFilePathBrowse2.Enabled = CompareTwoFiles;
if (CompareTwoFiles)
{
lblResult.Text = "Result of first file:";
lblTarget.Text = "Result of second file:";
}
else
{
lblResult.Text = "Result:";
lblTarget.Text = "Target:";
}
txtTarget.ReadOnly = CompareTwoFiles;
}
2013-11-03 23:53:49 +13:00
private void btnFilePathBrowse_Click(object sender, EventArgs e)
{
Helpers.BrowseFile(txtFilePath);
2013-11-03 23:53:49 +13:00
}
2020-09-13 12:45:40 +12:00
private void btnFilePathBrowse2_Click(object sender, EventArgs e)
{
Helpers.BrowseFile(txtFilePath2);
}
private void cbCompareTwoFiles_CheckedChanged(object sender, EventArgs e)
{
CompareTwoFiles = cbCompareTwoFiles.Checked;
UpdateCompareControls();
}
2013-11-03 23:53:49 +13:00
private void btnStartHashCheck_Click(object sender, EventArgs e)
{
if (hashCheck.IsWorking)
{
hashCheck.Stop();
}
else
{
HashType hashType = (HashType)cbHashType.SelectedIndex;
if (hashCheck.Start(txtFilePath.Text, hashType))
{
btnStartHashCheck.Text = Resources.Stop;
pbProgress.Value = 0;
2016-05-25 06:15:45 +12:00
txtResult.Text = "";
2013-11-03 23:53:49 +13:00
}
}
}
private void fileCheck_FileCheckProgressChanged(float progress)
{
pbProgress.Value = (int)progress;
lblProgressPercentage.Text = (int)progress + "%";
2013-11-03 23:53:49 +13:00
}
private void fileCheck_FileCheckCompleted(string result, bool cancelled)
{
btnStartHashCheck.Text = Resources.Start;
2013-11-03 23:53:49 +13:00
txtResult.Text = result.ToUpperInvariant();
}
private void txtResult_TextChanged(object sender, EventArgs e)
{
UpdateResult();
}
private void txtTarget_TextChanged(object sender, EventArgs e)
{
string target = txtTarget.Text;
if (!string.IsNullOrEmpty(target))
2013-11-03 23:53:49 +13:00
{
txtTarget.Text = target.RemoveWhiteSpaces().ToUpperInvariant();
txtTarget.Select(txtTarget.TextLength, 0);
2013-11-03 23:53:49 +13:00
}
UpdateResult();
2013-11-03 23:53:49 +13:00
}
private void txtResult_KeyDown(object sender, KeyEventArgs e)
{
if (e.Control && e.KeyCode == Keys.A)
{
txtResult.SelectAll();
}
}
private void tpFileHashCheck_DragEnter(object sender, DragEventArgs e)
2013-11-03 23:53:49 +13:00
{
if (e.Data.GetDataPresent(DataFormats.FileDrop, false))
{
e.Effect = DragDropEffects.Copy;
}
else
{
e.Effect = DragDropEffects.None;
}
}
private void tpFileHashCheck_DragDrop(object sender, DragEventArgs e)
2013-11-03 23:53:49 +13:00
{
if (e.Data.GetDataPresent(DataFormats.FileDrop, false))
{
string[] files = e.Data.GetData(DataFormats.FileDrop, false) as string[];
if (files != null && files.Length > 0)
{
txtFilePath.Text = files[0];
}
}
}
#endregion File hash check
#region Text conversions
private void FillConversionInfo()
2016-01-03 02:24:14 +13:00
{
FillConversionInfo(translator.Text);
}
private void FillConversionInfo(string text)
{
if (translator != null)
{
2016-01-03 02:24:14 +13:00
if (!string.IsNullOrEmpty(text))
{
translator.EncodeText(text);
txtHashCheckText.Text = translator.Text;
txtHashCheckBinary.Text = translator.BinaryText;
txtHashCheckHex.Text = translator.HexadecimalText;
txtHashCheckASCII.Text = translator.ASCIIText;
txtHashCheckBase64.Text = translator.Base64;
txtHashCheckHash.Text = translator.HashToString();
}
else
{
translator.Clear();
txtHashCheckText.Text = txtHashCheckBinary.Text = txtHashCheckHex.Text = txtHashCheckASCII.Text = txtHashCheckBase64.Text = txtHashCheckHash.Text = "";
}
}
}
private void btnHashCheckCopyAll_Click(object sender, EventArgs e)
{
2016-01-03 02:24:14 +13:00
if (translator != null)
{
string text = translator.ToString();
if (!string.IsNullOrEmpty(text))
{
ClipboardHelpers.CopyText(text);
}
}
}
private void btnHashCheckEncodeText_Click(object sender, EventArgs e)
{
2016-01-03 02:24:14 +13:00
FillConversionInfo(txtHashCheckText.Text);
}
private void btnHashCheckDecodeBinary_Click(object sender, EventArgs e)
{
2016-01-03 02:24:14 +13:00
string binary = txtHashCheckBinary.Text;
translator.DecodeBinary(binary);
FillConversionInfo();
txtHashCheckBinary.Text = binary;
}
private void btnHashCheckDecodeHex_Click(object sender, EventArgs e)
{
2016-01-03 02:24:14 +13:00
string hex = txtHashCheckHex.Text;
translator.DecodeHex(hex);
FillConversionInfo();
txtHashCheckHex.Text = hex;
}
private void btnHashCheckDecodeASCII_Click(object sender, EventArgs e)
{
2016-01-03 02:24:14 +13:00
string ascii = txtHashCheckASCII.Text;
translator.DecodeASCII(ascii);
FillConversionInfo();
txtHashCheckASCII.Text = ascii;
}
private void btnHashCheckDecodeBase64_Click(object sender, EventArgs e)
{
2016-01-03 02:24:14 +13:00
string base64 = txtHashCheckBase64.Text;
translator.DecodeBase64(base64);
FillConversionInfo();
txtHashCheckBase64.Text = base64;
}
#endregion Text conversions
2013-11-03 23:53:49 +13:00
}
}