You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1015 B
45 lines
1015 B
#ifndef TESTPLUGIN_H |
|
#define TESTPLUGIN_H |
|
|
|
//Include actual plugininterface.h for your version of QupZilla |
|
//This file is available to download at QupZilla website |
|
|
|
#include "plugininterface.h" |
|
|
|
//For clean plugin directory, please build necessary files into |
|
//plugin in .qrc data files |
|
|
|
#include <QDebug> |
|
#include <QLabel> |
|
#include <QMessageBox> |
|
#include <QWebElement> |
|
#include <QVBoxLayout> |
|
|
|
class TestPlugin : public QObject, public PluginInterface |
|
{ |
|
Q_OBJECT |
|
Q_INTERFACES(PluginInterface) |
|
|
|
public: |
|
PluginSpec pluginSpec(); |
|
|
|
void init(const QString &sPath); |
|
void unload(); |
|
bool testPlugin(); |
|
|
|
QTranslator* getTranslator(const QString &locale); |
|
void showSettings(QWidget* parent = 0); |
|
|
|
void populateWebViewMenu(QMenu* menu, WebView* view, const QWebHitTestResult &r); |
|
|
|
bool mousePress(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event); |
|
|
|
private slots: |
|
void actionSlot(); |
|
|
|
private: |
|
WebView* m_view; |
|
QString m_settingsPath; |
|
}; |
|
|
|
#endif // TESTPLUGIN_H
|
|
|