repeatOnEachRow property has been added to DataHeader

This commit is contained in:
Arin Alex
2016-07-27 00:41:24 +03:00
parent 77f6129c1f
commit 8e632855b4
4 changed files with 19 additions and 2 deletions

View File

@@ -213,7 +213,8 @@ public:
bool canContainChildren(){ return true;}
bool printAlways() const;
void setPrintAlways(bool printAlways);
bool repeatOnEachRow() const;
void setRepeatOnEachRow(bool repeatOnEachRow);
signals:
void bandRendered(BandDesignIntf* band);
protected:
@@ -266,6 +267,7 @@ private:
bool m_startNewPage;
bool m_startFromNewPage;
bool m_printAlways;
bool m_repeatOnEachRow;
};
class DataBandDesignIntf : public BandDesignIntf{