dolphin/keditbookmarks/favicons.cpp
David Faure 77780fb6dd - rename updater.cpp to faviconupdater.cpp to match classname
- connect to completed(bool) so that we get notified even in case of a delayed redirect (testcase: http://www.citefutee.com/orienter/rer.php). This was another case of "update all favicons" hanging forever.
CCBUG: 23102

svn path=/trunk/KDE/kdebase/apps/; revision=1119159
2010-04-26 17:46:35 +00:00

87 lines
2.4 KiB
C++

/* This file is part of the KDE project
Copyright (C) 2002-2003 Alexander Kellett <lypanov@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License version 2 or at your option version 3 as published by
the Free Software Foundation.
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 "favicons.h"
#include "bookmarkiterator.h"
#include "faviconupdater.h"
#include "kbookmarkmodel/commands.h"
#include "kbookmarkmodel/model.h"
#include <kdebug.h>
#include <klocale.h>
FavIconsItrHolder::FavIconsItrHolder(QObject* parent, KBookmarkModel* model)
: BookmarkIteratorHolder(parent, model)
{
}
/* -------------------------- */
FavIconsItr::FavIconsItr(BookmarkIteratorHolder* holder, const QList<KBookmark>& bks)
: BookmarkIterator(holder, bks), m_updater(0)
{
}
FavIconsItr::~FavIconsItr()
{
delete m_updater;
}
void FavIconsItr::setStatus(const QString & status)
{
currentBookmark().setMetaDataItem("favstate", status);
model()->emitDataChanged(currentBookmark());
}
void FavIconsItr::slotDone(bool succeeded, const QString& errorString)
{
// kDebug() << "FavIconsItr::slotDone()";
setStatus(succeeded ? i18n("OK") : errorString);
holder()->addAffectedBookmark(KBookmark::parentAddress(currentBookmark().address()));
delayedEmitNextOne();
}
bool FavIconsItr::isApplicable(const KBookmark &bk) const
{
if (bk.isGroup() || bk.isSeparator())
return false;
return bk.url().protocol().startsWith("http");
}
void FavIconsItr::doAction()
{
// kDebug() << "FavIconsItr::doAction()";
m_oldStatus = currentBookmark().metaDataItem("favstate");
setStatus(i18n("Updating favicon..."));
if (!m_updater) {
m_updater = new FavIconUpdater(this);
connect(m_updater, SIGNAL(done(bool,QString)),
this, SLOT(slotDone(bool,QString)) );
}
m_updater->downloadIcon(currentBookmark());
}
void FavIconsItr::cancel()
{
setStatus(m_oldStatus);
}
#include "favicons.moc"