The gap between rows in the form.
The adjustment made to the rows.
The gap between the two columns.
The adjustment made to the left column.
The form layout lays its children out in two columns, where the children in the left column (which are usually titles) are right adjusted whilst the children in the right column are left adjusted.
This class has been superseded by grid-layout, and will probably be removed at some point in the future. The examples below demonstrate the use of grid layouts as an alternative to forms.
(setq children (list
"Button:"
(make-instance 'capi:push-button
:text "Press Me")
"Enter Text:"
(make-instance 'capi:text-input-pane)
"List:"
(make-instance 'capi:list-panel
:items '(1 2 3))))
(capi:contain (make-instance
'capi:grid-layout
:description children
:x-adjust '(:right :left)
:y-adjust :center))