This is the binary distribution of racket-webview
This commit is contained in:
28
webviewqt.h
Normal file
28
webviewqt.h
Normal 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
|
||||
Reference in New Issue
Block a user