summaryrefslogtreecommitdiffstats
path: root/konq-plugins/akregator/akregatorplugin.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit84da08d7b7fcda12c85caeb5a10b4903770a6f69 (patch)
tree2a6aea76f2dfffb4cc04bb907c4725af94f70e72 /konq-plugins/akregator/akregatorplugin.cpp
downloadtdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.tar.gz
tdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konq-plugins/akregator/akregatorplugin.cpp')
-rw-r--r--konq-plugins/akregator/akregatorplugin.cpp135
1 files changed, 135 insertions, 0 deletions
diff --git a/konq-plugins/akregator/akregatorplugin.cpp b/konq-plugins/akregator/akregatorplugin.cpp
new file mode 100644
index 0000000..a2a82f2
--- /dev/null
+++ b/konq-plugins/akregator/akregatorplugin.cpp
@@ -0,0 +1,135 @@
+/* This file is part of the KDE project
+
+ Copyright (C) 2004 Gary Cramblitt <garycramblitt@comcast.net>
+
+ Adapted from kdeutils/ark/konqplugin by
+ Georg Robbers <Georg.Robbers@urz.uni-hd.de>
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public
+ License as published by the Free Software Foundation; version 2
+ of the License.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; see the file COPYING. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#include "akregatorplugin.h"
+#include "pluginbase.h"
+
+#include <kapplication.h>
+#include <kmimetype.h>
+#include <kdebug.h>
+#include <kaction.h>
+#include <kinstance.h>
+#include <klocale.h>
+#include <konq_popupmenu.h>
+#include <kpopupmenu.h>
+#include <kgenericfactory.h>
+#include <kurl.h>
+#include <khtml_part.h>
+#include <khtmlview.h>
+#include <kmessagebox.h>
+
+#include <qdir.h>
+#include <qcstring.h>
+#include <qobject.h>
+#include <qstringlist.h>
+
+using namespace Akregator;
+
+typedef KGenericFactory<AkregatorMenu, KonqPopupMenu> AkregatorMenuFactory;
+K_EXPORT_COMPONENT_FACTORY( libakregatorkonqplugin, AkregatorMenuFactory("akregatorkonqplugin") )
+
+AkregatorMenu::AkregatorMenu( KonqPopupMenu * popupmenu, const char *name, const QStringList& /* list */ )
+ : KonqPopupMenuPlugin( popupmenu, name), PluginBase(), m_conf(0), m_part(0)
+{
+ kdDebug() << "AkregatorMenu::AkregatorMenu()" << endl;
+ if ( QCString( kapp->name() ) == "kdesktop" && !kapp->authorize("editable_desktop_icons" ) )
+ return;
+
+ // Do nothing if user has turned us off.
+ // TODO: Not yet implemented in aKregator settings.
+ /*m_conf = new KConfig( "akregatorrc" );
+ m_conf->setGroup( "AkregatorKonqPlugin" );
+ if ( !m_conf->readBoolEntry( "Enable", true ) )
+ return;
+ */
+
+ KHTMLView* view = 0L;
+
+ if (popupmenu && popupmenu->parent() && popupmenu->parent()->inherits("KHTMLView"))
+ view = static_cast<KHTMLView*>(popupmenu->parent());
+
+ if (view)
+ m_part = view->part();
+
+ KGlobal::locale()->insertCatalogue("akregator_konqplugin");
+ m_feedMimeTypes << "text/rss" << "text/rdf" << "text/xml";
+ // Get the list of URLs clicked on from Konqi.
+ //KFileItemList m_list = popupmenu->fileItemList();
+ // See if any are RSS feeds.
+
+ KFileItemList list = popupmenu->fileItemList();
+ KFileItem* it = list.first();
+ while (it != 0)
+ {
+ if (isFeedUrl(it))
+ {
+ kdDebug() << "AkregatorMenu: found feed URL " << it->url().prettyURL() << endl;
+ KAction *action = new KAction( i18n( "Add Feed to Akregator" ), "akregator", 0, this, SLOT( slotAddFeed() ), actionCollection(), "akregatorkonqplugin_mnu" );
+ addAction( action );
+ addSeparator();
+ m_feedURL = it->url().url();
+ break;
+ }
+
+ it = list.next();
+ }
+}
+
+AkregatorMenu::~AkregatorMenu()
+{
+ KGlobal::locale()->removeCatalogue("akregator_konqplugin");
+ delete m_conf;
+}
+
+bool AkregatorMenu::isFeedUrl(const QString &url)
+{
+ if (url.contains(".htm", false) != 0) return false;
+ if (url.contains("rss", false) != 0) return true;
+ if (url.contains("rdf", false) != 0) return true;
+ if (url.contains("xml", false) != 0) return true;
+ return false;
+}
+
+bool AkregatorMenu::isFeedUrl(const KFileItem * item)
+{
+ if ( m_feedMimeTypes.contains( item->mimetype() ) )
+ return true;
+ else
+ {
+ QString url = item->url().url();
+ // If URL ends in .htm or .html, it is not a feed url.
+ return isFeedUrl(url);
+ }
+ return false;
+}
+
+void AkregatorMenu::slotAddFeed()
+{
+ QString url = m_part ? fixRelativeURL(m_feedURL, m_part->baseURL()) : m_feedURL;
+ if(akregatorRunning())
+ addFeedsViaDCOP(QStringList(url));
+ else
+ addFeedViaCmdLine(url);
+}
+
+#include "akregatorplugin.moc"