summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qrasterwindow.h
blob: 986bf6b511df31d52156bccc57656175148b0a36 (plain)
12345678910111213141516171819202122232425262728293031323334
// 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 QRASTERWINDOW_H#define QRASTERWINDOW_H#include <QtGui/qtguiglobal.h>#include <QtGui/QPaintDeviceWindow> QT_BEGIN_NAMESPACE class QRasterWindowPrivate;class Q_GUI_EXPORT QRasterWindow :public QPaintDeviceWindow { Q_OBJECT Q_DECLARE_PRIVATE(QRasterWindow)public:explicitQRasterWindow(QWindow *parent =nullptr);~QRasterWindow();protected:intmetric(PaintDeviceMetric metric)const override; QPaintDevice *redirected(QPoint *)const override;voidresizeEvent(QResizeEvent *event) override;private:Q_DISABLE_COPY(QRasterWindow)}; QT_END_NAMESPACE #endif
close