mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-30 05:02:52 +08:00
26 lines
467 B
C++
26 lines
467 B
C++
// (c) The Qt Company Ltd. BSD License
|
|
// Some code is fixed by j2doll.
|
|
|
|
|
|
#ifndef QT_NO_PRINTER
|
|
#include <QPrinter>
|
|
#endif
|
|
#include <QStyleOptionViewItem>
|
|
|
|
#include "printview.h"
|
|
|
|
PrintView::PrintView()
|
|
{
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
}
|
|
|
|
void PrintView::print(QPrinter *printer)
|
|
{
|
|
#ifndef QT_NO_PRINTER
|
|
resize(printer->width(), printer->height());
|
|
render(printer);
|
|
#endif
|
|
}
|
|
|