0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-25 00:54:39 +03:00
LimeReport/limereport/bands/lrsubdetailband.cpp

140 lines
5.4 KiB
C++
Raw 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 "lrsubdetailband.h"
2016-02-17 10:11:00 +03:00
#include "lrdesignelementsfactory.h"
#include "lrglobal.h"
const QString xmlTagBand = QLatin1String("SubDetail");
const QString xmlTagHeader = QLatin1String("SubDetailHeader");
const QString xmlTagFooter = QLatin1String("SubDetailFooter");
const QColor BAND_COLOR = Qt::red;
namespace {
2016-02-17 10:11:00 +03:00
LimeReport::BaseDesignIntf* createBand(QObject* owner, LimeReport::BaseDesignIntf* parent)
{
return new LimeReport::SubDetailBand(owner, parent);
2016-02-17 10:11:00 +03:00
}
2016-10-18 15:00:26 +03:00
bool VARIABLE_IS_NOT_USED registred = LimeReport::DesignElementsFactory::instance().registerCreator(
xmlTagBand, LimeReport::ItemAttribs(QObject::tr("SubDetail"), LimeReport::Const::bandTAG),
createBand);
2016-02-17 10:11:00 +03:00
LimeReport::BaseDesignIntf* createHeader(QObject* owner, LimeReport::BaseDesignIntf* parent)
{
return new LimeReport::SubDetailHeaderBand(owner, parent);
2016-02-17 10:11:00 +03:00
}
bool VARIABLE_IS_NOT_USED registredHeader
= LimeReport::DesignElementsFactory::instance().registerCreator(
xmlTagHeader,
LimeReport::ItemAttribs(QObject::tr("SubDetailHeader"), LimeReport::Const::bandTAG),
createHeader);
2016-02-17 10:11:00 +03:00
LimeReport::BaseDesignIntf* createFooter(QObject* owner, LimeReport::BaseDesignIntf* parent)
{
return new LimeReport::SubDetailFooterBand(owner, parent);
2016-02-17 10:11:00 +03:00
}
bool VARIABLE_IS_NOT_USED registredFooter
= LimeReport::DesignElementsFactory::instance().registerCreator(
2016-02-17 10:11:00 +03:00
xmlTagFooter,
LimeReport::ItemAttribs(QObject::tr("SubDetailFooter"), LimeReport::Const::bandTAG),
createFooter);
2016-02-17 10:11:00 +03:00
} // namespace
namespace LimeReport {
2016-02-17 10:11:00 +03:00
// SubDetailBand
2016-02-17 10:11:00 +03:00
SubDetailBand::SubDetailBand(QObject* owner, QGraphicsItem* parent):
DataBandDesignIntf(BandDesignIntf::SubDetailBand, xmlTagBand, owner, parent)
2016-02-17 10:11:00 +03:00
{
setBandTypeText(tr("SubDetail"));
setFixedPos(false);
setMarkerColor(bandColor());
}
bool SubDetailBand::isHasHeader() const
{
return isConnectedToBand(BandDesignIntf::SubDetailHeader);
}
bool SubDetailBand::isHasFooter() const
{
return isConnectedToBand(BandDesignIntf::SubDetailFooter);
}
BaseDesignIntf* SubDetailBand::createSameTypeItem(QObject* owner, QGraphicsItem* parent)
2016-02-17 10:11:00 +03:00
{
return new SubDetailBand(owner, parent);
2016-02-17 10:11:00 +03:00
}
QColor SubDetailBand::bandColor() const { return BAND_COLOR; }
2016-02-17 10:11:00 +03:00
// SubDetailHeaderBand
2016-02-17 10:11:00 +03:00
SubDetailHeaderBand::SubDetailHeaderBand(QObject* owner, QGraphicsItem* parent):
BandDesignIntf(BandDesignIntf::SubDetailHeader, xmlTagHeader, owner, parent)
2016-02-17 10:11:00 +03:00
{
2016-02-17 10:18:19 +03:00
setBandTypeText(tr("SubDetailHeader"));
2016-02-17 10:11:00 +03:00
setMarkerColor(bandColor());
}
bool SubDetailHeaderBand::isUnique() const { return false; }
2016-02-17 10:11:00 +03:00
QColor SubDetailHeaderBand::bandColor() const { return BAND_COLOR; }
2016-02-17 10:11:00 +03:00
BaseDesignIntf* SubDetailHeaderBand::createSameTypeItem(QObject* owner, QGraphicsItem* parent)
2016-02-17 10:11:00 +03:00
{
return new SubDetailHeaderBand(owner, parent);
2016-02-17 10:11:00 +03:00
}
// SubDetailFooterBand
2016-02-17 10:11:00 +03:00
SubDetailFooterBand::SubDetailFooterBand(QObject* owner, QGraphicsItem* parent):
BandDesignIntf(BandDesignIntf::SubDetailFooter, xmlTagFooter, owner, parent)
2016-02-17 10:11:00 +03:00
{
setMarkerColor(bandColor());
}
bool SubDetailFooterBand::isUnique() const { return false; }
2016-02-17 10:11:00 +03:00
QColor SubDetailFooterBand::bandColor() const { return BAND_COLOR; }
2016-02-17 10:11:00 +03:00
BaseDesignIntf* SubDetailFooterBand::createSameTypeItem(QObject* owner, QGraphicsItem* parent)
2016-02-17 10:11:00 +03:00
{
return new SubDetailFooterBand(owner, parent);
2016-02-17 10:11:00 +03:00
}
} // namespace LimeReport