blob: d6b70298a62f6c8102213113634e55d98ada3eb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QPAINTDEVICEWINDOW_H
#define QPAINTDEVICEWINDOW_H
#include <QtGui/qtguiglobal.h>
#include <QtGui/QWindow>
#include <QtGui/QPaintDevice>
QT_BEGIN_NAMESPACE
class QPaintDeviceWindowPrivate;
class QPaintEvent;
class Q_GUI_EXPORT QPaintDeviceWindow : public QWindow, public QPaintDevice
{
Q_OBJECT
Q_DECLARE_PRIVATE(QPaintDeviceWindow)
public:
void update(const QRect &rect);
void update(const QRegion ®ion);
using QWindow::width;
using QWindow::height;
using QWindow::devicePixelRatio;
public Q_SLOTS:
void update();
protected:
void exposeEvent(QExposeEvent *) override;
void paintEvent(QPaintEvent *event) override;
int metric(PaintDeviceMetric metric) const override;
bool event(QEvent *event) override;
QPaintDeviceWindow(QPaintDeviceWindowPrivate &dd, QWindow *parent);
private:
QPaintEngine *paintEngine() const override;
Q_DISABLE_COPY(QPaintDeviceWindow)
};
QT_END_NAMESPACE
#endif
|