This commit is contained in:
2026-03-02 23:10:29 +01:00
parent 07004097e9
commit 25ca1ec4a4
24 changed files with 1054 additions and 31 deletions

22
rktwebview_qt/webviewqt.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef WEBVIEWQT_H
#define WEBVIEWQT_H
#include <QWebEngineView>
class WebViewQt : public QWebEngineView
{
private:
int _id;
public:
int id() const;
public:
void runJs(const char *js);
public:
WebViewQt(int id, QWidget *parent = nullptr);
};
#endif // WEBVIEWQT_H