You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.9 KiB
61 lines
1.9 KiB
/***************************************************************************
|
|
importinterface.h
|
|
-------------------
|
|
begin : Mon Apr 14 2008
|
|
copyright : (C) 2008 Thomas Baumgart
|
|
email : ipwizard@users.sourceforge.net
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 IMPORTINTERFACE_H
|
|
#define IMPORTINTERFACE_H
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// TQt Includes
|
|
|
|
#include <tqobject.h>
|
|
#include <tqstring.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// TDE Includes
|
|
|
|
#include <tdefile.h>
|
|
#include <kurl.h>
|
|
class TDEPopupMenu;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include <kmymoney/export.h>
|
|
|
|
namespace KMyMoneyPlugin {
|
|
|
|
/**
|
|
* This abstract class represents the ImportInterface to
|
|
* add new importers to KMyMoney.
|
|
*/
|
|
class KMYMONEY_EXPORT ImportInterface : public TQObject
|
|
{
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
ImportInterface(TQObject* parent, const char* name = 0);
|
|
~ImportInterface() {}
|
|
|
|
virtual KURL selectFile(const TQString& title, const TQString& path, const TQString& mask, KFile::Mode mode) const = 0;
|
|
|
|
signals:
|
|
};
|
|
|
|
}; // namespace
|
|
#endif
|