This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPageSelectFolders.dfm
115 lines (115 loc) · 2.57 KB
/
PageSelectFolders.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
inherited SelectFoldersPage: TSelectFoldersPage
Left = 346
Top = 221
ActiveControl = edtBaseFolder
Caption = 'SelectFoldersPage'
ClientHeight = 232
ClientWidth = 412
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object grpPackagePattern: TGroupBox
AlignWithMargins = True
Left = 3
Top = 134
Width = 406
Height = 79
Align = alTop
Caption = 'Pattern to select package files '
TabOrder = 2
DesignSize = (
406
79)
object Label3: TLabel
Left = 12
Top = 51
Width = 98
Height = 13
Caption = 'Package File Pattern'
end
object Label2: TLabel
Left = 12
Top = 16
Width = 381
Height = 26
Anchors = [akLeft, akTop, akRight]
Caption =
'Specify a pattern that matches for the package files that are su' +
'itable for your delphi installation. ie: *d7.dpk for Delphi 7'
WordWrap = True
end
object cbPattern: TComboBox
Left = 116
Top = 48
Width = 277
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
Text = '*.dpk'
end
end
object grpBaseFolder: TGroupBox
AlignWithMargins = True
Left = 3
Top = 3
Width = 406
Height = 65
Align = alTop
Caption = 'Select Base Folder contains both Package and Source files'
TabOrder = 0
DesignSize = (
406
65)
object Label1: TLabel
Left = 12
Top = 16
Width = 56
Height = 13
Caption = 'Base Folder'
end
object btnSelectFolder: TButton
Left = 560
Top = 35
Width = 32
Height = 21
Anchors = [akTop, akRight]
Caption = '...'
TabOrder = 0
WordWrap = True
OnClick = btnSelectFolderClick
end
object edtBaseFolder: TEdit
Left = 12
Top = 35
Width = 381
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
OnChange = edtBaseFolderChange
end
end
object grpDelphiVersion: TGroupBox
AlignWithMargins = True
Left = 3
Top = 74
Width = 406
Height = 54
Align = alTop
Caption = 'Installed Delphi Versions'
TabOrder = 1
DesignSize = (
406
54)
object cbDelphiVersions: TComboBox
Left = 12
Top = 20
Width = 381
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
OnChange = cbDelphiVersionsChange
end
end
end