// Copyright © Klarälvdalens Datakonsult AB, a KDAB Group company , info@kdab.com, author Robin Cramer <robin.cramer@kdab.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
export component Xxx inherits Window {
callback clicked-b <=> button.clicked;
// > <warning{Callback 'clicked-b' shares a handler slot with 'clicked-a', so only one of them can have an implementation}
callback clicked-a <=> button.clicked;
// > <warning{Callback 'clicked-a' shares a handler slot with 'clicked-b', so only one of them can have an implementation}
button := TouchArea {}
}