/* * Copyright (C) 2018 KeePassXC Team * * 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 or (at your option) * version 3 of the License. * * 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, see . */ #ifndef KEEPASSXC_IMPORTWIZARD_H #define KEEPASSXC_IMPORTWIZARD_H #include #include #include class Database; class ImportWizardPageSelect; class ImportWizardPageReview; /** * Setup wizard for importing a file into a database. */ class ImportWizard : public QWizard { Q_OBJECT public: explicit ImportWizard(QWidget* parent = nullptr); ~ImportWizard() override; bool validateCurrentPage() override; QSharedPointer database(); enum ImportType { IMPORT_NONE = 0, IMPORT_CSV, IMPORT_OPVAULT, IMPORT_OPUX, IMPORT_BITWARDEN, IMPORT_KEEPASS1, IMPORT_REMOTE, }; enum ImportIntoType { NEW_DATABASE = 1, EXISTING_DATABASE, TEMPORARY_DATABASE, }; ImportWizard::ImportIntoType importIntoType(); QPair importInto(); private: QSharedPointer m_db; QPointer m_pageSelect; QPointer m_pageReview; }; #endif // KEEPASSXC_IMPORTWIZARD_H