0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-04-04 08:23:45 +03:00

Layout spacing has been fixed

This commit is contained in:
Arin Alexander 2019-02-10 04:50:40 +03:00
parent 931f093848
commit 8ba0449019

View File

@ -225,13 +225,9 @@ void AbstractLayout::objectLoadFinished()
bool AbstractLayout::isNeedUpdateSize(RenderPass pass) const bool AbstractLayout::isNeedUpdateSize(RenderPass pass) const
{ {
foreach (QGraphicsItem *child, childItems()) { Q_UNUSED(pass)
BaseDesignIntf* item = dynamic_cast<BaseDesignIntf*>(child);
if (item && (item->isNeedUpdateSize(pass) || item->isEmpty()))
return true; return true;
} }
return false;
}
QVariant AbstractLayout::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant& value) QVariant AbstractLayout::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant& value)
{ {
@ -251,7 +247,8 @@ void AbstractLayout::updateItemSize(DataSourceManager* dataManager, RenderPass p
ItemDesignIntf::updateItemSize(dataManager, pass, maxHeight); ItemDesignIntf::updateItemSize(dataManager, pass, maxHeight);
foreach(QGraphicsItem *child, childItems()){ foreach(QGraphicsItem *child, childItems()){
BaseDesignIntf* item = dynamic_cast<BaseDesignIntf*>(child); BaseDesignIntf* item = dynamic_cast<BaseDesignIntf*>(child);
if (item) item->updateItemSize(dataManager, pass, maxHeight); if (item && item->isNeedUpdateSize(pass))
item->updateItemSize(dataManager, pass, maxHeight);
} }
updateLayoutSize(); updateLayoutSize();
relocateChildren(); relocateChildren();
@ -300,7 +297,7 @@ void AbstractLayout::slotOnChildDestroy(QObject* child)
void AbstractLayout::slotOnChildGeometryChanged(QObject* item, QRectF newGeometry, QRectF oldGeometry) void AbstractLayout::slotOnChildGeometryChanged(QObject* item, QRectF newGeometry, QRectF oldGeometry)
{ {
if (!m_isRelocating){ if (!m_isRelocating && !isLoading()){
if (m_layoutType == Layout){ if (m_layoutType == Layout){
relocateChildren(); relocateChildren();
updateLayoutSize(); updateLayoutSize();
@ -346,10 +343,13 @@ void AbstractLayout::setLayoutSpacing(int layoutSpacing)
if (m_layoutSpacing != layoutSpacing){ if (m_layoutSpacing != layoutSpacing){
int oldValue = m_layoutSpacing; int oldValue = m_layoutSpacing;
m_layoutSpacing = layoutSpacing; m_layoutSpacing = layoutSpacing;
if (!isLoading()){
int delta = (m_layoutSpacing - oldValue) * (m_children.count()-1); int delta = (m_layoutSpacing - oldValue) * (m_children.count()-1);
notify("layoutSpacing", oldValue, m_layoutSpacing); notify("layoutSpacing", oldValue, m_layoutSpacing);
setWidth(width() + delta); setWidth(width() + delta);
} }
relocateChildren();
}
} }
bool AbstractLayout::hideEmptyItems() const bool AbstractLayout::hideEmptyItems() const