1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#pragma once
#include <QtCore>
#include <lua.hpp>
#include "lua.h"
#include "widgets/BrowserWindow.hpp"
#include "widgets/WebViewStack.hpp"
#define SET_FIELD(NAME, TYPE, VALUE) \
lua_pushstring(state, NAME); \
lua_push##TYPE(state, VALUE); \
lua_settable(state, -3);
class BrowserEvent {
public:
QString kind = "-";
virtual ~BrowserEvent() = default;
virtual void lua_push(lua_State *state) const { lua_newtable(state); };
};
class UrlChangedEvent : public BrowserEvent {
public:
const QString url;
const WebViewId webview_id;
const WindowId win_id;
UrlChangedEvent(QString url, WebViewId webview_id, WindowId win_id)
: url(std::move(url)), webview_id(webview_id), win_id(win_id) {
kind = "UrlChanged";
}
void lua_push(lua_State *state) const override {
lua_newtable(state);
SET_FIELD("view_id", integer, webview_id)
SET_FIELD("win_id", integer, win_id)
SET_FIELD("url", string, url.toStdString().c_str())
}
};
struct EventHandlerRequest {
std::vector<QString> event_names;
std::vector<QString> patterns;
std::function<void(BrowserEvent *)> handler;
int function_ref;
};
|