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
|
#include <lua.hpp>
#include "LuaRuntime.hpp"
LuaRuntime::LuaRuntime() {
state = luaL_newstate();
luaL_openlibs(state);
luaL_Reg weblib[] = {
{"open", &LuaRuntime::lua_onUrlOpen},
{"tabopen", &LuaRuntime::lua_onUrlTabOpen},
{NULL, NULL},
};
luaL_newlib(state, weblib);
lua_setglobal(state, "web");
}
void LuaRuntime::evaluate(QString code) {
luaL_dostring(state, code.toStdString().c_str());
}
int LuaRuntime::lua_onUrlOpen(lua_State *state) {
const char *url = luaL_optstring(state, 1, "");
auto runtime = LuaRuntime::instance();
emit runtime->urlOpenned(url, OpenType::OpenUrl);
return 1;
}
int LuaRuntime::lua_onUrlTabOpen(lua_State *state) {
const char *url = luaL_optstring(state, 1, "");
auto runtime = LuaRuntime::instance();
emit runtime->urlOpenned(url, OpenType::OpenUrlInTab);
return 1;
}
LuaRuntime::~LuaRuntime() { lua_close(state); }
|