forked from jrsoftware/issrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompWizardFile.dfm
151 lines (151 loc) · 3.18 KB
/
CompWizardFile.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
object WizardFileForm: TWizardFileForm
Left = 284
Top = 219
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Script Wizard File'
ClientHeight = 297
ClientWidth = 350
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object RequiredLabel1: TNewStaticText
Left = 8
Top = 271
Width = 21
Height = 14
Caption = 'bold'
Enabled = False
TabOrder = 4
end
object RequiredLabel2: TNewStaticText
Left = 36
Top = 271
Width = 51
Height = 14
Caption = ' = required'
Enabled = False
TabOrder = 5
end
object OKButton: TButton
Left = 188
Top = 265
Width = 73
Height = 23
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 1
OnClick = OKButtonClick
end
object CancelButton: TButton
Left = 268
Top = 265
Width = 73
Height = 23
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
object GroupBox2: TGroupBox
Left = 8
Top = 108
Width = 333
Height = 149
Caption = ' Destination '
TabOrder = 0
object DestRootDirLabel: TNewStaticText
Left = 12
Top = 20
Width = 112
Height = 14
Caption = 'Destination &base folder:'
FocusControl = DestRootDirComboBox
TabOrder = 0
end
object DestRootDirComboBox: TComboBox
Left = 12
Top = 40
Width = 309
Height = 21
Style = csDropDownList
DropDownCount = 12
ItemHeight = 13
TabOrder = 1
OnChange = DestRootDirComboBoxChange
end
object DestRootDirEdit: TEdit
Left = 12
Top = 68
Width = 309
Height = 21
TabOrder = 2
end
object SubDirLabel: TNewStaticText
Left = 12
Top = 96
Width = 103
Height = 14
Caption = 'Destination &subfolder:'
FocusControl = DestSubDirEdit
TabOrder = 3
end
object DestSubDirEdit: TEdit
Left = 12
Top = 116
Width = 309
Height = 21
TabOrder = 4
end
end
object GroupBox1: TGroupBox
Left = 8
Top = 8
Width = 333
Height = 93
Caption = ' Source '
TabOrder = 3
object SourceLabel: TNewStaticText
Left = 12
Top = 20
Width = 95
Height = 14
Caption = '&Source file or folder:'
Enabled = False
TabOrder = 0
end
object SourceEdit: TEdit
Left = 12
Top = 40
Width = 309
Height = 21
Color = clBtnFace
ReadOnly = True
TabOrder = 1
end
object RecurseSubDirsCheck: TCheckBox
Left = 12
Top = 68
Width = 141
Height = 17
Caption = '&Recurse subfolders'
TabOrder = 2
OnClick = RecurseSubDirsCheckClick
end
object CreateAllSubDirsCheck: TCheckBox
Left = 156
Top = 68
Width = 165
Height = 17
Caption = '&Include empty subfolders'
TabOrder = 3
end
end
end