diff options
Diffstat (limited to 'src/LuaRuntime.hpp')
| -rw-r--r-- | src/LuaRuntime.hpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/LuaRuntime.hpp b/src/LuaRuntime.hpp new file mode 100644 index 0000000..5bfc82c --- /dev/null +++ b/src/LuaRuntime.hpp @@ -0,0 +1,29 @@ +#pragma once +#include <QtCore> +#include <lua.hpp> + +#include "widgets/WebViewStack.hpp" + +class LuaRuntime : public QObject { + Q_OBJECT + +public: + static LuaRuntime *instance() { + static LuaRuntime inst; + return &inst; + } + + void evaluate(QString code); + +signals: + void urlOpened(QString url, OpenType openType); + +protected: + LuaRuntime(); + ~LuaRuntime(); + static int lua_onUrlOpen(lua_State *state); + static int lua_onUrlTabOpen(lua_State *state); + +private: + lua_State *state; +}; |
