This is the binary distribution of racket-webview

This commit is contained in:
2026-04-05 14:49:27 +02:00
parent 291bb0c545
commit b0ed617c50
149 changed files with 5047 additions and 28 deletions

24
webviewqt.cpp Normal file
View File

@@ -0,0 +1,24 @@
#include "webviewqt.h"
#include "webviewwindow.h"
#include <QWebEnginePage>
#include <QJsonDocument>
WebViewQt::WebViewQt(int id, WebviewWindow *window)
: QWebEngineView(window->profile(), window)
{
_id = id;
_window = window;
}
int WebViewQt::id() const
{
return _id;
}
WebviewWindow *WebViewQt::wvWin()
{
return _window;
}