2017-09-27 13:04:56 +03:00
|
|
|
#ifndef LRTEAROFFBAND_H
|
|
|
|
#define LRTEAROFFBAND_H
|
2016-10-04 03:21:22 +03:00
|
|
|
#include "lrbanddesignintf.h"
|
|
|
|
|
|
|
|
namespace LimeReport {
|
|
|
|
|
2024-09-04 17:31:16 +03:00
|
|
|
class TearOffBand: public BandDesignIntf {
|
2016-10-04 03:21:22 +03:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2024-09-04 17:31:16 +03:00
|
|
|
TearOffBand(QObject* owner = 0, QGraphicsItem* parent = 0);
|
|
|
|
virtual BaseDesignIntf* createSameTypeItem(QObject* owner = 0, QGraphicsItem* parent = 0);
|
|
|
|
|
2016-10-04 03:21:22 +03:00
|
|
|
protected:
|
|
|
|
QColor bandColor() const;
|
2024-09-04 17:31:16 +03:00
|
|
|
bool isUnique() const { return true; }
|
|
|
|
bool isFooter() const { return true; }
|
2016-10-04 03:21:22 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace LimeReport
|
|
|
|
|
|
|
|
#endif // TEAROFFBAND_H
|