2011-03-02 16:57:41 +01:00
|
|
|
#ifndef TESTPLUGIN_H
|
|
|
|
#define TESTPLUGIN_H
|
|
|
|
|
|
|
|
//Include actual plugininterface.h for your version of QupZilla
|
|
|
|
//This file is available to download at QupZilla website
|
|
|
|
|
2012-02-18 14:47:38 +01:00
|
|
|
#include "plugininterface.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
//For clean plugin directory, please build necessary files into
|
|
|
|
//plugin in .qrc data files
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QWebElement>
|
2012-02-20 15:56:26 +01:00
|
|
|
#include <QVBoxLayout>
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
class TestPlugin : public QObject, public PluginInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
|
|
|
|
|
|
|
public:
|
2012-02-19 16:01:51 +01:00
|
|
|
PluginSpec pluginSpec();
|
|
|
|
|
|
|
|
void init(const QString &sPath);
|
|
|
|
void unload();
|
2011-03-02 16:57:41 +01:00
|
|
|
bool testPlugin();
|
|
|
|
|
2012-02-19 16:01:51 +01:00
|
|
|
QTranslator* getTranslator(const QString &locale);
|
|
|
|
void showSettings(QWidget* parent = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-19 17:50:02 +01:00
|
|
|
void populateWebViewMenu(QMenu* menu, WebView* view, const QWebHitTestResult &r);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void actionSlot();
|
2012-02-19 16:01:51 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
2012-02-19 17:50:02 +01:00
|
|
|
WebView* m_view;
|
|
|
|
QString m_settingsPath;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TESTPLUGIN_H
|