From 067b99a053b6f8b1ccab507be8e828b2f72a1e43 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Wed, 10 Feb 2010 10:57:57 +0100 Subject: Fix copyright for 0.4 beta release --- src/webpluginfactory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/webpluginfactory.h') diff --git a/src/webpluginfactory.h b/src/webpluginfactory.h index c1e4c28f..384f0653 100644 --- a/src/webpluginfactory.h +++ b/src/webpluginfactory.h @@ -2,7 +2,8 @@ * * This file is a part of the rekonq project * -* Copyright (C) 2009 by Andrea Diamantini +* Copyright (C) 2009-2010 by Andrea Diamantini +* Copyright (C) 2010 by Matthieu Gicquel * * * This program is free software; you can redistribute it and/or -- cgit v1.2.1 From 8dda858403d283f1850c0298aac0fb5212a27952 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Fri, 26 Feb 2010 11:37:11 +0100 Subject: tests support for every Qt derived rekonq class --- src/webpluginfactory.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/webpluginfactory.h') diff --git a/src/webpluginfactory.h b/src/webpluginfactory.h index 384f0653..74bca043 100644 --- a/src/webpluginfactory.h +++ b/src/webpluginfactory.h @@ -29,6 +29,9 @@ #define WEB_PLUGIN_FACTORY_H +// Local Includes +#include "rekonqprivate_export.h" + // KDE Includes #include @@ -37,7 +40,7 @@ #include -class WebPluginFactory : public KWebPluginFactory +class REKONQ_TESTS_EXPORT WebPluginFactory : public KWebPluginFactory { Q_OBJECT -- cgit v1.2.1 From e26472693aac7fe5ef277889fd0136dd66159e94 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Thu, 4 Mar 2010 13:59:25 +0100 Subject: WebPluginFactory. Cleaning code.. --- src/webpluginfactory.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/webpluginfactory.h') diff --git a/src/webpluginfactory.h b/src/webpluginfactory.h index 74bca043..9e5028b2 100644 --- a/src/webpluginfactory.h +++ b/src/webpluginfactory.h @@ -53,10 +53,7 @@ public: const QStringList &argumentNames, const QStringList &argumentValues) const; - virtual QList plugins() const; - signals: - void signalLoadClickToFlash(bool) const; public slots: @@ -67,7 +64,7 @@ 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; + bool _loadClickToFlash; }; #endif // WEB_PLUGIN_FACTORY_H -- cgit v1.2.1 From 860934af2c429c9676e8a6ad5fa595cfd405d164 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Fri, 26 Mar 2010 17:32:16 +0100 Subject: This commit lets rekonq embed parts instead of krunning them DISCLAIMER: This code really A LOT of testing. Not for the code itself, but for the parts it lets rekonq use. I'm experiencing a lot of crashes with the Dragon Part, in example. --- src/webpluginfactory.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/webpluginfactory.h') diff --git a/src/webpluginfactory.h b/src/webpluginfactory.h index 9e5028b2..85122d56 100644 --- a/src/webpluginfactory.h +++ b/src/webpluginfactory.h @@ -46,7 +46,6 @@ Q_OBJECT public: WebPluginFactory(QObject *parent); - ~WebPluginFactory(); virtual QObject *create(const QString &mimeType, const QUrl &url, -- cgit v1.2.1