-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtbinobjform.lfm
209 lines (209 loc) · 4.63 KB
/
rtbinobjform.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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
object Form1: TForm1
Left = 491
Height = 459
Top = 358
Width = 746
AllowDropFiles = True
BorderIcons = [biSystemMenu, biMinimize]
ClientHeight = 459
ClientWidth = 746
Color = clForm
OnCreate = FormCreate
OnDropFiles = FormDropFiles
LCLVersion = '2.0.10.0'
object InFileButton: TButton
Left = 24
Height = 25
Top = 56
Width = 75
Caption = 'In File'
OnClick = InFileButtonClick
TabOrder = 0
end
object EditFileName: TEdit
Left = 120
Height = 23
Top = 56
Width = 352
Enabled = False
TabOrder = 1
end
object PublicLabel: TLabel
Left = 31
Height = 15
Top = 96
Width = 68
Caption = 'Public Name'
ParentColor = False
end
object EditPublicName: TEdit
Left = 120
Height = 23
Top = 88
Width = 160
MaxLength = 20
ParentFont = False
TabOrder = 2
end
object InfoLabel: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 0
Height = 32
Top = 0
Width = 746
Alignment = taCenter
Anchors = [akTop, akLeft, akRight]
AutoSize = False
Color = clAppWorkspace
Font.Color = clWhite
Font.Height = 34
ParentColor = False
ParentFont = False
Transparent = False
OptimalFill = True
end
object SaveAsButton: TButton
Left = 640
Height = 25
Top = 408
Width = 75
Caption = 'Save As'
OnClick = SaveAsButtonClick
TabOrder = 9
end
object PublicSizeLabel: TLabel
Left = 8
Height = 15
Top = 128
Width = 91
Caption = 'Public Size Name'
ParentColor = False
end
object EditPublicSizeName: TEdit
Left = 120
Height = 23
Top = 120
Width = 160
MaxLength = 20
ParentFont = False
TabOrder = 3
end
object SegmentNameLabel: TLabel
Left = 16
Height = 15
Top = 160
Width = 82
Caption = 'Segment Name'
ParentColor = False
end
object EditSegmentName: TEdit
Left = 120
Height = 23
Top = 152
Width = 160
Enabled = False
MaxLength = 20
ParentFont = False
TabOrder = 4
end
object ClassNameLabel: TLabel
Left = 36
Height = 15
Top = 192
Width = 62
Caption = 'Class Name'
ParentColor = False
end
object EditClassName: TEdit
Left = 120
Height = 23
Top = 184
Width = 160
Enabled = False
MaxLength = 20
ParentFont = False
TabOrder = 5
end
object ObjModeRadioGroup: TRadioGroup
Left = 491
Height = 200
Hint = 'Turbo Pascal Mode compatible with QuickPascal and FreePascal 8086'#13#10'Turbo C Mode compatible QuickC'
Top = 64
Width = 224
AutoFill = True
Caption = 'OBJ Mode'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 180
ClientWidth = 220
ItemIndex = 0
Items.Strings = (
'Turbo Pascal - BINOBJ'
'Turbo C - BGIOBJ'
'Open Watcom DOS 16 bit'
'Open Watcom DOS 32 bit'
'Amiga 68k Hunk (vbcc / freepascal)'
'QuickBasic/GWBASIC (bsave)'
'COFF 32 bit'
'TMT Pascal OBJ'
)
OnClick = ObjModeRadioGroupClick
ParentShowHint = False
ShowHint = True
TabOrder = 7
end
object FarCallCheckBox: TCheckBox
Left = 36
Height = 19
Hint = 'Segment Name must be blank'
Top = 222
Width = 96
BidiMode = bdRightToLeft
Caption = ' far calls '
Enabled = False
OnChange = FarCallCheckBoxChange
ParentBidiMode = False
TabOrder = 6
end
object AmigaMemRadioGroup: TRadioGroup
Left = 494
Height = 96
Top = 280
Width = 221
AutoFill = True
Caption = 'Amiga Memory Type'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 76
ClientWidth = 217
Enabled = False
ItemIndex = 0
Items.Strings = (
'Any'
'Chip'
'Fast'
)
OnClick = AmigaMemRadioGroupClick
TabOrder = 8
end
object OpenDialog: TOpenDialog
Left = 640
end
object SaveDialog: TSaveDialog
Options = [ofOverwritePrompt, ofEnableSizing, ofViewDetail]
Left = 688
end
end