File indexing completed on 2024-12-08 04:34:22
0001 /* 0002 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "libruqolawidgets_private_export.h" 0010 #include <QWizard> 0011 class ExportDataSelectAccountPage; 0012 class ExportDataFinishPage; 0013 class LIBRUQOLAWIDGETS_TESTS_EXPORT ExportDataWizard : public QWizard 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit ExportDataWizard(QWidget *parent = nullptr); 0018 ~ExportDataWizard() override; 0019 0020 private: 0021 enum ExportDataEnum { 0022 SelectAccountPage, 0023 FinishPage, 0024 }; 0025 LIBRUQOLAWIDGETS_NO_EXPORT void slotCurrentIdChanged(int id); 0026 LIBRUQOLAWIDGETS_NO_EXPORT void readConfig(); 0027 LIBRUQOLAWIDGETS_NO_EXPORT void writeConfig(); 0028 LIBRUQOLAWIDGETS_NO_EXPORT void loadAccountInfo(); 0029 LIBRUQOLAWIDGETS_NO_EXPORT void exportAccounts(); 0030 ExportDataSelectAccountPage *const mExportDataSelectAccountPage; 0031 ExportDataFinishPage *const mExportDataFinishPage; 0032 };