eric6/WebBrowser/WebBrowserPage.py

branch
without_py2_and_pyqt4
changeset 7192
a22eee00b052
parent 6942
2602857055c5
child 7201
6b42677d7043
equal deleted inserted replaced
7191:960850ec284c 7192:a22eee00b052
7 """ 7 """
8 Module implementing the helpbrowser using QWebView. 8 Module implementing the helpbrowser using QWebView.
9 """ 9 """
10 10
11 from __future__ import unicode_literals, print_function 11 from __future__ import unicode_literals, print_function
12 try:
13 str = unicode # __IGNORE_EXCEPTION__
14 except NameError:
15 pass
16 12
17 from PyQt5.QtCore import pyqtSlot, pyqtSignal, QUrl, QUrlQuery, QTimer, \ 13 from PyQt5.QtCore import pyqtSlot, pyqtSignal, QUrl, QUrlQuery, QTimer, \
18 QEventLoop, QPoint, QPointF 14 QEventLoop, QPoint, QPointF
19 from PyQt5.QtGui import QDesktopServices 15 from PyQt5.QtGui import QDesktopServices
20 from PyQt5.QtWebEngineWidgets import QWebEnginePage, QWebEngineSettings, \ 16 from PyQt5.QtWebEngineWidgets import QWebEnginePage, QWebEngineSettings, \

eric ide

mercurial