mirror of
				https://github.com/fralx/LimeReport.git
				synced 2025-11-04 07:01:26 +03:00 
			
		
		
		
	Change to subforder project model.
This commit is contained in:
		
							
								
								
									
										150
									
								
								limereport/lrreportengine_p.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										150
									
								
								limereport/lrreportengine_p.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,150 @@
 | 
			
		||||
/***************************************************************************
 | 
			
		||||
 *   This file is part of the Lime Report project                          *
 | 
			
		||||
 *   Copyright (C) 2015 by Alexander Arin                                  *
 | 
			
		||||
 *   arin_a@bk.ru                                                          *
 | 
			
		||||
 *                                                                         *
 | 
			
		||||
 **                   GNU General Public License Usage                    **
 | 
			
		||||
 *                                                                         *
 | 
			
		||||
 *   This library is free software: you can redistribute it and/or modify  *
 | 
			
		||||
 *   it under the terms of the GNU General Public License as published by  *
 | 
			
		||||
 *   the Free Software Foundation, either version 3 of the License, or     *
 | 
			
		||||
 *   (at your option) any later version.                                   *
 | 
			
		||||
 *   You should have received a copy of the GNU General Public License     *
 | 
			
		||||
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 | 
			
		||||
 *                                                                         *
 | 
			
		||||
 **                  GNU Lesser General Public License                    **
 | 
			
		||||
 *                                                                         *
 | 
			
		||||
 *   This library is free software: you can redistribute it and/or modify  *
 | 
			
		||||
 *   it under the terms of the GNU Lesser General Public License as        *
 | 
			
		||||
 *   published by the Free Software Foundation, either version 3 of the    *
 | 
			
		||||
 *   License, or (at your option) any later version.                       *
 | 
			
		||||
 *   You should have received a copy of the GNU Lesser General Public      *
 | 
			
		||||
 *   License along with this library.                                      *
 | 
			
		||||
 *   If not, see <http://www.gnu.org/licenses/>.                           *
 | 
			
		||||
 *                                                                         *
 | 
			
		||||
 *   This library is distributed in the hope that it will be useful,       *
 | 
			
		||||
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 | 
			
		||||
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 | 
			
		||||
 *   GNU General Public License for more details.                          *
 | 
			
		||||
 ****************************************************************************/
 | 
			
		||||
#ifndef LRREPORTDESIGNINTF_P_H
 | 
			
		||||
#define LRREPORTDESIGNINTF_P_H
 | 
			
		||||
 | 
			
		||||
#include <QObject>
 | 
			
		||||
#include <QSharedPointer>
 | 
			
		||||
#include <QMainWindow>
 | 
			
		||||
#include "lrreportengine.h"
 | 
			
		||||
#include "lrcollection.h"
 | 
			
		||||
#include "lrglobal.h"
 | 
			
		||||
#include "lrdatasourcemanager.h"
 | 
			
		||||
#include "lrbanddesignintf.h"
 | 
			
		||||
#include "lrreportrender.h"
 | 
			
		||||
#include "serializators/lrstorageintf.h"
 | 
			
		||||
#include "lrscriptenginemanager.h"
 | 
			
		||||
 | 
			
		||||
namespace LimeReport{
 | 
			
		||||
 | 
			
		||||
class PageDesignIntf;
 | 
			
		||||
class PrintRange;
 | 
			
		||||
 | 
			
		||||
//TODO: Add on render callback
 | 
			
		||||
 | 
			
		||||
class ReportEnginePrivate : public QObject, public ICollectionContainer
 | 
			
