/* * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE 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 3 of the License, or * (at your option) any later version. * * 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 OAK_PLUGIN_PROGRESS_REPORTER_H #define OAK_PLUGIN_PROGRESS_REPORTER_H #include #include #include namespace olive { namespace plugin { /** * @brief UI-independent interface for reporting plugin progress * * The engine cannot show UI itself, so OFX progress reporting goes through * this interface. The UI layer registers a factory (see * set_plugin_progress_reporter_factory()) that creates a reporter wrapping a * ProgressDialog; without a factory, a no-op reporter is used instead. */ class PluginProgressReporter : public QObject { Q_OBJECT public: explicit PluginProgressReporter(QObject *parent = nullptr) : QObject(parent) { } virtual ~PluginProgressReporter() override = default; virtual void set_progress(double value) = 0; virtual void show() = 0; virtual void close() = 0; signals: void cancelled(); }; /** * @brief Factory creating a PluginProgressReporter for a progress session * * Registered by the UI layer at startup. The caller takes ownership of the * returned reporter. */ using PluginProgressReporterFactory = std::function; void set_plugin_progress_reporter_factory( PluginProgressReporterFactory factory); /** * @brief Create a progress reporter through the registered factory * * Without a factory, returns a no-op reporter so engine code can run * headless. The caller takes ownership of the returned reporter. */ PluginProgressReporter * create_plugin_progress_reporter(const QString &message, const QString &title); } } #endif // OAK_PLUGIN_PROGRESS_REPORTER_H