2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef PRINTVIEW_H
|
|
|
|
#define PRINTVIEW_H
|
|
|
|
|
|
|
|
#include <QTableView>
|
2011-09-28 07:49:05 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
2011-08-16 12:04:48 +00:00
|
|
|
class QPrinter;
|
2011-09-28 07:49:05 +00:00
|
|
|
QT_END_NAMESPACE
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
class PrintView : public QTableView
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
PrintView();
|
|
|
|
|
2022-07-19 13:06:22 +00:00
|
|
|
public slots:
|
2011-04-27 10:05:43 +00:00
|
|
|
void print(QPrinter *printer);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PRINTVIEW_H
|
|
|
|
|
|
|
|
|