mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-23 20:22:58 +03:00
Designer plugin interface renamed
This commit is contained in:
parent
39253b1f55
commit
1a189054f7
@ -4,12 +4,12 @@
|
||||
#include <QMainWindow>
|
||||
#include <lrdesignerplugininterface.h>
|
||||
|
||||
class ReportDesignerFactoryPlugin : public QObject, public LimeReportPluginInterface {
|
||||
class ReportDesignerFactoryPlugin : public QObject, public LimeReportDesignerPluginInterface {
|
||||
Q_OBJECT
|
||||
#if QT_VERSION >= 0x050000
|
||||
Q_PLUGIN_METADATA(IID "ru.limereport.DersignerFactoryInterface")
|
||||
#endif
|
||||
Q_INTERFACES( LimeReportPluginInterface )
|
||||
Q_INTERFACES( LimeReportDesignerPluginInterface )
|
||||
|
||||
public:
|
||||
~ReportDesignerFactoryPlugin();
|
||||
|
@ -17,12 +17,12 @@ namespace LimeReport {
|
||||
class ReportEnginePrivateInterface;
|
||||
}
|
||||
|
||||
class LimeReportPluginInterface {
|
||||
class LimeReportDesignerPluginInterface {
|
||||
public:
|
||||
virtual ~LimeReportPluginInterface() { }
|
||||
virtual ~LimeReportDesignerPluginInterface() { }
|
||||
virtual LimeReport::ReportDesignWindowInterface* getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget *parent = 0, QSettings* settings=0) = 0;
|
||||
};
|
||||
|
||||
Q_DECLARE_INTERFACE( LimeReportPluginInterface, "ru.limereport.LimeReport.DesignerPluginInterface/1.0" )
|
||||
Q_DECLARE_INTERFACE( LimeReportDesignerPluginInterface, "ru.limereport.LimeReport.DesignerPluginInterface/1.0" )
|
||||
|
||||
#endif // LRDESIGNERPLUGININTERFACE_H
|
||||
|
@ -113,8 +113,8 @@ ReportEnginePrivate::ReportEnginePrivate(QObject *parent) :
|
||||
foreach( const QString& pluginName, pluginsDir.entryList( QDir::Files ) ) {
|
||||
QPluginLoader loader( pluginsDir.absoluteFilePath( pluginName ) );
|
||||
if( loader.load() ) {
|
||||
if( LimeReportPluginInterface* myPlugin = qobject_cast< LimeReportPluginInterface* >( loader.instance() ) ) {
|
||||
m_designerFactory = myPlugin;
|
||||
if( LimeReportDesignerPluginInterface* designerPlugin = qobject_cast< LimeReportDesignerPluginInterface* >( loader.instance() ) ) {
|
||||
m_designerFactory = designerPlugin;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -264,7 +264,7 @@ private:
|
||||
QLocale::Language m_reportLanguage;
|
||||
void activateLanguage(QLocale::Language language);
|
||||
Qt::LayoutDirection m_previewLayoutDirection;
|
||||
LimeReportPluginInterface* m_designerFactory;
|
||||
LimeReportDesignerPluginInterface* m_designerFactory;
|
||||
QString m_styleSheet;
|
||||
QLocale::Language m_currentDesignerLanguage;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user