mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-01 04:18:14 +00:00
* syntax_tests: allow to "bless" tests, and don't use a regexp
A regexp was used at the beginning because I thought we would want to
allow error to contains things that were not predictable or that would
often change. But this is not the case¹. It is better to actually test
for the full error message
¹ well actually it was the case for path, but there is another substitution to
`📂` for the manifest directory
* syntax_tests: Bless the tests
* syntax_tests: Manual adjust after bless
Because there used to be comments on the same line of the message which
bless don't support
* Fix error message with path on windows
- The debug implementation of path make double slash, that's not what
we want to show the user
- normalize paths to use `/` so the test passes
65 lines
2 KiB
Text
65 lines
2 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
|
|
|
|
|
|
export X := Rectangle {
|
|
// ^warning{':=' to declare a component is deprecated. The new syntax declare components with 'component MyComponent {'. Read the documentation for more info}
|
|
forward-focus: someRect;
|
|
// ^error{Cannot forward focus to unfocusable element}
|
|
|
|
callback trigger_focus_change();
|
|
trigger_focus_change => {
|
|
someRect.focus();
|
|
// ^error{focus() can only be called on focusable elements}
|
|
}
|
|
|
|
indirect_focus_chain_rect := Rectangle {
|
|
forward-focus: someRect;
|
|
// ^error{Cannot forward focus to unfocusable element}
|
|
}
|
|
|
|
callback trigger_focus_change_2();
|
|
trigger_focus_change_2 => {
|
|
indirect_focus_chain_rect.focus();
|
|
}
|
|
|
|
someRect := Rectangle {}
|
|
|
|
someFocusScope := FocusScope {}
|
|
callback activate_focus_scope();
|
|
activate_focus_scope => {
|
|
someFocusScope.focus(); // OK!
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export Y := FocusScope {
|
|
// ^warning{':=' to declare a component is deprecated. The new syntax declare components with 'component MyComponent {'. Read the documentation for more info}
|
|
forward-focus: self;
|
|
// ^error{forward-focus can't refer to itself}
|
|
x:= X { }
|
|
key-pressed => {
|
|
r0.focus();
|
|
x.focus();
|
|
// ^error{focus() can only be called on focusable elements}
|
|
accept
|
|
}
|
|
|
|
r1:= Rectangle {
|
|
forward-focus: r2;
|
|
// ^error{Cannot forward focus to unfocusable element}
|
|
}
|
|
r0:= Rectangle {
|
|
forward-focus: r1;
|
|
// ^error{Cannot forward focus to unfocusable element}
|
|
}
|
|
r2 := Rectangle {
|
|
forward-focus: r3;
|
|
// ^error{Cannot forward focus to unfocusable element}
|
|
}
|
|
r3 := Rectangle {
|
|
forward-focus: r1;
|
|
// ^error{Cannot forward focus to unfocusable element}
|
|
}
|
|
}
|