mirror of
				https://github.com/fralx/LimeReport.git
				synced 2025-11-04 07:01:26 +03:00 
			
		
		
		
	Consistency
This commit is contained in:
		@@ -67,7 +67,7 @@ class DataHeaderBand : public BandDesignIntf
 | 
				
			|||||||
    Q_PROPERTY(bool reprintOnEachPage READ reprintOnEachPage WRITE setReprintOnEachPage)
 | 
					    Q_PROPERTY(bool reprintOnEachPage READ reprintOnEachPage WRITE setReprintOnEachPage)
 | 
				
			||||||
    Q_PROPERTY(int columnsCount READ columnsCount WRITE setColumnsCount)
 | 
					    Q_PROPERTY(int columnsCount READ columnsCount WRITE setColumnsCount)
 | 
				
			||||||
    Q_PROPERTY(BandColumnsLayoutType columnsFillDirection READ columnsFillDirection WRITE setColumnsFillDirection)
 | 
					    Q_PROPERTY(BandColumnsLayoutType columnsFillDirection READ columnsFillDirection WRITE setColumnsFillDirection)
 | 
				
			||||||
    Q_PROPERTY(bool printAlways READ printAlways() WRITE setPrintAlways())
 | 
					    Q_PROPERTY(bool printAlways READ printAlways WRITE setPrintAlways)
 | 
				
			||||||
    Q_PROPERTY(bool repeatOnEachRow READ repeatOnEachRow WRITE setRepeatOnEachRow)
 | 
					    Q_PROPERTY(bool repeatOnEachRow READ repeatOnEachRow WRITE setRepeatOnEachRow)
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    DataHeaderBand(QObject* owner=0, QGraphicsItem* parent=0);
 | 
					    DataHeaderBand(QObject* owner=0, QGraphicsItem* parent=0);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -79,7 +79,7 @@ class SubDetailFooterBand : public BandDesignIntf
 | 
				
			|||||||
    Q_PROPERTY(int columnsCount READ columnsCount WRITE setColumnsCount)
 | 
					    Q_PROPERTY(int columnsCount READ columnsCount WRITE setColumnsCount)
 | 
				
			||||||
    Q_PROPERTY(bool splittable READ isSplittable WRITE setSplittable)
 | 
					    Q_PROPERTY(bool splittable READ isSplittable WRITE setSplittable)
 | 
				
			||||||
    Q_PROPERTY(BandColumnsLayoutType columnsFillDirection READ columnsFillDirection WRITE setColumnsFillDirection)
 | 
					    Q_PROPERTY(BandColumnsLayoutType columnsFillDirection READ columnsFillDirection WRITE setColumnsFillDirection)
 | 
				
			||||||
    Q_PROPERTY(bool printAlways READ printAlways() WRITE setPrintAlways())
 | 
					    Q_PROPERTY(bool printAlways READ printAlways WRITE setPrintAlways)
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    SubDetailFooterBand(QObject* owner = 0, QGraphicsItem* parent=0);
 | 
					    SubDetailFooterBand(QObject* owner = 0, QGraphicsItem* parent=0);
 | 
				
			||||||
    virtual bool isUnique() const;
 | 
					    virtual bool isUnique() const;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -46,10 +46,10 @@ class TextItem : public ContentItemDesignIntf, IPageInit {
 | 
				
			|||||||
    Q_OBJECT
 | 
					    Q_OBJECT
 | 
				
			||||||
    Q_PROPERTY(QString content READ content WRITE setContent)
 | 
					    Q_PROPERTY(QString content READ content WRITE setContent)
 | 
				
			||||||
    Q_PROPERTY(int margin READ marginSize WRITE setMarginSize)
 | 
					    Q_PROPERTY(int margin READ marginSize WRITE setMarginSize)
 | 
				
			||||||
    Q_PROPERTY(Qt::Alignment alignment READ alignment() WRITE setAlignment)
 | 
					    Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment)
 | 
				
			||||||
    Q_PROPERTY(AutoWidth autoWidth READ autoWidth() WRITE setAutoWidth)
 | 
					    Q_PROPERTY(AutoWidth autoWidth READ autoWidth WRITE setAutoWidth)
 | 
				
			||||||
    Q_PROPERTY(bool autoHeight READ autoHeight() WRITE setAutoHeight)
 | 
					    Q_PROPERTY(bool autoHeight READ autoHeight WRITE setAutoHeight)
 | 
				
			||||||
    Q_PROPERTY(QFont font READ font() WRITE setTextItemFont)
 | 
					    Q_PROPERTY(QFont font READ font WRITE setTextItemFont)
 | 
				
			||||||
    Q_PROPERTY(int backgroundOpacity READ opacity WRITE setBackgroundOpacity)
 | 
					    Q_PROPERTY(int backgroundOpacity READ opacity WRITE setBackgroundOpacity)
 | 
				
			||||||
    Q_PROPERTY(BGMode backgroundMode READ backgroundMode WRITE setBackgroundModeProperty)
 | 
					    Q_PROPERTY(BGMode backgroundMode READ backgroundMode WRITE setBackgroundModeProperty)
 | 
				
			||||||
    Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setBackgroundColorProperty)
 | 
					    Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setBackgroundColorProperty)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -99,7 +99,7 @@ namespace LimeReport {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    class PageDesignIntf : public QGraphicsScene, public ObjectLoadingStateIntf{
 | 
					    class PageDesignIntf : public QGraphicsScene, public ObjectLoadingStateIntf{
 | 
				
			||||||
        Q_OBJECT
 | 
					        Q_OBJECT
 | 
				
			||||||
        Q_PROPERTY(QObject* pageItem READ pageItem())
 | 
					        Q_PROPERTY(QObject* pageItem READ pageItem)
 | 
				
			||||||
    public:
 | 
					    public:
 | 
				
			||||||
        friend class PropertyChangedCommand;
 | 
					        friend class PropertyChangedCommand;
 | 
				
			||||||
        friend class InsertHLayoutCommand;
 | 
					        friend class InsertHLayoutCommand;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -105,7 +105,7 @@ private:
 | 
				
			|||||||
class ReportDesignWidget : public QWidget
 | 
					class ReportDesignWidget : public QWidget
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    Q_OBJECT
 | 
					    Q_OBJECT
 | 
				
			||||||
    Q_PROPERTY(QObject* datasourcesManager READ dataManager())
 | 
					    Q_PROPERTY(QObject* datasourcesManager READ dataManager)
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    enum ToolWindowType{
 | 
					    enum ToolWindowType{
 | 
				
			||||||
        WidgetBox = 1,
 | 
					        WidgetBox = 1,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -138,7 +138,7 @@ class ReportEnginePrivate : public QObject,
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    Q_OBJECT
 | 
					    Q_OBJECT
 | 
				
			||||||
    Q_DECLARE_PUBLIC(ReportEngine)
 | 
					    Q_DECLARE_PUBLIC(ReportEngine)
 | 
				
			||||||
    Q_PROPERTY(ACollectionProperty pages READ fakeCollectionReader())
 | 
					    Q_PROPERTY(ACollectionProperty pages READ fakeCollectionReader)
 | 
				
			||||||
    Q_PROPERTY(QObject* datasourcesManager READ dataManager)
 | 
					    Q_PROPERTY(QObject* datasourcesManager READ dataManager)
 | 
				
			||||||
    Q_PROPERTY(QObject* scriptContext READ scriptContext)
 | 
					    Q_PROPERTY(QObject* scriptContext READ scriptContext)
 | 
				
			||||||
    Q_PROPERTY(bool suppressFieldAndVarError READ suppressFieldAndVarError WRITE setSuppressFieldAndVarError)
 | 
					    Q_PROPERTY(bool suppressFieldAndVarError READ suppressFieldAndVarError WRITE setSuppressFieldAndVarError)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -86,7 +86,7 @@ private:
 | 
				
			|||||||
class ReportRender: public QObject
 | 
					class ReportRender: public QObject
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    Q_OBJECT
 | 
					    Q_OBJECT
 | 
				
			||||||
    Q_PROPERTY(QObject* datasourcesManager READ datasources())
 | 
					    Q_PROPERTY(QObject* datasourcesManager READ datasources)
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    enum DataRenderMode {StartNewPageAsNeeded, NotStartNewPage, ForcedStartPage};
 | 
					    enum DataRenderMode {StartNewPageAsNeeded, NotStartNewPage, ForcedStartPage};
 | 
				
			||||||
    enum BandPrintMode {PrintAlwaysPrintable, PrintNotAlwaysPrintable };
 | 
					    enum BandPrintMode {PrintAlwaysPrintable, PrintNotAlwaysPrintable };
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user