1fd2pascal(1) forms description to pascal conversion fd2pascal(1)
2
3
4
6 fd2pascal - Free Pascal forms description to pascal program converter
7
8
10 fd2pascal [-compensate] [-altformat] [-main] [-callback] filename
11
12
14 fd2pascal reads a XForms designer file ( .fd ) and creates pascal code
15 to create the form described in the file. The pascal code is written to
16 a file with the same name as the input file, but with extension .pp if
17 a file with that name already exists, then it will be renamed to a file
18 with the extension .bak appended.
19
20
22 fd2pascal has a small number of options to control its behaviour:
23
24
25 -altformat
26 By default, a record type is emitted for the form definition,
27 with a field for each widget (object) on the form. The alternate
28 form declares a global variable for the form and each widget on
29 the form.
30
31 -compensate
32 If this option is given then a call to fl_adjust_form_size is
33 emitted after the form is created.
34
35 -callback
36 If this option is given, then a callback procedure is generated
37 for each widget on the form.
38
39 -main By default, a unit is created which can be included in the uses
40 clause of a program. If this option is specified, a program file
41 is emitted instead.
42
43
45 ppc386(1)
46
47
48
49
50Free Pascal 12 November 2004 fd2pascal(1)