42 lines
868 B
C++
42 lines
868 B
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#include "screens_virtual.h"
|
|
#include "virtual_backend.h"
|
|
#include "virtual_output.h"
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
VirtualScreens::VirtualScreens(VirtualBackend *backend, QObject *parent)
|
|
: OutputScreens(backend, parent)
|
|
, m_backend(backend)
|
|
{
|
|
}
|
|
|
|
VirtualScreens::~VirtualScreens() = default;
|
|
|
|
void VirtualScreens::init()
|
|
{
|
|
updateCount();
|
|
KWin::Screens::init();
|
|
|
|
connect(m_backend, &VirtualBackend::virtualOutputsSet, this,
|
|
[this] (bool countChanged) {
|
|
if (countChanged) {
|
|
setCount(m_backend->outputs().size());
|
|
} else {
|
|
emit changed();
|
|
}
|
|
}
|
|
);
|
|
|
|
emit changed();
|
|
}
|
|
|
|
}
|