mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
80 lines
1.9 KiB
C++
80 lines
1.9 KiB
C++
![]() |
/*
|
||
|
Copyright (c) 2012-2013 Montel Laurent <montel@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, 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; if not, write to the Free Software Foundation, Inc.,
|
||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#include "oe/oeimportdata.h"
|
||
|
#include "mailimporter/filter_oe.h"
|
||
|
#include "mailimporter/filterinfo.h"
|
||
|
#include "importfilterinfogui.h"
|
||
|
#include "importwizard.h"
|
||
|
|
||
|
#include <KLocale>
|
||
|
|
||
|
#include <QDir>
|
||
|
|
||
|
|
||
|
OeImportData::OeImportData(ImportWizard*parent)
|
||
|
:AbstractImporter(parent)
|
||
|
{
|
||
|
mPath = QDir::homePath();
|
||
|
}
|
||
|
|
||
|
OeImportData::~OeImportData()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
bool OeImportData::foundMailer() const
|
||
|
{
|
||
|
#ifdef Q_OS_WIN
|
||
|
//TODO find a method to search it. Perhaps look at binary.
|
||
|
QDir directory( mPath );
|
||
|
if ( directory.exists() )
|
||
|
return true;
|
||
|
#endif
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
QString OeImportData::name() const
|
||
|
{
|
||
|
return QLatin1String("Outlook Express");
|
||
|
}
|
||
|
|
||
|
bool OeImportData::importMails()
|
||
|
{
|
||
|
MailImporter::FilterInfo *info = initializeInfo();
|
||
|
|
||
|
MailImporter::FilterOE opera;
|
||
|
opera.setFilterInfo( info );
|
||
|
info->setStatusMessage(i18n("Import in progress"));
|
||
|
QDir directory(mPath);
|
||
|
if (directory.exists())
|
||
|
opera.importMails(mPath);
|
||
|
else
|
||
|
opera.import();
|
||
|
info->setStatusMessage(i18n("Import finished"));
|
||
|
|
||
|
delete info;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
AbstractImporter::TypeSupportedOptions OeImportData::supportedOption()
|
||
|
{
|
||
|
TypeSupportedOptions options;
|
||
|
options |=AbstractImporter::Mails;
|
||
|
return options;
|
||
|
}
|