#ifndef DORICDIALOGBRIDGE_H
#define DORICDIALOGBRIDGE_H
#include <QObject>
#include "DoricExport.h"
class DORIC_EXPORT DoricDialogBridge : public QObject {
Q_OBJECT
public:
explicit DoricDialogBridge(QObject *parent = nullptr);
Q_INVOKABLE
void onAccepted(QString windowPointer, QString pluginPointer,
QString callbackId);
void onAcceptedWithInput(QString windowPointer, QString pluginPointer,
QString callbackId, QString input);
void onRejected(QString windowPointer, QString pluginPointer,
void onRejectedWithInput(QString windowPointer, QString pluginPointer,
};
#endif // DORICDIALOGBRIDGE_H