0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-01 19:51:30 +03:00

plugin finished

This commit is contained in:
Arin Alexander
2017-11-27 23:14:05 +03:00
parent 0fb1ba1bd8
commit 911eb1102a
25 changed files with 270 additions and 455 deletions

View File

@@ -5,6 +5,7 @@
#include <QVariant>
#include <QtPlugin>
#include "lrreportdesignwindowintrerface.h"
QT_BEGIN_NAMESPACE
class QSettings;
@@ -19,10 +20,7 @@ namespace LimeReport {
class LimeReportPluginInterface {
public:
virtual ~LimeReportPluginInterface() { }
virtual QString getString() const = 0;
virtual QVariant getVar() const = 0;
virtual QMainWindow* getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget *parent = 0, QSettings* settings=0) = 0;
virtual LimeReport::ReportDesignWindowInterface* getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget *parent = 0, QSettings* settings=0) = 0;
};
Q_DECLARE_INTERFACE( LimeReportPluginInterface, "ru.limereport.LimeReport.DesignerPluginInterface/1.0" )