diff --git a/Base/usr/share/man/man5/GML-Widget-TabWidget.md b/Base/usr/share/man/man5/GML-Widget-TabWidget.md index ca94982e3d..5f0c579a1b 100644 --- a/Base/usr/share/man/man5/GML-Widget-TabWidget.md +++ b/Base/usr/share/man/man5/GML-Widget-TabWidget.md @@ -15,13 +15,23 @@ Defines a GUI tab widget. ```gml @GUI::TabWidget { uniform_tabs: true + + @GUI::Widget { + title: "First tab" + } + @GUI::Widget { + title: "Second tab" + } } ``` ## Registered Properties -| Property | Type | Possible values | Description | -|-------------------|----------------|-----------------------------------------------------------------------------|-------------------------------| -| container_margins | margins | | Set container margins | -| uniform_tabs | bool | true or false | Set uniform tabs | -| text_alignment | text_alignment | Center, CenterLeft, CenterRight, TopLeft, TopRight, BottomLeft, BottomRight | Set the alignment of tab text | +| Property | Type | Possible values | Description | +|--------------------|----------------|-----------------------------------------------------------------------------|--------------------------------------| +| container_margins | margins | | Margins for the tab content | +| reorder_allowed | bool | true or false | Allow changing the order of the tabs | +| show_close_buttons | bool | true or false | Show a close button on each tab | +| show_tab_bar | bool | true or false | Whether to display the tabs | +| text_alignment | text_alignment | Center, CenterLeft, CenterRight, TopLeft, TopRight, BottomLeft, BottomRight | Set the alignment of tab text | +| uniform_tabs | bool | true or false | Give all tabs the same width |