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

28
webviewqt.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef WEBVIEWQT_H
#define WEBVIEWQT_H
#include <QWebEngineView>
#include <QTimer>
class WebviewWindow;
class WebViewQt : public QWebEngineView
{
Q_OBJECT
private:
int _id;
WebviewWindow *_window;
public:
int id() const;
WebviewWindow *wvWin();
signals:
void pageLoaded(WebViewQt *, bool ok);
public:
WebViewQt(int id, WebviewWindow *window);
};
#endif // WEBVIEWQT_H