summaryrefslogtreecommitdiff
path: root/Base/usr/share/man/man5/GML-Widget-Button.md
diff options
context:
space:
mode:
authorkleines Filmröllchen <filmroellchen@serenityos.org>2022-12-14 17:13:22 +0100
committerAndrew Kaster <andrewdkaster@gmail.com>2023-01-02 06:15:13 -0700
commitad6cbc4192b112a930242e730c27cd4a5ba29a38 (patch)
tree83a5944775cb13b466e54f0eed31c5730592e66e /Base/usr/share/man/man5/GML-Widget-Button.md
parentf824a67b3b72d2459996c0676783efe613413af6 (diff)
downloadserenity-ad6cbc4192b112a930242e730c27cd4a5ba29a38.zip
Base: Move GML documentation into subsection
That was the whole point of this endeavour :^)
Diffstat (limited to 'Base/usr/share/man/man5/GML-Widget-Button.md')
-rw-r--r--Base/usr/share/man/man5/GML-Widget-Button.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/Base/usr/share/man/man5/GML-Widget-Button.md b/Base/usr/share/man/man5/GML-Widget-Button.md
deleted file mode 100644
index 05964f9575..0000000000
--- a/Base/usr/share/man/man5/GML-Widget-Button.md
+++ /dev/null
@@ -1,34 +0,0 @@
-## Name
-
-## Description
-
-Defines a GUI Button widget.
-
-## Synopsis
-
-`@GUI::Button`
-
-## Examples
-
-```gml
-@GUI::Button {
- name: "normal_button"
- text: "Button"
-}
-
-@GUI::Button {
- name: "disabled_normal_button"
- text: "Disabled"
- 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 | 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 |