From dadc34655c3ab961b0b0b94a10eaaba710f0b5e8 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 4 Jul 2011 22:38:03 +0000 Subject: Added kmymoney git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kmymoney2/plugins/ofximport/ofxpartner.h | 102 +++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 kmymoney2/plugins/ofximport/ofxpartner.h (limited to 'kmymoney2/plugins/ofximport/ofxpartner.h') diff --git a/kmymoney2/plugins/ofximport/ofxpartner.h b/kmymoney2/plugins/ofximport/ofxpartner.h new file mode 100644 index 0000000..e624282 --- /dev/null +++ b/kmymoney2/plugins/ofximport/ofxpartner.h @@ -0,0 +1,102 @@ +/*************************************************************************** + ofxpartner.h + ---------- + begin : Fri Jan 23 2009 + copyright : (C) 2009 by Thomas Baumgart + email : Thomas Baumgart + ***************************************************************************/ + +/*************************************************************************** + * * + * 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; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef OFXPARTNER_H +#define OFXPARTNER_H + +// ---------------------------------------------------------------------------- +// QT Includes + + +#include +#include + +// ---------------------------------------------------------------------------- +// KDE Includes + +#include +namespace KIO +{ + class Job; + class TransferJob; +} + +// ---------------------------------------------------------------------------- +// Project Includes + +#include + +namespace OfxPartner +{ + /** + * setup the directory where the files will be stored. + * @a dir must end with a '/' and must exist. Call this + * before any other of the functions of OfxPartner. The + * default will be to store the files in the current + * directory. + */ + void setDirectory(const QString& dir); + + void ValidateIndexCache(void); + OfxFiServiceInfo ServiceInfo(const QString& fipid); + QValueList BankNames(void); + QValueList FipidForBank(const QString& bank); + +} + +class OfxHttpRequest : public QObject +{ + Q_OBJECT +public: + OfxHttpRequest(const QString& method, const KURL &url, const QByteArray &postData, const QMap& metaData, const KURL& dst, bool showProgressInfo=true); + virtual ~OfxHttpRequest() {} + + QHttp::Error error(void) const { return m_error; } + +protected slots: + void slotOfxFinished(int, bool); + +private: + QHttp* m_job; + KURL m_dst; + QHttp::Error m_error; + +}; + +class OfxHttpsRequest : public QObject +{ +Q_OBJECT +public: + OfxHttpsRequest(const QString& method, const KURL &url, const QByteArray &postData, const QMap& metaData, const KURL& dst, bool showProgressInfo=true); + virtual ~OfxHttpsRequest(); + + QHttp::Error error(void) const { return m_error; } + +protected slots: + void slotOfxFinished(KIO::Job*); + void slotOfxData(KIO::Job*,const QByteArray&); + void slotOfxConnected(KIO::Job*); + +private: + class Private; + Private* d; + KURL m_dst; + QFile m_file; + QHttp::Error m_error; + KIO::TransferJob* m_job; +}; +#endif // OFXPARTNER_H -- cgit v1.2.1