2015-10-02 08:44:29 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-10-02 08:44:29 +00:00
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
2015-10-02 08:44:29 +00:00
|
|
|
*********************************************************************/
|
|
|
|
#include "screens_virtual.h"
|
|
|
|
#include "virtual_backend.h"
|
2018-03-19 11:05:57 +00:00
|
|
|
#include "virtual_output.h"
|
2015-10-02 08:44:29 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
VirtualScreens::VirtualScreens(VirtualBackend *backend, QObject *parent)
|
2018-03-29 16:38:27 +00:00
|
|
|
: OutputScreens(backend, parent)
|
2015-10-02 08:44:29 +00:00
|
|
|
, m_backend(backend)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
VirtualScreens::~VirtualScreens() = default;
|
|
|
|
|
|
|
|
void VirtualScreens::init()
|
|
|
|
{
|
2016-08-05 07:41:56 +00:00
|
|
|
updateCount();
|
2015-10-02 08:44:29 +00:00
|
|
|
KWin::Screens::init();
|
2018-03-19 11:05:57 +00:00
|
|
|
|
|
|
|
connect(m_backend, &VirtualBackend::virtualOutputsSet, this,
|
|
|
|
[this] (bool countChanged) {
|
|
|
|
if (countChanged) {
|
2018-03-29 16:38:27 +00:00
|
|
|
setCount(m_backend->outputs().size());
|
2016-07-20 09:42:52 +00:00
|
|
|
} else {
|
|
|
|
emit changed();
|
|
|
|
}
|
2016-06-02 07:28:02 +00:00
|
|
|
}
|
|
|
|
);
|
2018-03-19 11:05:57 +00:00
|
|
|
|
2015-10-02 08:44:29 +00:00
|
|
|
emit changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|