summaryrefslogtreecommitdiff
path: root/Base/usr/share/man/man5/GML-Widget-Button.md
diff options
context:
space:
mode:
Diffstat (limited to 'Base/usr/share/man/man5/GML-Widget-Button.md')
-rw-r--r--Base/usr/share/man/man5/GML-Widget-Button.md15
1 files changed, 8 insertions, 7 deletions
diff --git a/Base/usr/share/man/man5/GML-Widget-Button.md b/Base/usr/share/man/man5/GML-Widget-Button.md
index 1a8b07630d..05964f9575 100644
--- a/Base/usr/share/man/man5/GML-Widget-Button.md
+++ b/Base/usr/share/man/man5/GML-Widget-Button.md
@@ -19,15 +19,16 @@ Defines a GUI Button widget.
@GUI::Button {
name: "disabled_normal_button"
text: "Disabled"
- enabled: "false"
+ enabled: false
}
```
## Registered Properties
-| Property | Type | Possible values | Description |
-|--------------|--------|-----------------|------------------------------|
-| button_style | enum | Normal, Coolbar | Sets the style of the button |
-| text | string | Any string | Sets the label text |
-| checked | bool | true or false | |
-| checkable | bool | true or false | |
+| Property | Type | Possible values | Description |
+| ------------ | ------ | --------------- | ----------------------------------------------------------------------------------------------------- |
+| button_style | enum | Normal, Coolbar | Sets the style of the button |
+| text | string | Any string | Sets the label text |
+| checked | bool | true or false | Whether the button is checked; this only applies to checkable subclasses |
+| checkable | bool | true or false | Whether the button can be checked; this only applies to checkable subclasses |
+| exclusive | bool | true or false | Whether the button's check state is exclusive to its group; this only applies to checkable subclasses |