From e38d2351b83fa65c66ccde443777647ef5cb6cff Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 1 Mar 2010 19:17:32 +0000 Subject: Added KDE3 version of Tellico git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1097620 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/fetch/fetcher.cpp | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/fetch/fetcher.cpp (limited to 'src/fetch/fetcher.cpp') diff --git a/src/fetch/fetcher.cpp b/src/fetch/fetcher.cpp new file mode 100644 index 0000000..3bc7749 --- /dev/null +++ b/src/fetch/fetcher.cpp @@ -0,0 +1,61 @@ +/*************************************************************************** + copyright : (C) 2005-2006 by Robby Stephenson + email : robby@periapsis.org + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of version 2 of the GNU General Public License as * + * published by the Free Software Foundation; * + * * + ***************************************************************************/ + +#include "fetcher.h" +#include "messagehandler.h" +#include "../entry.h" + +#include +#include + +using Tellico::Fetch::Fetcher; +using Tellico::Fetch::SearchResult; + +Fetcher::~Fetcher() { + KConfigGroup config(KGlobal::config(), m_configGroup); + saveConfigHook(config); +} + +void Fetcher::readConfig(const KConfigGroup& config_, const QString& groupName_) { + m_configGroup = groupName_; + + QString s = config_.readEntry("Name"); + if(!s.isEmpty()) { + m_name = s; + } + m_updateOverwrite = config_.readBoolEntry("UpdateOverwrite", false); + // be sure to read config for subclass + readConfigHook(config_); +} + +void Fetcher::message(const QString& message_, int type_) const { + if(m_messager) { + m_messager->send(message_, static_cast(type_)); + } +} + +void Fetcher::infoList(const QString& message_, const QStringList& list_) const { + if(m_messager) { + m_messager->infoList(message_, list_); + } +} + +void Fetcher::updateEntry(Data::EntryPtr) { + emit signalDone(this); +} + +Tellico::Data::EntryPtr SearchResult::fetchEntry() { + return fetcher->fetchEntry(uid); +} + +#include "fetcher.moc" -- cgit v1.2.1