Subversion Repositories checksum-tools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
object Form1: TForm1
2
  Left = 0
3
  Top = 0
4
  Caption = 'Recursive MD5/SFV Directory Checksum checker'
5
  ClientHeight = 621
6
  ClientWidth = 1006
7
  Color = clBtnFace
8
  Font.Charset = DEFAULT_CHARSET
9
  Font.Color = clWindowText
10
  Font.Height = -11
11
  Font.Name = 'Tahoma'
12
  Font.Style = []
13
  OldCreateOrder = False
14
  OnShow = FormShow
15
  DesignSize = (
16
    1006
17
    621)
18
  PixelsPerInch = 96
19
  TextHeight = 13
20
  object Label1: TLabel
21
    Left = 8
22
    Top = 571
23
    Width = 958
24
    Height = 42
25
    Anchors = [akLeft, akRight, akBottom]
26
    Caption = 
27
      'Hints: MD5/SFV files can be created by TotalCommander or other t' +
28
      'ools (also recursively).  Multiple MD5/SFV files per directory a' +
29
      're not permitted.  To check directories with path names longer t' +
30
      'han 255 characters, use the "long filename" path format \\?\<GUI' +
31
      'D>\  (find out GUID by running "mountvol"), instead of the usual' +
32
      ' C:\  file name format.'
33
    WordWrap = True
34
  end
35
  object Button1: TButton
36
    Left = 776
37
    Top = 72
38
    Width = 217
39
    Height = 33
40
    Anchors = [akTop, akRight]
41
    Caption = 'Check'
42
    TabOrder = 0
43
    OnClick = Button1Click
44
  end
45
  object Memo1: TMemo
46
    Left = 8
47
    Top = 184
48
    Width = 985
49
    Height = 381
50
    Anchors = [akLeft, akTop, akRight, akBottom]
51
    ReadOnly = True
52
    ScrollBars = ssBoth
53
    TabOrder = 1
54
    ExplicitHeight = 376
55
  end
56
  object cbVerbose: TCheckBox
57
    Left = 8
58
    Top = 59
59
    Width = 105
60
    Height = 17
61
    Caption = 'Verbose output'
62
    TabOrder = 2
63
  end
64
  object LabeledEdit1: TLabeledEdit
65
    Left = 8
66
    Top = 32
67
    Width = 985
68
    Height = 21
69
    Anchors = [akLeft, akTop, akRight]
70
    EditLabel.Width = 91
71
    EditLabel.Height = 13
72
    EditLabel.Caption = 'Directory to check:'
73
    TabOrder = 3
74
  end
75
  object cbWarnChecksumFileMissing: TCheckBox
76
    Left = 8
77
    Top = 82
78
    Width = 353
79
    Height = 17
80
    Caption = 'Warning if directory with files does not contain a checksum file'
81
    Checked = True
82
    State = cbChecked
83
    TabOrder = 4
84
  end
85
  object cbWarningMissingChecksumFileEntry: TCheckBox
86
    Left = 8
87
    Top = 105
88
    Width = 417
89
    Height = 17
90
    Caption = 
91
      'If checksum file is present: Warn if there are files which do no' +
92
      't have a checksum'
93
    Checked = True
94
    State = cbChecked
95
    TabOrder = 5
96
  end
97
  object cbWarnVanishedFile: TCheckBox
98
    Left = 8
99
    Top = 128
100
    Width = 401
101
    Height = 17
102
    Caption = 
103
      'If checksum file is present: Warn if files with checksum entries' +
104
      ' vanished'
105
    Checked = True
106
    State = cbChecked
107
    TabOrder = 6
108
  end
109
  object cbWarnChecksumMismatch: TCheckBox
110
    Left = 8
111
    Top = 151
112
    Width = 417
113
    Height = 17
114
    Caption = 
115
      'If checksum file is present: Warn if a checksum does not match t' +
116
      'he checksum file'
117
    Checked = True
118
    State = cbChecked
119
    TabOrder = 7
120
  end
121
  object RadioGroup1: TRadioGroup
122
    Left = 440
123
    Top = 72
124
    Width = 105
125
    Height = 97
126
    Caption = 'Method'
127
    ItemIndex = 0
128
    Items.Strings = (
129
      'SFV (CRC32)'
130
      'MD5')
131
    TabOrder = 8
132
  end
133
end