Layouting::Grid Class
class Layouting::GridArranges items in a two-dimensional grid (QGridLayout). More...
| Header: | #include <Grid> |
| Inherits: | Layouting::Layout |
Detailed Description
Items are added row by row. Call addRow() or use the br free function to start a new row. Individual items can span multiple columns or rows via Span or SpanAll wrappers, or by calling span() on the layout after adding the item. Multiple items that share a single grid cell without advancing the column counter can be grouped with GridCell.
See also Layouting::Form, Layouting::Span, Layouting::SpanAll, Layouting::GridCell, and Layouting::Layout.