mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-30 05:02:52 +08:00
26 lines
346 B
C++
26 lines
346 B
C++
// (c) The Qt Company Ltd. BSD License
|
|
// Some code is fixed by j2doll.
|
|
|
|
#ifndef PRINTVIEW_H
|
|
#define PRINTVIEW_H
|
|
|
|
#include <QTableView>
|
|
QT_BEGIN_NAMESPACE
|
|
class QPrinter;
|
|
QT_END_NAMESPACE
|
|
|
|
class PrintView : public QTableView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PrintView();
|
|
|
|
public Q_SLOTS:
|
|
void print(QPrinter *printer);
|
|
};
|
|
|
|
#endif // PRINTVIEW_H
|
|
|
|
|