#ifndef PYTHONQTWRAPPER_QWEBPLUGINFACTORY_H #define PYTHONQTWRAPPER_QWEBPLUGINFACTORY_H #include #include #include #include #include #include #include #include #include #include class PythonQtWrapper_QWebPluginFactory : public QObject { Q_OBJECT public: Q_ENUMS(Extension ) enum Extension{ }; public slots: void delete_QWebPluginFactory(QWebPluginFactory* obj) { delete obj; } QObject* create(QWebPluginFactory* theWrappedObject, const QString& mimeType, const QUrl& url, const QStringList& argumentNames, const QStringList& argumentValues) const; QList plugins(QWebPluginFactory* theWrappedObject) const; void refreshPlugins(QWebPluginFactory* theWrappedObject); bool supportsExtension(QWebPluginFactory* theWrappedObject, QWebPluginFactory::Extension extension) const; }; #endif // PYTHONQTWRAPPER_QWEBPLUGINFACTORY_H