-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.dfm
107 lines (107 loc) · 1.99 KB
/
Main.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
object Form1: TForm1
Left = 442
Top = 352
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
ClientHeight = 321
ClientWidth = 417
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 16
Width = 49
Height = 13
Caption = 'Select file:'
end
object GroupBox1: TGroupBox
Left = 8
Top = 64
Width = 385
Height = 145
Caption = 'Compression methods'
TabOrder = 0
object rbBestNRV2D: TRadioButton
Left = 16
Top = 78
Width = 249
Height = 25
Caption = 'Best with NRV2D'
TabOrder = 0
end
object rbBestNRV2B: TRadioButton
Left = 16
Top = 109
Width = 249
Height = 25
Caption = 'Best with NRV2B'
TabOrder = 1
end
object rbUltraBrute: TRadioButton
Left = 16
Top = 16
Width = 249
Height = 25
Caption = 'Ultra Brute'
TabOrder = 2
end
object rbBrute: TRadioButton
Left = 16
Top = 47
Width = 249
Height = 25
Caption = 'Brute'
TabOrder = 3
end
end
object txtSelected: TEdit
Left = 16
Top = 32
Width = 297
Height = 21
TabOrder = 1
end
object cmdBrowse: TButton
Left = 320
Top = 32
Width = 81
Height = 25
Caption = 'Browse...'
TabOrder = 2
OnClick = cmdBrowseClick
end
object cmdCompress: TButton
Left = 16
Top = 278
Width = 385
Height = 33
Caption = 'Compress'
TabOrder = 3
OnClick = cmdCompressClick
end
object GroupBox2: TGroupBox
Left = 16
Top = 215
Width = 385
Height = 57
Caption = 'Option'
TabOrder = 4
object chkBackup: TCheckBox
Left = 16
Top = 16
Width = 105
Height = 25
Caption = 'Make Backup'
TabOrder = 0
end
end
object Dialog: TOpenDialog
Left = 368
Top = 64
end
end