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 {
|
|
|
|
|
|
|
|
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;
|
2017-04-08 06:02:58 +03:00
|
|
|
virtual bool isUnique() const {return true;}
|
2016-10-04 03:21:22 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace LimeReport
|
|
|
|
|
|
|
|
#endif // TEAROFFBAND_H
|