blob: e9c8bd3e83364f35ed4d28f689261eb9a1599a6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* SPDX-FileCopyrightText: 2023 Kai Uwe Broulik <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KITEMVIEWSUTILS_H
#define KITEMVIEWSUTILS_H
#include <qtypes.h>
class QGraphicsItem;
class KItemViewsUtils
{
public:
static qreal devicePixelRatio(const QGraphicsItem *item);
};
#endif // KITEMVIEWSUTILS_H
|