2015-10-02 08:44:29 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#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();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|