Statement macro
Lays out a series of gadgets horizontally.
horizontally ([options]) {panes}+ end
duim-layouts
duim-layouts
This macro lays a series of gadgets out horizontally, creating the necessary layouts for you automatically.
The options are passed directly to the row layout, and thus can be any legitimate combinations of init-keywords for <row-layout>. If no options are specified, then the default values for row layout are used.
The panes argument consists of a number of Dylan expressions, each of which creates an instance of a gadget or layout that is to be included in the horizontal layout.
contain(horizontally ()
make(<button>, label: "Hello");
make(<button>, label: "World")
end);