-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit_addengineform.lfm
90 lines (90 loc) · 1.86 KB
/
unit_addengineform.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
object FormAddEngine: TFormAddEngine
Left = 283
Height = 114
Top = 572
Width = 400
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Add Engine'
ClientHeight = 114
ClientWidth = 400
Position = poOwnerFormCenter
LCLVersion = '2.2.6.0'
object Label1: TLabel
Left = 24
Height = 16
Top = 16
Width = 80
Caption = 'Engine Name'
ParentColor = False
end
object Label2: TLabel
Left = 24
Height = 16
Top = 48
Width = 72
Caption = 'Engine Path'
ParentColor = False
end
object EditEngineName: TEdit
Left = 112
Height = 22
Hint = 'Name used to refer to this engine definition'
Top = 10
Width = 272
ParentShowHint = False
ShowHint = True
TabOrder = 0
TextHint = 'Flax Engine v6404'
end
object EditEnginePath: TEdit
Left = 112
Height = 22
Hint = 'Path to the Flax Editor for this engine definition'
Top = 42
Width = 224
ParentShowHint = False
ShowHint = True
TabOrder = 1
TextHint = '/path/to/flaxeditor'
end
object ButtonCancelEngine: TButton
Left = 304
Height = 25
Top = 72
Width = 75
Cancel = True
Caption = 'Cancel'
OnClick = ButtonCancelEngineClick
TabOrder = 2
end
object ButtonSaveEngine: TButton
Left = 216
Height = 25
Top = 72
Width = 75
Caption = 'Save'
Default = True
OnClick = ButtonSaveEngineClick
TabOrder = 3
end
object ButtonSelectEngine: TButton
Left = 345
Height = 20
Hint = 'Select Flax Engine'
Top = 42
Width = 33
AutoSize = True
Caption = '...'
OnClick = ButtonSelectEngineClick
ParentShowHint = False
ShowHint = True
TabOrder = 4
end
object OpenDialogEngine: TOpenDialog
Title = 'Select Flax Engine'
Options = [ofPathMustExist, ofEnableSizing, ofViewDetail]
Left = 40
Top = 64
end
end