| 1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
| 2 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 |
| 3 | |
| 4 | export component GroupBox { |
| 5 | in property title <=> native.title; |
| 6 | in property enabled <=> native.enabled; |
| 7 | |
| 8 | accessible-role: groupbox; |
| 9 | accessible-label: root.title; |
| 10 | accessible-enabled: root.enabled; |
| 11 | |
| 12 | native := NativeGroupBox { |
| 13 | GridLayout { |
| 14 | padding-left: native.native-padding-left; |
| 15 | padding-right: native.native-padding-right; |
| 16 | padding-top: native.native-padding-top; |
| 17 | padding-bottom: native.native-padding-bottom; |
| 18 | |
| 19 | @children |
| 20 | } |
| 21 | } |
| 22 | } |