2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-04-09 12:49:32 +00:00
|
|
|
#include "screens_drm.h"
|
|
|
|
#include "drm_backend.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
DrmScreens::DrmScreens(DrmBackend *backend, QObject *parent)
|
2020-12-17 10:34:04 +00:00
|
|
|
: Screens(parent)
|
2015-04-09 12:49:32 +00:00
|
|
|
{
|
2015-04-24 07:23:18 +00:00
|
|
|
connect(backend, &DrmBackend::screensQueried, this, &DrmScreens::updateCount);
|
|
|
|
connect(backend, &DrmBackend::screensQueried, this, &DrmScreens::changed);
|
2015-04-09 12:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|