// SPDX-FileCopyrightText: 2024 Tobias Fella // SPDX-License-Identifier: LGPL-2.0-or-later #pragma once #include #include class ProxyController : public QObject { Q_OBJECT QML_ELEMENT QML_SINGLETON public: static ProxyController &instance() { static ProxyController _instance; return _instance; } static ProxyController *create(QQmlEngine *engine, QJSEngine *) { engine->setObjectOwnership(&instance(), QQmlEngine::CppOwnership); return &instance(); } /** * @brief Sets the QNetworkProxy for the application. * * @sa QNetworkProxy::setApplicationProxy */ Q_INVOKABLE void setApplicationProxy(); private: explicit ProxyController(QObject *parent = nullptr); };