mirror of
https://github.com/nextcloud/desktop.git
synced 2026-01-14 02:01:28 +00:00
26 lines
490 B
C++
26 lines
490 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QPaintDevice>
|
|
#include <QTest>
|
|
|
|
class FakePaintDevice : public QPaintDevice
|
|
{
|
|
public:
|
|
FakePaintDevice();
|
|
|
|
[[nodiscard]] QPaintEngine *paintEngine() const override;
|
|
|
|
void setHidpi(bool value);
|
|
|
|
protected:
|
|
[[nodiscard]] int metric(QPaintDevice::PaintDeviceMetric metric) const override;
|
|
|
|
private:
|
|
bool _hidpi = false;
|
|
};
|