/* * Copyright (C) 2023 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 KEEPASSX_REPORTSWIDGET_H #define KEEPASSX_REPORTSWIDGET_H #include "config-keepassx.h" #include "gui/DialogyWidget.h" #include "gui/entry/EditEntryWidget.h" class Database; class Entry; class Group; class QTabWidget; class ReportsPageHealthcheck; class ReportsPageHibp; class ReportsPageStatistics; class ReportsPage2FA; #ifdef WITH_XC_BROWSER class ReportsPageBrowserStatistics; #endif #ifdef WITH_XC_BROWSER_PASSKEYS class ReportsPagePasskeys; #endif namespace Ui { class ReportsDialog; } class IReportsPage { public: virtual ~IReportsPage() = default; virtual QString name() = 0; virtual QIcon icon() = 0; virtual QWidget* createWidget() = 0; virtual void loadSettings(QWidget* widget, QSharedPointer db) = 0; virtual void saveSettings(QWidget* widget) = 0; }; class ReportsDialog : public DialogyWidget { Q_OBJECT public: explicit ReportsDialog(QWidget* parent = nullptr); ~ReportsDialog() override; Q_DISABLE_COPY(ReportsDialog); void load(const QSharedPointer& db); void addPage(QSharedPointer page); void activatePasskeysPage(); bool onPassKeysPage(); signals: void editFinished(bool accepted); private slots: void reject(); void entryActivationSignalReceived(Entry* entry); void switchToMainView(bool previousDialogAccepted); private: QSharedPointer m_db; const QScopedPointer m_ui; const QSharedPointer m_healthPage; const QSharedPointer m_hibpPage; const QSharedPointer m_statPage; const QSharedPointer m_2faPage; #ifdef WITH_XC_BROWSER const QSharedPointer m_browserStatPage; #endif #ifdef WITH_XC_BROWSER_PASSKEYS const QSharedPointer m_passkeysPage; #endif QPointer m_editEntryWidget; QWidget* m_sender = nullptr; class ExtraPage; QList m_extraPages; }; #endif // KEEPASSX_REPORTSWIDGET_H