slint/internal/compiler/tests/syntax/focus/initial_focus_non_input.slint
Aurindam Jana 0cfeec1a31
Update Slint Community License (#4994)
Updated the version from 1.1 to 1.2 
Renamed the header to "Slint Royalty-free Desktop, Mobile, and Web Applications License"
Added definition of "Mobile Application" and grant of right
Moved "Limitations" to 3rd section and "License Conditions - Attributions" to 2nd section
Added flexibility to choose between showing "MadeWithSlint" as a dialog/splash screen or on a public webpage
Moved the para on copyright notices to section under "Limitations"
2024-04-15 15:18:55 +02: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.2 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}
}
}