0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-11-20 06:30:03 +03:00

Multi printers print process has been added

This commit is contained in:
Arin Alexander
2019-02-06 23:48:52 +03:00
parent d85b8bbd87
commit 362c7217f3
7 changed files with 167 additions and 79 deletions

View File

@@ -342,6 +342,16 @@ void PageItemDesignIntf::initColumnsPos(QVector<qreal> &posByColumns, qreal pos,
}
}
QString PageItemDesignIntf::printerName() const
{
return m_printerName;
}
void PageItemDesignIntf::setPrinterName(const QString& printerName)
{
m_printerName = printerName;
}
bool PageItemDesignIntf::isPrintable() const
{
return m_printable;