You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
501 B
C++

/*
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "abstract_output.h"
namespace KWin
{
class X11PlaceholderOutput : public AbstractOutput
{
Q_OBJECT
public:
explicit X11PlaceholderOutput(QObject *parent = nullptr);
QString name() const override;
QRect geometry() const override;
int refreshRate() const override;
QSize pixelSize() const override;
};
} // namespace KWin