File indexing completed on 2025-01-05 03:53:10

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2012-03-15
0007  * Description : a tool to create panorama by fusion of several images.
0008  *
0009  * SPDX-FileCopyrightText: 2012-2015 by Benjamin Girault <benjamin dot girault at gmail dot com>
0010  *
0011  * SPDX-License-Identifier: GPL-2.0-or-later
0012  *
0013  * ============================================================ */
0014 
0015 #ifndef DIGIKAM_AUTO_CROP_TASK_H
0016 #define DIGIKAM_AUTO_CROP_TASK_H
0017 
0018 // Local includes
0019 
0020 #include "commandtask.h"
0021 
0022 namespace DigikamGenericPanoramaPlugin
0023 {
0024 
0025 class AutoCropTask : public CommandTask
0026 {
0027 
0028 public:
0029 
0030     explicit AutoCropTask(const QString& workDirPath,
0031                           const QUrl& autoOptimiserPtoUrl,
0032                           QUrl& viewCropPtoUrl,
0033                           bool  buildGPano,
0034                           const QString& panoModifyPath);
0035     ~AutoCropTask() = default;
0036 
0037 protected:
0038 
0039     void run(ThreadWeaver::JobPointer self, ThreadWeaver::Thread* thread) override;
0040 
0041 private:
0042 
0043     const QUrl& autoOptimiserPtoUrl;
0044     QUrl&       viewCropPtoUrl;
0045 /*
0046     const bool  buildGPano;
0047 */
0048 
0049 private:
0050 
0051     // Disable
0052     AutoCropTask() = delete;
0053 
0054     Q_DISABLE_COPY(AutoCropTask)
0055 };
0056 
0057 } // namespace DigikamGenericPanoramaPlugin
0058 
0059 #endif // DIGIKAM_AUTO_CROP_TASK_H