mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
* Use the import wizard to support opening a remote database --------- Co-authored-by: Jonathan White <support@dmapps.us>
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
/*
|
|
* Copyright (C) 2018 KeePassXC Team <team@keepassxc.org>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef KEEPASSXC_IMPORTWIZARD_H
|
|
#define KEEPASSXC_IMPORTWIZARD_H
|
|
|
|
#include <QPointer>
|
|
#include <QUuid>
|
|
#include <QWizard>
|
|
|
|
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> 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<QUuid, QUuid> importInto();
|
|
|
|
private:
|
|
QSharedPointer<Database> m_db;
|
|
QPointer<ImportWizardPageSelect> m_pageSelect;
|
|
QPointer<ImportWizardPageReview> m_pageReview;
|
|
};
|
|
|
|
#endif // KEEPASSXC_IMPORTWIZARD_H
|