You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
579 B
24 lines
579 B
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2023 Xaver Hugl <xaver.hugl@gmail.com> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
#pragma once |
|
#include "core/output.h" |
|
#include "core/outputconfiguration.h" |
|
|
|
#include <QList> |
|
#include <optional> |
|
|
|
namespace KWin |
|
{ |
|
namespace KScreenIntegration |
|
{ |
|
|
|
QString connectedOutputsHash(const QList<Output *> &outputs, bool isLidClosed); |
|
std::optional<std::pair<OutputConfiguration, QList<Output *>>> readOutputConfig(const QList<Output *> &outputs, const QString &hash); |
|
} |
|
}
|
|
|