| 1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
| 2 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 |
| 3 | |
| 4 | //include_path: ../../helper_components |
| 5 | import { TestButton as RealButton, } from "test_button.slint" ; |
| 6 | import { ColorButton } from "../helper_components/test_button.slint" ; |
| 7 | import { Button } from "std-widgets.slint" ; |
| 8 | import { TestButton as ReExportedButton } from "re_export.slint" ; |
| 9 | import { Main_Window } from "main_window.slint" ; |
| 10 | TestCase := Rectangle { |
| 11 | RealButton {} // aliased from external file |
| 12 | ColorButton {} // from external file |
| 13 | ReExportedButton {} // from external file re-exported |
| 14 | Button {} // from standard library |
| 15 | } |
| 16 | |