diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-09 22:09:09 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-09 23:41:36 +0530 |
| commit | 6b1d49e607da16853d1a0f460dbe756538e4790c (patch) | |
| tree | d5c784e6e568272afbb7530ea5dd752ce835b8fa /include/widgets/MainWindow.hpp | |
| parent | 61f99089288138989cf244d174882aa5088b738b (diff) | |
| download | null-browser-6b1d49e607da16853d1a0f460dbe756538e4790c.tar.gz null-browser-6b1d49e607da16853d1a0f460dbe756538e4790c.zip | |
Add lua integration for command input (web.open, web.tabopen)
Diffstat (limited to '')
| -rw-r--r-- | include/widgets/MainWindow.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/widgets/MainWindow.hpp b/include/widgets/MainWindow.hpp index 8ba0ed9..15e2889 100644 --- a/include/widgets/MainWindow.hpp +++ b/include/widgets/MainWindow.hpp @@ -4,6 +4,7 @@ #include <QObject> #include <QWebEngineView> +#include "LuaRuntime.hpp" #include "widgets/BrowserManager.hpp" #include "widgets/CommandInput.hpp" @@ -21,4 +22,5 @@ protected: private: BrowserManager *browserManager; CommandInput *commandInput; + LuaRuntime *luaRuntime; }; |
