forked from abc874/ca2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UCutApplicationBase.dfm
104 lines (104 loc) · 2.17 KB
/
UCutApplicationBase.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
object frmCutApplicationBase: TfrmCutApplicationBase
Left = 0
Top = 0
Width = 385
Height = 160
Constraints.MinHeight = 160
Constraints.MinWidth = 385
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Microsoft Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
TabOrder = 0
TabStop = True
DesignSize = (
385
160)
object lblAppPath: TLabel
Left = 6
Top = 3
Width = 22
Height = 13
Caption = 'Path'
end
object lblTempDir: TLabel
Left = 6
Top = 49
Width = 59
Height = 13
Caption = 'Temp Folder'
end
object edtPath: TEdit
Left = 6
Top = 22
Width = 348
Height = 21
Anchors = [akLeft, akTop, akRight]
ReadOnly = True
TabOrder = 0
end
object btnBrowsePath: TButton
Left = 360
Top = 22
Width = 22
Height = 21
Anchors = [akTop, akRight]
Caption = '...'
TabOrder = 1
OnClick = btnBrowsePathClick
end
object edtTempDir: TEdit
Left = 6
Top = 68
Width = 348
Height = 21
Anchors = [akLeft, akTop, akRight]
ReadOnly = True
TabOrder = 2
end
object btnBrowseTempDir: TButton
Left = 360
Top = 68
Width = 22
Height = 21
Anchors = [akTop, akRight]
Caption = '...'
TabOrder = 3
OnClick = btnBrowseTempDirClick
end
object cbRedirectOutput: TJvCheckBox
Left = 6
Top = 95
Width = 172
Height = 17
Caption = 'Redirect Output to Cut Assistant'
TabOrder = 4
LinkedControls = <>
end
object cbShowAppWindow: TJvCheckBox
Left = 6
Top = 118
Width = 181
Height = 17
Caption = 'Show original Application Window'
TabOrder = 5
LinkedControls = <>
end
object cbCleanUp: TJvCheckBox
Left = 6
Top = 141
Width = 166
Height = 17
Caption = 'Delete Temp Files after Cutting'
TabOrder = 6
LinkedControls = <>
end
object selectFileDlg: TOpenDialog
Options = [ofHideReadOnly, ofNoChangeDir, ofPathMustExist, ofFileMustExist, ofEnableSizing]
Left = 352
Top = 128
end
end