mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-23 16:22:58 +03:00
0fca7169d3
except those placed in 3rdparty directories.
22 lines
509 B
C++
22 lines
509 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
|