mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-23 20:22:58 +03:00
22 lines
499 B
C++
22 lines
499 B
C++
#ifndef LRTEAROFFBAND_H
|
|
#define LRTEAROFFBAND_H
|
|
#include "lrbanddesignintf.h"
|
|
|
|
namespace LimeReport {
|
|
|
|
class TearOffBand : public BandDesignIntf
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TearOffBand(QObject* owner = 0, QGraphicsItem *parent=0);
|
|
virtual BaseDesignIntf* createSameTypeItem(QObject* owner=0, QGraphicsItem* parent=0);
|
|
protected:
|
|
QColor bandColor() const;
|
|
bool isUnique() const {return true;}
|
|
bool isFooter() const{ return true;}
|
|
};
|
|
|
|
} // namespace LimeReport
|
|
|
|
#endif // TEAROFFBAND_H
|