/*
 * This file is part of smolbote. It's copyrighted by the contributors recorded
 * in the version control history of the file, available from its original
 * location: https://neueland.iserlohn-fortress.net/smolbote.hg
 *
 * SPDX-License-Identifier: GPL-3.0
 */

#ifndef PROFILEEDITORPLUGIN_H
#define PROFILEEDITORPLUGIN_H

#include <interfaces.h>

class QWebEngineProfile;
class QWidget;
class ProfileEditorPlugin : public QObject, public PluginInterface, public ProfileInterface
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID ProfileInterfaceIid FILE "ProfileEditor.json")
    Q_INTERFACES(PluginInterface ProfileInterface)

public:
    // PluginInterface

    // ProfileInterface
    QWidget *createWidget(QWebEngineProfile *profile, QWidget *parent) override;
};

#endif //PROFILEEDITORPLUGIN_H