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
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
from PySide6.QtWebEngineCore import QWebEnginePage
from PySide6.QtWebEngineWidgets import QWebEngineView
from PySide6 import QtCore
_web_actions = [QWebEnginePage.Back, QWebEnginePage.Forward,
QWebEnginePage.Reload,
QWebEnginePage.Undo, QWebEnginePage.Redo,
QWebEnginePage.Cut, QWebEnginePage.Copy,
QWebEnginePage.Paste, QWebEnginePage.SelectAll]
class WebEngineView(QWebEngineView):
enabled_changed = QtCore.Signal(QWebEnginePage.WebAction, bool)
@staticmethod
def web_actions():
return _web_actions
@staticmethod
def minimum_zoom_factor():
return 0.25
@staticmethod
def maximum_zoom_factor():
return 5
def __init__(self, tab_factory_func, window_factory_func):
super().__init__()
self._tab_factory_func = tab_factory_func
self._window_factory_func = window_factory_func
page = self.page()
self._actions = {}
for web_action in WebEngineView.web_actions():
action = page.action(web_action)
action.changed.connect(self._enabled_changed)
self._actions[action] = web_action
def is_web_action_enabled(self, web_action):
return self.page().action(web_action).isEnabled()
def createWindow(self, window_type):
if (window_type == QWebEnginePage.WebBrowserTab or
window_type == QWebEnginePage.WebBrowserBackgroundTab):
return self._tab_factory_func()
return self._window_factory_func()
def _enabled_changed(self):
action = self.sender()
web_action = self._actions[action]
self.enabled_changed.emit(web_action, action.isEnabled())
|