2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-05-06 15:47:07 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-05-06 15:47:07 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*/
|
2015-05-06 15:47:07 +00:00
|
|
|
#include "screens_hwcomposer.h"
|
|
|
|
#include "hwcomposer_backend.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
HwcomposerScreens::HwcomposerScreens(HwcomposerBackend *backend, QObject *parent)
|
2019-02-20 13:19:51 +00:00
|
|
|
: OutputScreens(backend, parent)
|
2015-05-06 15:47:07 +00:00
|
|
|
, m_backend(backend)
|
|
|
|
{
|
2019-02-20 13:19:51 +00:00
|
|
|
connect(m_backend, &HwcomposerBackend::screensQueried, this, &OutputScreens::updateCount);
|
|
|
|
connect(m_backend, &HwcomposerBackend::screensQueried, this, &OutputScreens::changed);
|
2017-10-17 16:46:20 +00:00
|
|
|
}
|
|
|
|
|
2015-05-06 15:47:07 +00:00
|
|
|
}
|