SizeGroup QML Type
SizeGroup is a utility object that makes groups of items request the same size. More...
| Import Statement: | import org.kde.kirigami.layouts |
Properties
Methods
- void relayout()
Detailed Description
Property Documentation
items : list<Item>
Which items this SizeGroup should adjust
mode : enumeration
Which dimensions this SizeGroup should adjust.
Possible values are:
- None: SizeGroup does nothing
- Width: SizeGroup syncs item widths
- Height: SizeGroup syncs item heights
- Both: SizeGroup syncs both item widths and heights
Method Documentation
void relayout()
Forces the SizeGroup to relayout items.
Normally this is never needed as the SizeGroup automatically relayout items as they're added and their sizes change.