mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
165 lines
5.1 KiB
ObjectPascal
165 lines
5.1 KiB
ObjectPascal
{
|
|
Double Commander
|
|
-------------------------------------------------------------------------
|
|
Verify checksum dialog
|
|
|
|
Copyright (C) 2009-2026 Alexander Koblov (alexx2000@mail.ru)
|
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
|
}
|
|
|
|
unit fCheckSumVerify;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
LCLType, Classes, SysUtils, Forms, Buttons, SynEdit, LMessages, uOSForms,
|
|
Graphics, uFileSourceCalcChecksumOperation, DCBasicTypes, Controls;
|
|
|
|
type
|
|
|
|
{ TfrmCheckSumVerify }
|
|
|
|
TfrmCheckSumVerify = class(TAloneForm)
|
|
btnClose: TBitBtn;
|
|
seCheckSumVerify: TSynEdit;
|
|
procedure FormClose(Sender: TObject; var CloseAction: TCloseAction);
|
|
procedure FormCreate(Sender: TObject);
|
|
procedure FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
|
procedure seCheckSumVerifySpecialLineColors(Sender: TObject; Line: integer;
|
|
var Special: boolean; var FG, BG: TColor);
|
|
private
|
|
procedure AddHeader(const aText: String; aCount: Integer; aColor: TColor);
|
|
procedure ProcessResult(const aResult: TStringList;
|
|
const aText: String; aColor: TColor);
|
|
protected
|
|
procedure CMThemeChanged(var Message: TLMessage); message CM_THEMECHANGED;
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
procedure ShowVerifyCheckSum(const VerifyResult: TVerifyChecksumResult);
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
uses
|
|
uLng, uGlobs, uClassesEx, uLog;
|
|
|
|
procedure ShowVerifyCheckSum(const VerifyResult: TVerifyChecksumResult);
|
|
var
|
|
aTotalCount: Integer;
|
|
begin
|
|
with TfrmCheckSumVerify.Create(Application) do
|
|
begin
|
|
seCheckSumVerify.Lines.BeginUpdate;
|
|
try
|
|
seCheckSumVerify.Lines.AddObject(rsCheckSumVerifyGeneral, TObject(PtrInt(clWindowText)));
|
|
aTotalCount:= VerifyResult.Success.Count + VerifyResult.ReadError.Count +
|
|
VerifyResult.Broken.Count + VerifyResult.Missing.Count;
|
|
|
|
// Add header information
|
|
AddHeader(rsCheckSumVerifyTotal, aTotalCount, clWindowText);
|
|
AddHeader(rsCheckSumVerifySuccess, VerifyResult.Success.Count, Ord(lmtSuccess));
|
|
AddHeader(rsCheckSumVerifyMissing, VerifyResult.Missing.Count, Ord(lmtError));
|
|
AddHeader(rsCheckSumVerifyBroken, VerifyResult.Broken.Count, Ord(lmtError));
|
|
AddHeader(rsCheckSumVerifyReadError, VerifyResult.ReadError.Count, Ord(lmtError));
|
|
|
|
// Add broken files
|
|
ProcessResult(VerifyResult.Broken, rsCheckSumVerifyBroken, Ord(lmtError));
|
|
// Add read error files
|
|
ProcessResult(VerifyResult.ReadError, rsCheckSumVerifyReadError, Ord(lmtError));
|
|
// Add missing files
|
|
ProcessResult(VerifyResult.Missing, rsCheckSumVerifyMissing, Ord(lmtError));
|
|
// Add good files
|
|
ProcessResult(VerifyResult.Success, rsCheckSumVerifySuccess, Ord(lmtSuccess));
|
|
finally
|
|
seCheckSumVerify.Lines.EndUpdate;
|
|
end;
|
|
|
|
Show;
|
|
end;
|
|
end;
|
|
|
|
{ TfrmCheckSumVerify }
|
|
|
|
procedure TfrmCheckSumVerify.FormClose(Sender: TObject; var CloseAction: TCloseAction);
|
|
begin
|
|
CloseAction:= caFree;
|
|
end;
|
|
|
|
procedure TfrmCheckSumVerify.FormCreate(Sender: TObject);
|
|
begin
|
|
seCheckSumVerify.FixDefaultKeystrokes;
|
|
FontOptionsToFont(gFonts[dcfLog], seCheckSumVerify.Font);
|
|
end;
|
|
|
|
procedure TfrmCheckSumVerify.FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
|
begin
|
|
if Key in [VK_RETURN, VK_ESCAPE] then
|
|
begin
|
|
Key:= 0;
|
|
Close;
|
|
end;
|
|
end;
|
|
|
|
procedure TfrmCheckSumVerify.seCheckSumVerifySpecialLineColors(Sender: TObject; Line: integer;
|
|
var Special: boolean; var FG, BG: TColor);
|
|
var
|
|
AColor: IntPtr;
|
|
begin
|
|
Special:= True;
|
|
AColor:= IntPtr(seCheckSumVerify.Lines.Objects[Line - 1]);
|
|
with gColors.Log^ do
|
|
begin
|
|
case AColor of
|
|
Ord(lmtError): FG:= ErrorColor;
|
|
Ord(lmtSuccess): FG:= SuccessColor;
|
|
else FG:= TColor(AColor);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
procedure TfrmCheckSumVerify.AddHeader(const aText: String; aCount: Integer; aColor: TColor);
|
|
begin
|
|
if aCount = 0 then aColor:= clWindowText;
|
|
seCheckSumVerify.Lines.AddObject(#32 + aText + #32 + IntToStr(aCount), TObject(PtrInt(aColor)));
|
|
end;
|
|
|
|
procedure TfrmCheckSumVerify.ProcessResult(const aResult: TStringList;
|
|
const aText: String; aColor: TColor);
|
|
var
|
|
I: Integer;
|
|
begin
|
|
if aResult.Count > 0 then
|
|
begin
|
|
seCheckSumVerify.Lines.Add(EmptyStr);
|
|
seCheckSumVerify.Lines.AddObject(aText, TObject(PtrInt(aColor)));
|
|
for I:= 0 to aResult.Count - 1 do
|
|
begin
|
|
seCheckSumVerify.Lines.AddObject(#32 + aResult[I], TObject(PtrInt(aColor)));
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
procedure TfrmCheckSumVerify.CMThemeChanged(var Message: TLMessage);
|
|
begin
|
|
seCheckSumVerify.Repaint;
|
|
end;
|
|
|
|
end.
|
|
|