kwin/plugins/platforms/hwcomposer/screens_hwcomposer.cpp

24 lines
621 B
C++
Raw Normal View History

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