mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-25 00:54:39 +03:00
Finish 1.4.38
This commit is contained in:
commit
f7d461cb30
@ -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 = 34
|
LIMEREPORT_VERSION_RELEASE = 38
|
||||||
|
|
||||||
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}\"
|
||||||
|
@ -113,16 +113,16 @@ void TextItem::processPopUpAction(QAction *action)
|
|||||||
this->showEditorDialog();
|
this->showEditorDialog();
|
||||||
}
|
}
|
||||||
if (action->text().compare(tr("Auto height")) == 0){
|
if (action->text().compare(tr("Auto height")) == 0){
|
||||||
setProperty("autoHeight",action->isChecked());
|
page()->setPropertyToSelectedItems("autoHeight",action->isChecked());
|
||||||
}
|
}
|
||||||
if (action->text().compare(tr("Allow HTML")) == 0){
|
if (action->text().compare(tr("Allow HTML")) == 0){
|
||||||
setProperty("allowHTML",action->isChecked());
|
page()->setPropertyToSelectedItems("allowHTML",action->isChecked());
|
||||||
}
|
}
|
||||||
if (action->text().compare(tr("Allow HTML in fields")) == 0){
|
if (action->text().compare(tr("Allow HTML in fields")) == 0){
|
||||||
setProperty("allowHTMLInFields",action->isChecked());
|
page()->setPropertyToSelectedItems("allowHTMLInFields",action->isChecked());
|
||||||
}
|
}
|
||||||
if (action->text().compare(tr("Stretch to max height")) == 0){
|
if (action->text().compare(tr("Stretch to max height")) == 0){
|
||||||
setProperty("stretchToMaxHeight",action->isChecked());
|
page()->setPropertyToSelectedItems("stretchToMaxHeight",action->isChecked());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -292,6 +292,14 @@ void BandDesignIntf::setDataSourceName(const QString &datasource){
|
|||||||
m_dataSourceName=datasource;
|
m_dataSourceName=datasource;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BandDesignIntf::setKeepBottomSpaceOption(bool value){
|
||||||
|
if (m_keepBottomSpace!=value){
|
||||||
|
m_keepBottomSpace=value;
|
||||||
|
if (!isLoading())
|
||||||
|
notify("keepBottomSpace",!value,value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void BandDesignIntf::addChildBand(BandDesignIntf *band)
|
void BandDesignIntf::addChildBand(BandDesignIntf *band)
|
||||||
{
|
{
|
||||||
m_childBands.append(band);
|
m_childBands.append(band);
|
||||||
@ -466,13 +474,25 @@ void BandDesignIntf::preparePopUpMenu(QMenu &menu)
|
|||||||
}
|
}
|
||||||
|
|
||||||
menu.addSeparator();
|
menu.addSeparator();
|
||||||
QAction* autoHeightAction = menu.addAction(tr("Auto height"));
|
QAction* currAction = menu.addAction(tr("Auto height"));
|
||||||
autoHeightAction->setCheckable(true);
|
currAction->setCheckable(true);
|
||||||
autoHeightAction->setChecked(autoHeight());
|
currAction->setChecked(autoHeight());
|
||||||
|
|
||||||
QAction* autoSplittableAction = menu.addAction(tr("Splittable"));
|
currAction = menu.addAction(tr("Splittable"));
|
||||||
autoSplittableAction->setCheckable(true);
|
currAction->setCheckable(true);
|
||||||
autoSplittableAction->setChecked(isSplittable());
|
currAction->setChecked(isSplittable());
|
||||||
|
|
||||||
|
currAction = menu.addAction(tr("Keep bottom space"));
|
||||||
|
currAction->setCheckable(true);
|
||||||
|
currAction->setChecked(keepBottomSpaceOption());
|
||||||
|
|
||||||
|
currAction = menu.addAction(tr("Start from new page"));
|
||||||
|
currAction->setCheckable(true);
|
||||||
|
currAction->setChecked(startFromNewPage());
|
||||||
|
|
||||||
|
currAction = menu.addAction(tr("Start new page"));
|
||||||
|
currAction->setCheckable(true);
|
||||||
|
currAction->setChecked(startNewPage());
|
||||||
}
|
}
|
||||||
|
|
||||||
void BandDesignIntf::processPopUpAction(QAction *action)
|
void BandDesignIntf::processPopUpAction(QAction *action)
|
||||||
@ -483,6 +503,15 @@ void BandDesignIntf::processPopUpAction(QAction *action)
|
|||||||
if (action->text().compare(tr("Splittable")) == 0){
|
if (action->text().compare(tr("Splittable")) == 0){
|
||||||
setProperty("splittable",action->isChecked());
|
setProperty("splittable",action->isChecked());
|
||||||
}
|
}
|
||||||
|
if (action->text().compare(tr("Keep bottom space")) == 0){
|
||||||
|
setProperty("keepBottomSpace",action->isChecked());
|
||||||
|
}
|
||||||
|
if (action->text().compare(tr("Start new page")) == 0){
|
||||||
|
setProperty("startNewPage",action->isChecked());
|
||||||
|
}
|
||||||
|
if (action->text().compare(tr("Start from new page")) == 0){
|
||||||
|
setProperty("startFromNewPage",action->isChecked());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseDesignIntf* BandDesignIntf::cloneUpperPart(int height, QObject *owner, QGraphicsItem *parent)
|
BaseDesignIntf* BandDesignIntf::cloneUpperPart(int height, QObject *owner, QGraphicsItem *parent)
|
||||||
@ -772,7 +801,11 @@ bool BandDesignIntf::startFromNewPage() const
|
|||||||
|
|
||||||
void BandDesignIntf::setStartFromNewPage(bool startWithNewPage)
|
void BandDesignIntf::setStartFromNewPage(bool startWithNewPage)
|
||||||
{
|
{
|
||||||
m_startFromNewPage = startWithNewPage;
|
if (m_startFromNewPage != startWithNewPage){
|
||||||
|
m_startFromNewPage = startWithNewPage;
|
||||||
|
if (!isLoading())
|
||||||
|
notify("startFromNewPage", !startWithNewPage, startWithNewPage);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool BandDesignIntf::startNewPage() const
|
bool BandDesignIntf::startNewPage() const
|
||||||
@ -782,7 +815,11 @@ bool BandDesignIntf::startNewPage() const
|
|||||||
|
|
||||||
void BandDesignIntf::setStartNewPage(bool startNewPage)
|
void BandDesignIntf::setStartNewPage(bool startNewPage)
|
||||||
{
|
{
|
||||||
m_startNewPage = startNewPage;
|
if (m_startNewPage != startNewPage){
|
||||||
|
m_startNewPage = startNewPage;
|
||||||
|
if (!isLoading())
|
||||||
|
notify("startNewPage", !startNewPage, startNewPage);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BandDesignIntf::setAutoHeight(bool value){
|
void BandDesignIntf::setAutoHeight(bool value){
|
||||||
|
@ -150,7 +150,7 @@ public:
|
|||||||
QString datasourceName();
|
QString datasourceName();
|
||||||
void setDataSourceName(const QString& datasourceName);
|
void setDataSourceName(const QString& datasourceName);
|
||||||
|
|
||||||
void setKeepBottomSpaceOption(bool value){m_keepBottomSpace=value;}
|
void setKeepBottomSpaceOption(bool value);
|
||||||
bool keepBottomSpaceOption() const {return m_keepBottomSpace;}
|
bool keepBottomSpaceOption() const {return m_keepBottomSpace;}
|
||||||
|
|
||||||
void addChildBand(BandDesignIntf* band);
|
void addChildBand(BandDesignIntf* band);
|
||||||
|
@ -1071,6 +1071,14 @@ void PageDesignIntf::setReportSettings(ReportSettings *reportSettings)
|
|||||||
m_pageItem->setReportSettings(m_reportSettings);
|
m_pageItem->setReportSettings(m_reportSettings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void PageDesignIntf::setPropertyToSelectedItems(const char* name, const QVariant& value)
|
||||||
|
{
|
||||||
|
foreach(QGraphicsItem* gi, selectedItems()){
|
||||||
|
BaseDesignIntf* item = dynamic_cast<BaseDesignIntf*>(gi);
|
||||||
|
if(item && item->metaObject()->indexOfProperty(name) != -1 ) item->setProperty(name,value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool PageDesignIntf::magneticMovement() const
|
bool PageDesignIntf::magneticMovement() const
|
||||||
{
|
{
|
||||||
return m_magneticMovement;
|
return m_magneticMovement;
|
||||||
|
@ -182,6 +182,8 @@ namespace LimeReport {
|
|||||||
ReportSettings *getReportSettings() const;
|
ReportSettings *getReportSettings() const;
|
||||||
void setReportSettings(ReportSettings *reportSettings);
|
void setReportSettings(ReportSettings *reportSettings);
|
||||||
|
|
||||||
|
void setPropertyToSelectedItems(const char *name, const QVariant &value);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
virtual void keyPressEvent(QKeyEvent *event);
|
virtual void keyPressEvent(QKeyEvent *event);
|
||||||
|
Loading…
Reference in New Issue
Block a user