diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-11-28 18:49:35 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-11-28 18:49:35 +0100 |
commit | e7faff501cefd8fb773bf0616f7d43bd5cdf9f0a (patch) | |
tree | 9d03b385b1eca31487d5df6c0460e335bca6e663 /src/webpluginfactory.h | |
parent | removed current bugged adblock implementation. (diff) | |
parent | clicktoflash : more cleanup (diff) | |
download | rekonq-e7faff501cefd8fb773bf0616f7d43bd5cdf9f0a.tar.xz |
Merge commit 'refs/merge-requests/2237' of git://gitorious.org/rekonq/mainline into FLASH
Conflicts:
src/CMakeLists.txt
Diffstat (limited to 'src/webpluginfactory.h')
-rw-r--r-- | src/webpluginfactory.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/webpluginfactory.h b/src/webpluginfactory.h index 30a366d4..c1e4c28f 100644 --- a/src/webpluginfactory.h +++ b/src/webpluginfactory.h @@ -50,6 +50,20 @@ public: const QStringList &argumentValues) const; virtual QList<Plugin> plugins() const; + +signals: + + void signalLoadClickToFlash(bool) const; + +public slots: + void setLoadClickToFlash(bool load); + +private: + /** + When true, force loading of next flash animation (don't show clicktoflash) + We use signals/slots to set this property because QWebPluginFactory::create is const + */ + bool loadClickToFlash; }; #endif // WEB_PLUGIN_FACTORY_H |