| 24 | } |
| 25 | |
| 26 | void BrowserScripts::initPrintScript() |
| 27 | { |
| 28 | QWebEngineScript printScript; |
| 29 | printScript.setInjectionPoint(QWebEngineScript::DocumentCreation); |
| 30 | printScript.setName(QLatin1String("viper-window-script")); |
| 31 | printScript.setRunsOnSubFrames(true); |
| 32 | printScript.setWorldId(QWebEngineScript::MainWorld); |
| 33 | printScript.setSourceCode(QLatin1String("(function() { window.print = function() { " |
| 34 | "window.location = 'viper:print'; }; })()")); |
| 35 | |
| 36 | m_globalScripts.push_back(printScript); |
| 37 | } |
| 38 | |
| 39 | void BrowserScripts::initWebChannelScript() |
| 40 | { |