2017-11-24 00:13:47 +03:00
|
|
|
#ifndef LRDESIGNERPLUGIN_H
|
|
|
|
#define LRDESIGNERPLUGIN_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2024-09-04 17:31:16 +03:00
|
|
|
|
2017-11-24 00:13:47 +03:00
|
|
|
#include <lrdesignerplugininterface.h>
|
|
|
|
|
2024-09-04 17:31:16 +03:00
|
|
|
class ReportDesignerFactoryPlugin: public QObject, public LimeReportDesignerPluginInterface {
|
2017-11-24 00:13:47 +03:00
|
|
|
Q_OBJECT
|
2017-11-30 21:23:11 +03:00
|
|
|
#if QT_VERSION >= 0x050000
|
2017-11-24 00:13:47 +03:00
|
|
|
Q_PLUGIN_METADATA(IID "ru.limereport.DersignerFactoryInterface")
|
2017-11-30 21:23:11 +03:00
|
|
|
#endif
|
2024-09-04 17:31:16 +03:00
|
|
|
Q_INTERFACES(LimeReportDesignerPluginInterface)
|
2017-11-24 00:13:47 +03:00
|
|
|
|
|
|
|
public:
|
2017-11-27 23:14:05 +03:00
|
|
|
~ReportDesignerFactoryPlugin();
|
2024-09-04 17:31:16 +03:00
|
|
|
LimeReport::ReportDesignWindowInterface*
|
|
|
|
getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget* parent,
|
|
|
|
QSettings* settings);
|
2017-11-24 00:13:47 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|