- NodeFactory's menu creation moves to UI-side widget/menu/factorymenu (the factory only exposes its node library read-only now) - DiskManager's cache-settings dialog is created through a registered std::function handler (registered by Core at startup) - OlivePluginInstance creates progress UIs through a PluginProgressReporter interface (Null fallback headless) and queries the active viewer through a provider callback, both registered by Core - factory.h, diskmanager and pluginSupport no longer reference any widget//dialog//panel//window headers or classes
85 lines
2.3 KiB
C++
85 lines
2.3 KiB
C++
/*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef OAK_PLUGIN_PROGRESS_REPORTER_H
|
|
#define OAK_PLUGIN_PROGRESS_REPORTER_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
|
|
#include <functional>
|
|
|
|
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<PluginProgressReporter *(const QString &message,
|
|
const QString &title)>;
|
|
|
|
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
|