/* * Copyright (C) 2019 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_ICONDOWNLOADERDIALOG_H #define KEEPASSX_ICONDOWNLOADERDIALOG_H #include #include #include #include "gui/MessageWidget.h" class Database; class Entry; class CustomIconModel; class IconDownloader; namespace Ui { class IconDownloaderDialog; } class IconDownloaderDialog : public QDialog { Q_OBJECT public: explicit IconDownloaderDialog(QWidget* parent = nullptr); ~IconDownloaderDialog() override; void downloadFavicons(const QSharedPointer& database, const QList& entries, bool force = false); private slots: void downloadFinished(const QString& url, const QImage& icon); void abortDownloads(); private: IconDownloader* createDownloader(const QString& url); void showFallbackMessage(bool state); void updateTable(const QString& url, const QString& message); void updateProgressBar(); void updateCancelButton(); QScopedPointer m_ui; QStandardItemModel* m_dataModel; QSharedPointer m_db; QMultiMap m_urlToEntries; QList m_activeDownloaders; QMutex m_mutex; Q_DISABLE_COPY(IconDownloaderDialog) }; #endif // KEEPASSX_ICONDOWNLOADERDIALOG_H