forked from PyQt5/PyQt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
JsSignals.py
153 lines (130 loc) · 5.75 KB
/
JsSignals.py
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2019年4月27日
@author: Irony
@site: https://pyqt5.com https://github.com/892768447
@email: [email protected]
@file: QWebEngineView.JsSignals
@description:
"""
import os
from time import time
from PyQt5.QtCore import QUrl, pyqtSlot, pyqtSignal
from PyQt5.QtWebChannel import QWebChannel
from PyQt5.QtWebEngineWidgets import QWebEngineView, QWebEngineSettings
from PyQt5.QtWidgets import QMessageBox, QWidget, QVBoxLayout, QPushButton
__Author__ = 'Irony'
__Copyright__ = 'Copyright (c) 2019'
class WebEngineView(QWebEngineView):
customSignal = pyqtSignal(str)
def __init__(self, *args, **kwargs):
super(WebEngineView, self).__init__(*args, **kwargs)
self.initSettings()
self.channel = QWebChannel(self)
# 把自身对象传递进去
self.channel.registerObject('Bridge', self)
# 设置交互接口
self.page().setWebChannel(self.channel)
# START #####以下代码可能是在5.6 QWebEngineView刚出来时的bug,必须在每次加载页面的时候手动注入
#### 也有可能是跳转页面后就失效了,需要手动注入,有没有修复具体未测试
# self.page().loadStarted.connect(self.onLoadStart)
# self._script = open('Data/qwebchannel.js', 'rb').read().decode()
# def onLoadStart(self):
# self.page().runJavaScript(self._script)
# END ###########################
# 注意pyqtSlot用于把该函数暴露给js可以调用
@pyqtSlot(str)
def callFromJs(self, text):
QMessageBox.information(self, "提示", "来自js调用:{}".format(text))
def sendCustomSignal(self):
# 发送自定义信号
self.customSignal.emit('当前时间: ' + str(time()))
@pyqtSlot(str)
@pyqtSlot(QUrl)
def load(self, url):
'''
eg: load("https://pyqt5.com")
:param url: 网址
'''
return super(WebEngineView, self).load(QUrl(url))
def initSettings(self):
'''
eg: 初始化设置
'''
# 获取浏览器默认设置
settings = QWebEngineSettings.globalSettings()
# 设置默认编码utf8
settings.setDefaultTextEncoding("utf-8")
# 自动加载图片,默认开启
# settings.setAttribute(QWebEngineSettings.AutoLoadImages,True)
# 自动加载图标,默认开启
# settings.setAttribute(QWebEngineSettings.AutoLoadIconsForPage,True)
# 开启js,默认开启
# settings.setAttribute(QWebEngineSettings.JavascriptEnabled,True)
# js可以访问剪贴板
settings.setAttribute(
QWebEngineSettings.JavascriptCanAccessClipboard, True)
# js可以打开窗口,默认开启
# settings.setAttribute(QWebEngineSettings.JavascriptCanOpenWindows,True)
# 链接获取焦点时的状态,默认开启
# settings.setAttribute(QWebEngineSettings.LinksIncludedInFocusChain,True)
# 本地储存,默认开启
# settings.setAttribute(QWebEngineSettings.LocalStorageEnabled,True)
# 本地访问远程
settings.setAttribute(
QWebEngineSettings.LocalContentCanAccessRemoteUrls, True)
# 本地加载,默认开启
# settings.setAttribute(QWebEngineSettings.LocalContentCanAccessFileUrls,True)
# 监控负载要求跨站点脚本,默认关闭
# settings.setAttribute(QWebEngineSettings.XSSAuditingEnabled,False)
# 空间导航特性,默认关闭
# settings.setAttribute(QWebEngineSettings.SpatialNavigationEnabled,False)
# 支持平超链接属性,默认关闭
# settings.setAttribute(QWebEngineSettings.HyperlinkAuditingEnabled,False)
# 使用滚动动画,默认关闭
settings.setAttribute(QWebEngineSettings.ScrollAnimatorEnabled, True)
# 支持错误页面,默认启用
# settings.setAttribute(QWebEngineSettings.ErrorPageEnabled, True)
# 支持插件,默认关闭
settings.setAttribute(QWebEngineSettings.PluginsEnabled, True)
# 支持全屏应用程序,默认关闭
settings.setAttribute(
QWebEngineSettings.FullScreenSupportEnabled, True)
# 支持屏幕截屏,默认关闭
settings.setAttribute(QWebEngineSettings.ScreenCaptureEnabled, True)
# 支持html5 WebGl,默认开启
settings.setAttribute(QWebEngineSettings.WebGLEnabled, True)
# 支持2d绘制,默认开启
settings.setAttribute(
QWebEngineSettings.Accelerated2dCanvasEnabled, True)
# 支持图标触摸,默认关闭
settings.setAttribute(QWebEngineSettings.TouchIconsEnabled, True)
class Window(QWidget):
def __init__(self, *args, **kwargs):
super(Window, self).__init__(*args, **kwargs)
layout = QVBoxLayout(self)
self.webview = WebEngineView(self)
layout.addWidget(self.webview)
layout.addWidget(QPushButton(
'发送自定义信号', self, clicked=self.webview.sendCustomSignal))
self.webview.windowTitleChanged.connect(self.setWindowTitle)
self.webview.load(QUrl.fromLocalFile(
os.path.abspath('Data/JsSignals.html')))
if __name__ == "__main__":
from PyQt5.QtWidgets import QApplication
import sys
# 开启F12 控制台功能,需要单独通过浏览器打开这个页面
# 这里可以做个保护, 发布软件,启动时把这个环境变量删掉。防止他人通过环境变量开启
os.environ['QTWEBENGINE_REMOTE_DEBUGGING'] = '9966'
app = QApplication(sys.argv)
w = Window()
w.show()
w.move(100, 100)
# 打开调试页面
dw = QWebEngineView()
dw.setWindowTitle('开发人员工具')
dw.load(QUrl('http://127.0.0.1:9966'))
dw.move(600, 100)
dw.show()
sys.exit(app.exec_())