1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #pragma once
- #if !defined(Q_MOC_RUN)
- #include <AzCore/Outcome/Outcome.h>
- #endif
- #include <DownloadController.h>
- QT_FORWARD_DECLARE_CLASS(QProcess)
- namespace O3DE::ProjectManager
- {
- class DownloadWorker : public QObject
- {
- // Download was cancelled
- inline static const QString DownloadCancelled = QObject::tr("Download Cancelled.");
- Q_OBJECT
- public:
- explicit DownloadWorker();
- ~DownloadWorker() = default;
- public slots:
- void StartDownload();
- void SetObjectToDownload(
- const QString& objectName, const QString& destinationPath, DownloadController::DownloadObjectType objectType, bool downloadNow = true);
- signals:
- void UpdateProgress(int bytesDownloaded, int totalBytes);
- void Done(QString result = "", QString detailedResult = "");
- private:
- QString m_objectName;
- QString m_destinationPath;
- DownloadController::DownloadObjectType m_downloadType;
- };
- } // namespace O3DE::ProjectManager
|