		||||
{
 | 
			
		||||
    Q_OBJECT
 | 
			
		||||
    Q_DECLARE_PUBLIC(ReportEngine)
 | 
			
		||||
    Q_PROPERTY(ACollectionProperty pages READ fakeCollectionReader())
 | 
			
		||||
    Q_PROPERTY(QObject* datasourcesManager READ dataManager())
 | 
			
		||||
public:
 | 
			
		||||
    static void printReport(ItemsReaderIntf::Ptr reader, QPrinter &printer);
 | 
			
		||||
    static void printReport(ReportPages pages, QPrinter &printer, const PrintRange &printRange);
 | 
			
		||||
public:
 | 
			
		||||
    explicit ReportEnginePrivate(QObject *parent = 0);
 | 
			
		||||
    virtual ~ReportEnginePrivate();
 | 
			
		||||
    PageDesignIntf*     appendPage(const QString &pageName = "");
 | 
			
		||||
    PageDesignIntf*     createPreviewPage();
 | 
			
		||||
    PageDesignIntf*     pageAt(int index){return (index<=(m_pages.count()-1)) ? m_pages.at(index):0;}
 | 
			
		||||
    int                 pageCount() {return m_pages.count();}
 | 
			
		||||
    DataSourceManager*  dataManager(){return m_datasources;}
 | 
			
		||||
    IDataSourceManager* dataManagerIntf(){return m_datasources;}
 | 
			
		||||
 | 
			
		||||
    IScriptEngineManager* scriptManagerIntf(){
 | 
			
		||||
        ScriptEngineManager::instance().setDataManager(dataManager());
 | 
			
		||||
        return &ScriptEngineManager::instance();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void    clearReport();
 | 
			
		||||
    bool    printReport(QPrinter *printer=0);
 | 
			
		||||
    void    printToFile(const QString& fileName);
 | 
			
		||||
    bool    printToPDF(const QString& fileName);
 | 
			
		||||
    void    previewReport();
 | 
			
		||||
    void    designReport();
 | 
			
		||||
    void    setSettings(QSettings* value);
 | 
			
		||||
    void    setShowProgressDialog(bool value){m_showProgressDialog = value;}
 | 
			
		||||
    QSettings*  settings();
 | 
			
		||||
    bool    loadFromFile(const QString& fileName);
 | 
			
		||||
    bool    loadFromByteArray(QByteArray *data, const QString& name = "");
 | 
			
		||||
    bool    loadFromString(const QString& report, const QString& name = "");
 | 
			
		||||
    QString reportFileName(){return m_fileName;}
 | 
			
		||||
    bool    saveToFile();
 | 
			
		||||
    bool    saveToFile(const QString& fileName);
 | 
			
		||||
    QByteArray  saveToByteArray();
 | 
			
		||||
    QString saveToString();
 | 
			
		||||
    bool    isNeedToSave();
 | 
			
		||||
    QString lastError();
 | 
			
		||||
    ReportEngine * q_ptr;
 | 
			
		||||
    PageDesignIntf *createPreviewScene(QObject *parent);
 | 
			
		||||
    void emitSaveReport();
 | 
			
		||||
    bool emitLoadReport();
 | 
			
		||||
    bool isSaved();
 | 
			
		||||
    void setCurrentReportsDir(const QString& dirName);
 | 
			
		||||
    QString currentReportsDir(){ return m_reportsDir;}
 | 
			
		||||
    void setReportName(const QString& reportName){ m_reportName=reportName;}
 | 
			
		||||
    QString reportName(){ return m_reportName;}
 | 
			
		||||
    bool hasActivePreview(){return m_activePreview;}
 | 
			
		||||
signals:
 | 
			
		||||
    void    pagesLoadFinished();
 | 
			
		||||
    void    datasourceCollectionLoadFinished(const QString& collectionName);
 | 
			
		||||
    void    cleared();
 | 
			
		||||
    void    renderStarted();
 | 
			
		||||
    void    renderFinished();
 | 
			
		||||
    void    renderPageFinished(int renderedPageCount);
 | 
			
		||||
    void    onLoad(bool& loaded);
 | 
			
		||||
    void    onSave();
 | 
			
		||||
public slots:
 | 
			
		||||
    void    cancelRender();
 | 
			
		||||
protected:
 | 
			
		||||
    PageDesignIntf* createPage(const QString& pageName="");
 | 
			
		||||
protected slots:
 | 
			
		||||
    void    slotDataSourceCollectionLoaded(const QString& collectionName);
 | 
			
		||||
private slots:
 | 
			
		||||
    void slotPreviewWindowDestroed(QObject *window);
 | 
			
		||||
private:
 | 
			
		||||
    //ICollectionContainer
 | 
			
		||||
    virtual QObject*    createElement(const QString&,const QString&);
 | 
			
		||||
    virtual int         elementsCount(const QString&);
 | 
			
		||||
    virtual QObject*    elementAt(const QString&, int index);
 | 
			
		||||
    virtual void        collectionLoadFinished(const QString&);
 | 
			
		||||
    void    saveError(QString message);
 | 
			
		||||
    void    showError(QString message);
 | 
			
		||||
    //ICollectionContainer
 | 
			
		||||
    ReportPages renderToPages();
 | 
			
		||||
    QString renderToString();
 | 
			
		||||
private:
 | 
			
		||||
    QList<PageDesignIntf*> m_pages;
 | 
			
		||||
    DataSourceManager* m_datasources;
 | 
			
		||||
    ReportRender::Ptr m_reportRender;
 | 
			
		||||
    QString m_fileName;
 | 
			
		||||
    QString m_lastError;
 | 
			
		||||
    QSettings* m_settings;
 | 
			
		||||
    bool m_ownedSettings;
 | 
			
		||||
    QScopedPointer<QPrinter> m_printer;
 | 
			
		||||
    bool m_printerSelected;
 | 
			
		||||
    bool m_showProgressDialog;
 | 
			
		||||
    QString m_reportsDir;
 | 
			
		||||
    QString m_reportName;
 | 
			
		||||
    QMainWindow* m_activePreview;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
#endif // LRREPORTDESIGNINTF_P_H
 | 
			
		||||
		Reference in New Issue
	
	Block a user