mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-10-02 03:53:21 +03:00
Tear-off band has been added
Tear-off band has been added Tear-off band has been added
This commit is contained in:
20
limereport/bands/lrtearoffband.h
Normal file
20
limereport/bands/lrtearoffband.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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
|
Reference in New Issue
Block a user