Subversion Repositories checksum-tools

Rev

Rev 2 | Details | Compare with Previous | 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
17 daniel-mar 24
    Height = 26
2 daniel-mar 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
  end
55
  object cbVerbose: TCheckBox
56
    Left = 8
57
    Top = 59
58
    Width = 105
59
    Height = 17
60
    Caption = 'Verbose output'
61
    TabOrder = 2
62
  end
63
  object LabeledEdit1: TLabeledEdit
64
    Left = 8
65
    Top = 32
66
    Width = 985
67
    Height = 21
68
    Anchors = [akLeft, akTop, akRight]
69
    EditLabel.Width = 91
70
    EditLabel.Height = 13
71
    EditLabel.Caption = 'Directory to check:'
72
    TabOrder = 3
73
  end
74
  object cbWarnChecksumFileMissing: TCheckBox
75
    Left = 8
76
    Top = 82
77
    Width = 353
78
    Height = 17
79
    Caption = 'Warning if directory with files does not contain a checksum file'
80
    Checked = True
81
    State = cbChecked
82
    TabOrder = 4
83
  end
84
  object cbWarningMissingChecksumFileEntry: TCheckBox
85
    Left = 8
86
    Top = 105
87
    Width = 417
88
    Height = 17
89
    Caption = 
90
      'If checksum file is present: Warn if there are files which do no' +
91
      't have a checksum'
92
    Checked = True
93
    State = cbChecked
94
    TabOrder = 5
95
  end
96
  object cbWarnVanishedFile: TCheckBox
97
    Left = 8
98
    Top = 128
99
    Width = 401
100
    Height = 17
101
    Caption = 
102
      'If checksum file is present: Warn if files with checksum entries' +
103
      ' vanished'
104
    Checked = True
105
    State = cbChecked
106
    TabOrder = 6
107
  end
108
  object cbWarnChecksumMismatch: TCheckBox
109
    Left = 8
110
    Top = 151
111
    Width = 417
112
    Height = 17
113
    Caption = 
114
      'If checksum file is present: Warn if a checksum does not match t' +
115
      'he checksum file'
116
    Checked = True
117
    State = cbChecked
118
    TabOrder = 7
119
  end
120
  object RadioGroup1: TRadioGroup
121
    Left = 440
122
    Top = 72
123
    Width = 105
124
    Height = 97
125
    Caption = 'Method'
126
    ItemIndex = 0
127
    Items.Strings = (
128
      'SFV (CRC32)'
129
      'MD5')
130
    TabOrder = 8
131
  end
132
end