dbb2cede08
Summary: Get the pixel size directly from the always available output device interface instead of saving an additional copy in the backends. Test Plan: Nested Wayland, Drm, virtual backends tested. Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: kwin Tags: #kwin Maniphest Tasks: T11459 Differential Revision: https://phabricator.kde.org/D23495
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
/********************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2018 Roman Gilg <subdiff@gmail.com>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*********************************************************************/
|
|
#ifndef KWIN_VIRTUAL_OUTPUT_H
|
|
#define KWIN_VIRTUAL_OUTPUT_H
|
|
|
|
#include "abstract_wayland_output.h"
|
|
|
|
#include <QObject>
|
|
#include <QRect>
|
|
|
|
namespace KWin
|
|
{
|
|
class VirtualBackend;
|
|
|
|
class VirtualOutput : public AbstractWaylandOutput
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
VirtualOutput(QObject *parent = nullptr);
|
|
~VirtualOutput() override;
|
|
|
|
void init(const QPoint &logicalPosition, const QSize &pixelSize);
|
|
|
|
void setGeometry(const QRect &geo);
|
|
|
|
int gammaRampSize() const override {
|
|
return m_gammaSize;
|
|
}
|
|
bool setGammaRamp(const GammaRamp &gamma) override {
|
|
Q_UNUSED(gamma);
|
|
return m_gammaResult;
|
|
}
|
|
|
|
private:
|
|
Q_DISABLE_COPY(VirtualOutput);
|
|
friend class VirtualBackend;
|
|
|
|
int m_gammaSize = 200;
|
|
bool m_gammaResult = true;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|