mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-10 12:26:41 +00:00

Base the commercial license on the Royalty-free license adding clauses pertaining to the fees.
14 lines
633 B
Text
14 lines
633 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
import { StandardButton } from "std-widgets.slint";
|
|
|
|
export Test := Dialog {
|
|
// ^error{A Dialog must have a single child element that is not StandardButton}
|
|
StandardButton { kind: ok; }
|
|
StandardButton { }
|
|
// ^error{The `kind` property of the StandardButton in a Dialog must be set}
|
|
StandardButton { kind: true ? ok : cancel; }
|
|
// ^error{The `kind` property of the StandardButton in a Dialog must be known at compile-time}
|
|
|
|
}
|