forked from quickshell/quickshell
core/window: add closed() signal to all window types
This commit is contained in:
parent
5706c09e6f
commit
a2146f6394
4 changed files with 17 additions and 1 deletions
|
@ -133,6 +133,7 @@ QQmlListProperty<QObject> WindowInterface::data() const { return this->proxyWind
|
|||
void WindowInterface::connectSignals() const {
|
||||
auto* window = this->proxyWindow();
|
||||
// clang-format off
|
||||
QObject::connect(window, &ProxyWindowBase::closed, this, &WindowInterface::closed);
|
||||
QObject::connect(window, &ProxyWindowBase::windowConnected, this, &WindowInterface::windowConnected);
|
||||
QObject::connect(window, &ProxyWindowBase::visibleChanged, this, &WindowInterface::visibleChanged);
|
||||
QObject::connect(window, &ProxyWindowBase::backerVisibilityChanged, this, &WindowInterface::backingWindowVisibleChanged);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue