2017-11-24 00:13:47 +03:00
|
|
|
#ifndef LRDESIGNERPLUGIN_H
|
|
|
|
#define LRDESIGNERPLUGIN_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <lrdesignerplugininterface.h>
|
|
|
|
|
2017-11-27 23:14:05 +03:00
|
|
|
class ReportDesignerFactoryPlugin : public QObject, public LimeReportPluginInterface {
|
2017-11-24 00:13:47 +03:00
|
|
|
Q_OBJECT
|
|
|
|
Q_PLUGIN_METADATA(IID "ru.limereport.DersignerFactoryInterface")
|
|
|
|
Q_INTERFACES( LimeReportPluginInterface )
|
|
|
|
|
|
|
|
public:
|
2017-11-27 23:14:05 +03:00
|
|
|
~ReportDesignerFactoryPlugin();
|
|
|
|
LimeReport::ReportDesignWindowInterface* getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget* parent, QSettings* settings);
|
2017-11-24 00:13:47 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|