2021-04-04 14:11:13 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "abstract_wayland_output.h"
|
|
|
|
|
|
|
|
#include <KWaylandServer/output_interface.h>
|
2021-05-02 15:45:50 +00:00
|
|
|
#include <KWaylandServer/utils.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <KWaylandServer/xdgoutput_v1_interface.h>
|
2021-04-04 14:11:13 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class WaylandOutput : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit WaylandOutput(AbstractWaylandOutput *output, QObject *parent = nullptr);
|
|
|
|
|
|
|
|
KWaylandServer::OutputInterface *waylandOutput() const;
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void handleDpmsModeChanged();
|
|
|
|
void handleDpmsModeRequested(KWaylandServer::OutputInterface::DpmsMode dpmsMode);
|
|
|
|
|
|
|
|
void update();
|
|
|
|
void scheduleUpdate();
|
|
|
|
|
|
|
|
private:
|
|
|
|
AbstractWaylandOutput *m_platformOutput;
|
|
|
|
QTimer m_updateTimer;
|
2021-05-02 15:45:50 +00:00
|
|
|
KWaylandServer::ScopedGlobalPointer<KWaylandServer::OutputInterface> m_waylandOutput;
|
2021-04-04 14:11:13 +00:00
|
|
|
KWaylandServer::XdgOutputV1Interface *m_xdgOutputV1;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace KWin
|