mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-25 13:04:38 +03:00
Finish 1.4.95
This commit is contained in:
commit
a008dd635c
@ -62,7 +62,7 @@ RCC_DIR = $${ARCH_DIR}/$${BUILD_TYPE}/rcc
|
|||||||
|
|
||||||
LIMEREPORT_VERSION_MAJOR = 1
|
LIMEREPORT_VERSION_MAJOR = 1
|
||||||
LIMEREPORT_VERSION_MINOR = 4
|
LIMEREPORT_VERSION_MINOR = 4
|
||||||
LIMEREPORT_VERSION_RELEASE = 94
|
LIMEREPORT_VERSION_RELEASE = 95
|
||||||
|
|
||||||
LIMEREPORT_VERSION = '\\"$${LIMEREPORT_VERSION_MAJOR}.$${LIMEREPORT_VERSION_MINOR}.$${LIMEREPORT_VERSION_RELEASE}\\"'
|
LIMEREPORT_VERSION = '\\"$${LIMEREPORT_VERSION_MAJOR}.$${LIMEREPORT_VERSION_MINOR}.$${LIMEREPORT_VERSION_RELEASE}\\"'
|
||||||
DEFINES += LIMEREPORT_VERSION_STR=\"$${LIMEREPORT_VERSION}\"
|
DEFINES += LIMEREPORT_VERSION_STR=\"$${LIMEREPORT_VERSION}\"
|
||||||
|
@ -149,7 +149,7 @@ void ReportRender::renameChildItems(BaseDesignIntf *item){
|
|||||||
|
|
||||||
ReportRender::ReportRender(QObject *parent)
|
ReportRender::ReportRender(QObject *parent)
|
||||||
:QObject(parent), m_renderPageItem(0), m_pageCount(0),
|
:QObject(parent), m_renderPageItem(0), m_pageCount(0),
|
||||||
m_lastDataBand(0), m_lastRenderedFooter(0), m_currentColumn(0), m_newPageStarted(false)
|
m_lastRenderedHeader(0), m_lastDataBand(0), m_lastRenderedFooter(0), m_currentColumn(0), m_newPageStarted(false)
|
||||||
{
|
{
|
||||||
initColumns();
|
initColumns();
|
||||||
}
|
}
|
||||||
@ -417,6 +417,9 @@ BandDesignIntf* ReportRender::renderBand(BandDesignIntf *patternBand, BandDesign
|
|||||||
QApplication::processEvents();
|
QApplication::processEvents();
|
||||||
if (patternBand){
|
if (patternBand){
|
||||||
|
|
||||||
|
if (patternBand->isHeader())
|
||||||
|
m_lastRenderedHeader = patternBand;
|
||||||
|
|
||||||
BandDesignIntf* bandClone = 0;
|
BandDesignIntf* bandClone = 0;
|
||||||
|
|
||||||
if (bandData){
|
if (bandData){
|
||||||
@ -473,6 +476,9 @@ BandDesignIntf* ReportRender::renderBand(BandDesignIntf *patternBand, BandDesign
|
|||||||
bandClone->columnsFillDirection()==BandDesignIntf::VerticalUniform))
|
bandClone->columnsFillDirection()==BandDesignIntf::VerticalUniform))
|
||||||
{
|
{
|
||||||
startNewColumn();
|
startNewColumn();
|
||||||
|
if (patternBand->bandHeader() && patternBand->bandHeader()->columnsCount()>1){
|
||||||
|
renderBand(patternBand->bandHeader(), 0, mode);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
savePage();
|
savePage();
|
||||||
startNewPage();
|
startNewPage();
|
||||||
|
@ -178,6 +178,7 @@ private:
|
|||||||
qreal m_dataAreaSize;
|
qreal m_dataAreaSize;
|
||||||
qreal m_reportFooterHeight;
|
qreal m_reportFooterHeight;
|
||||||
int m_renderedDataBandCount;
|
int m_renderedDataBandCount;
|
||||||
|
BandDesignIntf* m_lastRenderedHeader;
|
||||||
BandDesignIntf* m_lastDataBand;
|
BandDesignIntf* m_lastDataBand;
|
||||||
BandDesignIntf* m_lastRenderedFooter;
|
BandDesignIntf* m_lastRenderedFooter;
|
||||||
bool m_renderCanceled;
|
bool m_renderCanceled;
|
||||||
|
Loading…
Reference in New Issue
Block a user