mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 05:44:52 +00:00

Base the commercial license on the Royalty-free license adding clauses pertaining to the fees.
47 lines
1.3 KiB
Text
47 lines
1.3 KiB
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
|
|
|
|
global MyGlobal := {
|
|
property<length> custom_prop;
|
|
property<color> color_prop;
|
|
color_prop: red;
|
|
}
|
|
|
|
export SomeComp := Rectangle {
|
|
property<length> foo;
|
|
}
|
|
|
|
global my_lowercase := {
|
|
property <int> glob;
|
|
}
|
|
|
|
|
|
global StyleMetrics {
|
|
out property <length> padding: 3px;
|
|
}
|
|
|
|
export X := Rectangle {
|
|
x: MyGlobal.custom_prop;
|
|
background: MyGlobal.blue;
|
|
// ^error{'MyGlobal' does not have a property 'blue'}
|
|
y: SomeComp.foo;
|
|
// ^error{Cannot access id 'SomeComp'}
|
|
|
|
my_lowercase := Rectangle {
|
|
clip: NativeStyleMetrics.color-scheme == ColorScheme.dark;
|
|
// ^error{Cannot access id 'NativeStyleMetrics'}
|
|
visible: SlintInternal.color-scheme;
|
|
// ^error{Cannot access id 'SlintInternal'}
|
|
|
|
height: StyleMetrics.padding;
|
|
}
|
|
|
|
property <int> my_lowercase: 45;
|
|
|
|
property<brush> xxx: my_lowercase.background;
|
|
property<int> yyy: my_lowercase.glob; // error because this is not the global, but the local element
|
|
// ^error{Element 'Rectangle' does not have a property 'glob'}
|
|
|
|
property<int> zzz: self.my_lowercase;
|
|
|
|
}
|