core/window: add closed() signal to all window types

This commit is contained in:
outfoxxed 2025-07-15 15:35:48 -07:00
parent 5706c09e6f
commit a2146f6394
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E
4 changed files with 17 additions and 1 deletions

View file

@ -236,6 +236,9 @@ public:
static QsWindowAttached* qmlAttachedProperties(QObject* object);
signals:
/// This signal is emitted when the window is closed by the user, the display server,
/// or an error. It is not emitted when @@visible is set to false.
void closed();
void windowConnected();
void visibleChanged();
void backingWindowVisibleChanged();