0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-23 16:39:07 +03:00

Merge branch 'master' into 1.4

Conflicts:
	limereport/items/lrtextitem.cpp
	limereport/items/lrtextitem.h
This commit is contained in:
Arin Alex
2016-07-27 00:44:50 +03:00
8 changed files with 134 additions and 9 deletions

View File

@@ -144,7 +144,8 @@ BandDesignIntf::BandDesignIntf(BandsType bandType, const QString &xmlTypeName, Q
m_reprintOnEachPage(false),
m_startNewPage(false),
m_startFromNewPage(false),
m_printAlways(false)
m_printAlways(false),
m_repeatOnEachRow(false)
{
setPosibleResizeDirectionFlags(ResizeBottom);
setPosibleMoveFlags(TopBotom);
@@ -725,6 +726,16 @@ void BandDesignIntf::childBandDeleted(QObject *band)
m_childBands.removeAt(m_childBands.indexOf(reinterpret_cast<BandDesignIntf*>(band)));
}
bool BandDesignIntf::repeatOnEachRow() const
{
return m_repeatOnEachRow;
}
void BandDesignIntf::setRepeatOnEachRow(bool repeatOnEachRow)
{
m_repeatOnEachRow = repeatOnEachRow;
}
bool BandDesignIntf::printAlways() const
{
return m_printAlways;