-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit_addprojectform.lfm
107 lines (107 loc) · 2.14 KB
/
unit_addprojectform.lfm
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 FormAddProject: TFormAddProject
Left = 280
Height = 155
Top = 734
Width = 400
BorderStyle = bsDialog
Caption = 'Add Project'
ClientHeight = 155
ClientWidth = 400
Position = poOwnerFormCenter
LCLVersion = '2.2.6.0'
object Label1: TLabel
Left = 24
Height = 16
Top = 16
Width = 82
Caption = 'Project Name'
ParentColor = False
end
object EditProjectName: TEdit
Left = 120
Height = 22
Hint = 'Name used to refer to this project definition'
Top = 10
Width = 264
TabOrder = 0
TextHint = 'My Project'
end
object Label2: TLabel
Left = 24
Height = 16
Top = 54
Width = 74
Caption = 'Project Path'
ParentColor = False
end
object EditProjectPath: TEdit
Left = 120
Height = 22
Hint = 'Path to the folder for this project definition'
Top = 48
Width = 224
ReadOnly = True
TabOrder = 1
TextHint = '/path/to/myproject'
end
object ButtonSelectProject: TButton
Left = 352
Height = 25
Hint = 'Select Flax Project'
Top = 45
Width = 32
Caption = '...'
OnClick = ButtonSelectProjectClick
TabOrder = 2
end
object ComboBoxEngines: TComboBox
Left = 120
Height = 20
Top = 80
Width = 260
ItemHeight = 19
ParentShowHint = False
ReadOnly = True
TabOrder = 3
TextHint = 'Select Flax Engine'
end
object Label3: TLabel
Left = 24
Height = 16
Top = 84
Width = 41
Caption = 'Engine'
ParentColor = False
end
object ButtonSaveProject: TButton
Left = 216
Height = 25
Top = 112
Width = 75
Caption = 'Save'
Default = True
OnClick = ButtonSaveProjectClick
TabOrder = 4
end
object ButtonCancelProject: TButton
Left = 304
Height = 25
Top = 112
Width = 75
Cancel = True
Caption = 'Cancel'
OnClick = ButtonCancelProjectClick
TabOrder = 5
end
object OpenDialogProject: TSelectDirectoryDialog
Title = 'Select Project Directory'
Left = 40
Top = 104
end
object OpenDialogProjectFile: TOpenDialog
Title = 'Select Project File'
DefaultExt = '.flaxproj'
Left = 152
Top = 104
end
end