mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-09-23 16:49:07 +03:00
printAlways has been moved to BandDesignIntf & printAlways property has been added to DataHeaderBand & DataFooterBand
This commit is contained in:
@@ -143,7 +143,8 @@ BandDesignIntf::BandDesignIntf(BandsType bandType, const QString &xmlTypeName, Q
|
||||
m_columnsFillDirection(Horizontal),
|
||||
m_reprintOnEachPage(false),
|
||||
m_startNewPage(false),
|
||||
m_startFromNewPage(false)
|
||||
m_startFromNewPage(false),
|
||||
m_printAlways(false)
|
||||
{
|
||||
setPosibleResizeDirectionFlags(ResizeBottom);
|
||||
setPosibleMoveFlags(TopBotom);
|
||||
@@ -709,6 +710,16 @@ void BandDesignIntf::childBandDeleted(QObject *band)
|
||||
m_childBands.removeAt(m_childBands.indexOf(reinterpret_cast<BandDesignIntf*>(band)));
|
||||
}
|
||||
|
||||
bool BandDesignIntf::printAlways() const
|
||||
{
|
||||
return m_printAlways;
|
||||
}
|
||||
|
||||
void BandDesignIntf::setPrintAlways(bool printAlways)
|
||||
{
|
||||
m_printAlways = printAlways;
|
||||
}
|
||||
|
||||
bool BandDesignIntf::startFromNewPage() const
|
||||
{
|
||||
return m_startFromNewPage;
|
||||
|
Reference in New Issue
Block a user