mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-23 16:22:58 +03:00
0fca7169d3
except those placed in 3rdparty directories.
33 lines
846 B
C++
33 lines
846 B
C++
#ifndef LRDESIGNERPLUGININTERFACE_H
|
|
#define LRDESIGNERPLUGININTERFACE_H
|
|
|
|
#include "lrreportdesignwindowintrerface.h"
|
|
|
|
#include <QString>
|
|
#include <QVariant>
|
|
#include <QtPlugin>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QSettings;
|
|
class QMainWindow;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace LimeReport {
|
|
class ReportDesignWindow;
|
|
class ReportEnginePrivateInterface;
|
|
} // namespace LimeReport
|
|
|
|
class LimeReportDesignerPluginInterface {
|
|
public:
|
|
virtual ~LimeReportDesignerPluginInterface() { }
|
|
virtual LimeReport::ReportDesignWindowInterface*
|
|
getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget* parent = 0,
|
|
QSettings* settings = 0)
|
|
= 0;
|
|
};
|
|
|
|
Q_DECLARE_INTERFACE(LimeReportDesignerPluginInterface,
|
|
"ru.limereport.LimeReport.DesignerPluginInterface/1.0")
|
|
|
|
#endif // LRDESIGNERPLUGININTERFACE_H
|