0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-23 08:29:07 +03:00

ReportEnginePrivate has been changed to ReportEngine in PrewiewWindow and DesignerWindow

This commit is contained in:
Arin Alexander
2017-03-22 14:42:09 +03:00
parent 0505801e3a
commit 188ab54ee2
12 changed files with 44 additions and 25 deletions

View File

@@ -12,6 +12,7 @@ class PreviewReportWidget;
class PreviewReportWidgetPrivate;
class ReportEnginePrivate;
class ReportEngine;
class LIMEREPORT_EXPORT PreviewReportWidget : public QWidget
{
@@ -20,7 +21,7 @@ class LIMEREPORT_EXPORT PreviewReportWidget : public QWidget
friend class PreviewReportWindow;
friend class PreviewReportWidgetPrivate;
public:
explicit PreviewReportWidget(ReportEnginePrivate *report, QWidget *parent = 0);
explicit PreviewReportWidget(ReportEngine *report, QWidget *parent = 0);
~PreviewReportWidget();
public slots:
void refreshPages();

View File

@@ -63,11 +63,15 @@ class DataSourceManager;
class ReportEnginePrivate;
class PageDesignIntf;
class PageItemDesignIntf;
class ReportDesignWidget;
class PreviewReportWidget;
typedef QList< QSharedPointer<PageItemDesignIntf> > ReportPages;
class LIMEREPORT_EXPORT ReportEngine : public QObject{
Q_OBJECT
friend class ReportDesignWidget;
friend class PreviewReportWidget;
public:
static void setSettings(QSettings *value){m_settings=value;}
public: