mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-26 21:38:08 +03:00
dc41959d52
Tear-off band has been added Tear-off band has been added
21 lines
448 B
C++
21 lines
448 B
C++
#ifndef TEAROFFBAND_H
|
|
#define TEAROFFBAND_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(){ return true;}
|
|
};
|
|
|
|
} // namespace LimeReport
|
|
|
|
#endif // TEAROFFBAND_H
|