slint/internal/compiler/tests/syntax/focus/initial_focus_non_input.slint
Simon Hausmann 6fefe75a1c Don't require components that use forward-focus to be inlined
Achieve this by generating a `focus()` function for such components
and call it from the outside.

This replaces the previous focus handling with what should be cleaner:

- Any `forward-focus: some-element;` is basically syntactic sugar for
 `public function focus() { some-element.focus(); }`.
- The init code gets simplified to calling focus() on the root, if it's
  available.

Since the `focus()` functions are now generated in the imports pass,
they become visible in the style checker. That means the checker
requires consistent focus handling between the styles.
2024-01-26 12:16:09 +01:00

63 lines
1.7 KiB
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
export X := Rectangle {
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 {
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}
}
}