Finish 1.4.124

# Conflicts:
#	limereport/lrbanddesignintf.h
#	limereport/lrpagedesignintf.cpp
#	limereport/lrpageitemdesignintf.h
#	translations/limereport_zh.ts
This commit is contained in:
Arin Alexander 2019-03-05 22:35:13 +03:00
commit c475159799
7 changed files with 78 additions and 32 deletions

View File

@ -120,7 +120,7 @@ RCC_DIR = $${ARCH_DIR}/$${BUILD_TYPE}/rcc
LIMEREPORT_VERSION_MAJOR = 1
LIMEREPORT_VERSION_MINOR = 4
LIMEREPORT_VERSION_RELEASE = 123
LIMEREPORT_VERSION_RELEASE = 124
LIMEREPORT_VERSION = '$${LIMEREPORT_VERSION_MAJOR}.$${LIMEREPORT_VERSION_MINOR}.$${LIMEREPORT_VERSION_RELEASE}'
DEFINES *= LIMEREPORT_VERSION_STR=\\\"$${LIMEREPORT_VERSION}\\\"

View File

@ -425,10 +425,23 @@ int BandDesignIntf::maxChildIndex(QSet<BandDesignIntf::BandsType> ignoredBands)
return curIndex;
}
int BandDesignIntf::rootIndex(BandDesignIntf* parentBand)
{
return rootBand(parentBand)->bandIndex();
}
BandDesignIntf *BandDesignIntf::rootBand(BandDesignIntf* parentBand)
{
BandDesignIntf* currentBand = this;
while (currentBand->parentBand() && currentBand->parentBand() != parentBand)
currentBand = currentBand->parentBand();
return currentBand;
}
int BandDesignIntf::minChildIndex(BandDesignIntf::BandsType bandType){
int curIndex = bandIndex();
foreach(BandDesignIntf* childBand, childBands()){
if (curIndex>childBand->bandIndex() && (childBand->bandType()>bandType)){
if (curIndex > childBand->bandIndex() && (childBand->bandType() > bandType)){
curIndex = childBand->bandIndex();
}
}
@ -440,7 +453,7 @@ int BandDesignIntf::minChildIndex(QSet<BandDesignIntf::BandsType> ignoredBands)
int curIndex = bandIndex();
foreach(BandDesignIntf* childBand, childBands()){
if (!ignoredBands.contains(childBand->bandType()) && childBand->bandIndex() < bandIndex()){
curIndex = std::min(curIndex, childBand->maxChildIndex(ignoredBands));
curIndex = std::min(curIndex, childBand->minChildIndex(ignoredBands));
}
}
return curIndex;

View File

@ -183,6 +183,9 @@ public:
int maxChildIndex(BandDesignIntf::BandsType bandType) const;
int maxChildIndex(QSet<BandsType> ignoredBands = QSet<BandDesignIntf::BandsType>()) const;
int rootIndex(BandDesignIntf *parentBand);
BandDesignIntf* rootBand(BandDesignIntf *parentBand);
BandDesignIntf* parentBand() const {return m_parentBand;}
QList<BandDesignIntf*> childBands() const{return m_childBands;}

View File

@ -2504,8 +2504,13 @@ CommandIf::Ptr BandMoveFromToCommand::create(PageDesignIntf* page, int from, int
bool BandMoveFromToCommand::doIt()
{
if (page() && page()->pageItem() && from != to) {
page()->pageItem()->moveBandFromTo(from, to);
return true;
BandDesignIntf* fromBand = page()->pageItem()->bandByIndex(from);
reverceTo = fromBand->minChildIndex();
if (fromBand){
page()->pageItem()->moveBandFromTo(from, to);
reverceFrom = fromBand->bandIndex();
return true;
}
}
return false;
}
@ -2513,7 +2518,7 @@ bool BandMoveFromToCommand::doIt()
void BandMoveFromToCommand::undoIt()
{
if (page() && page()->pageItem())
page()->pageItem()->moveBandFromTo(to, from);
page()->pageItem()->moveBandFromTo(reverceFrom, reverceTo);
}
}

View File

@ -467,6 +467,8 @@ namespace LimeReport {
private:
int from;
int to;
int reverceFrom;
int reverceTo;
};

View File

@ -771,47 +771,68 @@ void PageItemDesignIntf::swapBands(BandDesignIntf* band, BandDesignIntf* bandToS
}
QList<BandDesignIntf*> PageItemDesignIntf::createBandGroup(int beginIndex, int endIndex)
{
QList<BandDesignIntf*> result;
foreach(BandDesignIntf* curBand, m_bands){
if ( curBand->bandIndex() >= beginIndex && curBand->bandIndex() <= endIndex)
result.append(curBand);
}
qSort(result.begin(), result.end(), bandIndexLessThen);
return result;
}
void PageItemDesignIntf::moveBandFromTo(int from, int to)
{
BandDesignIntf* firstBand = 0;
BandDesignIntf* secondBand = 0;
int firstIndex = std::min(from,to);
int secondIndex = std::max(from,to);
QList<BandDesignIntf*> bandsToMove;
int moveIndex = 0;
BandDesignIntf* fromBand = 0;
BandDesignIntf* toBand = 0;
foreach(BandDesignIntf* band, bands()){
if (band->bandIndex() == from){
firstBand = band;
fromBand = band->rootBand(band->parentBand());
}
if (band->bandIndex() == to){
secondBand = band;
bandsToMove.append(band);
toBand = band->rootBand(band->parentBand());
}
if (fromBand && toBand) break;
}
foreach(BandDesignIntf* curBand, m_bands){
if ( curBand->bandIndex() > firstIndex && curBand->bandIndex() < secondIndex &&
curBand->bandType() == firstBand->bandType() &&
curBand != firstBand
)
bandsToMove.append(curBand);
}
qSort(bandsToMove.begin(), bandsToMove.end(), bandIndexLessThen);
if (!fromBand || !toBand) return;
if (from > to){
firstBand->changeBandIndex(secondBand->minChildIndex(), true);
moveIndex = firstBand->maxChildIndex()+1;
int beginIndex = 0;
int endIndex = 0;
if (from < to){
beginIndex = fromBand->maxChildIndex()+1;
endIndex = toBand->maxChildIndex();
} else {
moveIndex = firstBand->minChildIndex();
firstBand->changeBandIndex(secondBand->minChildIndex(), true);
beginIndex = toBand->minChildIndex();
endIndex = fromBand->minChildIndex()-1;
}
foreach(BandDesignIntf* curBand, bandsToMove){
curBand->changeBandIndex(moveIndex,true);
moveIndex = curBand->maxChildIndex() + 1;
QList<BandDesignIntf*> firstGroup = createBandGroup(fromBand->minChildIndex(), fromBand->maxChildIndex());
QList<BandDesignIntf*> secondGroup = createBandGroup(beginIndex, endIndex);
if (from < to){
int currentIndex = fromBand->minChildIndex();
foreach(BandDesignIntf* band, secondGroup){
band->setBandIndex(currentIndex);
currentIndex++;
}
foreach(BandDesignIntf* band, firstGroup){
band->setBandIndex(currentIndex);
currentIndex++;
}
} else {
int currentIndex = toBand->minChildIndex();
foreach(BandDesignIntf* band, firstGroup){
band->setBandIndex(currentIndex);
currentIndex++;
}
foreach(BandDesignIntf* band, secondGroup){
band->setBandIndex(currentIndex);
currentIndex++;
}
}
relocateBands();

View File

@ -137,6 +137,8 @@ public:
void swapBands(BandDesignIntf *band, BandDesignIntf *bandToSwap);
void moveBandFromTo(int from, int to);
QList<BandDesignIntf *> createBandGroup(int beginIndex, int endIndex);
bool isExtendedInDesignMode() const;
void setExtendedInDesignMode(bool isExtendedInDesignMode);
int extendedHeight() const;