mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
97 lines
2.9 KiB
C++
97 lines
2.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
|
|
*/
|
|
|
|
#ifndef IMPORTWIZARD_H
|
|
#define IMPORTWIZARD_H
|
|
|
|
#include "abstractimporter.h"
|
|
|
|
#include <kapplication.h>
|
|
#include <KAssistantDialog>
|
|
|
|
class KPageWidgetItem;
|
|
class SelectProgramPage;
|
|
class SelectComponentPage;
|
|
class ImportMailPage;
|
|
class ImportFilterPage;
|
|
class ImportSettingPage;
|
|
class ImportAddressbookPage;
|
|
class ImportFinishPage;
|
|
class ImportCalendarPage;
|
|
class AbstractImporter;
|
|
|
|
class ImportWizard : public KAssistantDialog {
|
|
Q_OBJECT
|
|
public:
|
|
explicit ImportWizard( QWidget* parent=0);
|
|
~ImportWizard();
|
|
|
|
void next();
|
|
void reject();
|
|
void back();
|
|
|
|
ImportMailPage* importMailPage() const;
|
|
ImportFilterPage* importFilterPage() const;
|
|
ImportAddressbookPage *importAddressBookPage() const;
|
|
ImportSettingPage *importSettingPage() const;
|
|
ImportFinishPage *importFinishPage() const;
|
|
ImportCalendarPage *importCalendarPage() const;
|
|
|
|
void addFinishInfo( const QString& log );
|
|
void addFinishError( const QString& log );
|
|
|
|
private Q_SLOTS:
|
|
void slotProgramSelected(const QString& program);
|
|
void slotImportMailsClicked();
|
|
void slotImportFiltersClicked();
|
|
void slotProgramDoubleClicked();
|
|
void slotAtLeastOneComponentSelected( bool b );
|
|
void slotImportSettingsClicked();
|
|
void slotImportAddressbookClicked();
|
|
void slotImportCalendarClicked();
|
|
|
|
private:
|
|
void addImportModule(AbstractImporter *);
|
|
void checkModules();
|
|
void setAppropriatePage(AbstractImporter::TypeSupportedOptions options);
|
|
void enableAllImportButton();
|
|
|
|
QMap<QString, AbstractImporter*> mlistImport;
|
|
|
|
AbstractImporter *mSelectedPim;
|
|
|
|
KPageWidgetItem *mPage1;
|
|
KPageWidgetItem *mPage2;
|
|
KPageWidgetItem *mPage3;
|
|
KPageWidgetItem *mPage4;
|
|
KPageWidgetItem *mPage5;
|
|
KPageWidgetItem *mPage6;
|
|
KPageWidgetItem *mPage7;
|
|
KPageWidgetItem *mPage8;
|
|
|
|
SelectProgramPage *mSelectProgramPage;
|
|
SelectComponentPage *mSelectComponentPage;
|
|
ImportMailPage *mImportMailPage;
|
|
ImportFilterPage *mImportFilterPage;
|
|
ImportSettingPage *mImportSettingPage;
|
|
ImportAddressbookPage *mImportAddressbookPage;
|
|
ImportFinishPage *mImportFinishPage;
|
|
ImportCalendarPage *mImportCalendarPage;
|
|
};
|
|
|
|
#endif /* IMPORTWIZARD_H */
|
|
|