0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00
LimeReport/limereport/lrbandsmanager.cpp

107 lines
4.8 KiB
C++
Raw Permalink Normal View History

2016-02-17 10:11:00 +03:00
/***************************************************************************
* This file is part of the Lime Report project *
2021-08-18 20:21:36 +03:00
* Copyright (C) 2021 by Alexander Arin *
2016-02-17 10:11:00 +03:00
* arin_a@bk.ru *
* *
** GNU General Public License Usage **
* *
* This library is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
** GNU Lesser General Public License **
* *
* This library is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library. *
* If not, see <http://www.gnu.org/licenses/>. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
****************************************************************************/
#include "lrbandsmanager.h"
#include "lrdataband.h"
#include "lrglobal.h"
#include "lrgroupbands.h"
2016-02-17 10:11:00 +03:00
#include "lrpagefooter.h"
#include "lrpageheader.h"
2016-02-17 10:11:00 +03:00
#include "lrreportfooter.h"
#include "lrreportheader.h"
2016-02-17 10:11:00 +03:00
#include "lrsubdetailband.h"
#include "lrtearoffband.h"
2016-02-17 10:11:00 +03:00
namespace LimeReport {
BandsManager::BandsManager() { }
2016-02-17 10:11:00 +03:00
QStringList BandsManager::bandNames()
{
QStringList bandsList;
bandsList << QObject::tr("Report Header") << QObject::tr("Page Header")
<< QObject::tr("Page Footer") << QObject::tr("Report Footer") << QObject::tr("Data")
<< QObject::tr("SubDetail");
2016-02-17 10:11:00 +03:00
foreach (ItemAttribs attr,
LimeReport::DesignElementsFactory::instance().attribsMap().values()) {
if ((attr.m_tag == LimeReport::Const::bandTAG) && (!bandsList.contains(attr.m_alias)))
2016-02-17 10:11:00 +03:00
bandsList.append(attr.m_alias);
}
return bandsList;
}
BandDesignIntf* BandsManager::createBand(const QString& type, QObject* owner,
LimeReport::BaseDesignIntf* parent)
2016-02-17 10:11:00 +03:00
{
QString identity = LimeReport::DesignElementsFactory::instance().attribsMap().key(
LimeReport::ItemAttribs(type, LimeReport::Const::bandTAG));
return dynamic_cast<LimeReport::BandDesignIntf*>(
LimeReport::DesignElementsFactory::instance().objectCreator(identity)(owner, parent));
2016-02-17 10:11:00 +03:00
}
BandDesignIntf* BandsManager::createBand(BandDesignIntf::BandsType bandType, QObject* owner,
BaseDesignIntf* parent)
2016-02-17 10:11:00 +03:00
{
switch (bandType) {
2016-02-17 10:11:00 +03:00
case BandDesignIntf::ReportHeader:
return new ReportHeader(owner, parent);
2016-02-17 10:11:00 +03:00
case BandDesignIntf::ReportFooter:
return new ReportFooter(owner, parent);
2016-02-17 10:11:00 +03:00
case BandDesignIntf::PageHeader:
return new PageHeader(owner, parent);
2016-02-17 10:11:00 +03:00
case BandDesignIntf::PageFooter:
return new PageFooter(owner, parent);
2016-02-17 10:11:00 +03:00
case BandDesignIntf::Data:
return new DataBand(owner, parent);
2016-02-17 10:11:00 +03:00
case BandDesignIntf::SubDetailBand:
return new SubDetailBand(owner, parent);
2016-02-17 10:11:00 +03:00
case BandDesignIntf::SubDetailHeader:
return new SubDetailHeaderBand(owner, parent);
2016-02-17 10:11:00 +03:00
case BandDesignIntf::SubDetailFooter:
return new SubDetailFooterBand(owner, parent);
2016-02-17 10:11:00 +03:00
case BandDesignIntf::GroupHeader:
return new GroupBandHeader(owner, parent);
case BandDesignIntf::GroupFooter:
return new GroupBandFooter(owner, parent);
2016-02-17 10:18:19 +03:00
case BandDesignIntf::DataHeader:
return new DataHeaderBand(owner, parent);
case BandDesignIntf::DataFooter:
return new DataFooterBand(owner, parent);
case BandDesignIntf::TearOffBand:
return new TearOffBand(owner, parent);
2016-02-17 10:11:00 +03:00
}
return 0;
}
} // namespace LimeReport