eric7/WebBrowser/UrlBar/UrlBar.py

branch
eric7
changeset 8553
10d31e5ce9e5
parent 8358
144a6b854f70
child 8556
766e1566cb74
equal deleted inserted replaced
8552:f9cf1ff5126a 8553:10d31e5ce9e5
8 """ 8 """
9 9
10 from PyQt6.QtCore import pyqtSlot, Qt, QPointF, QUrl, QDateTime, QTimer, QPoint 10 from PyQt6.QtCore import pyqtSlot, Qt, QPointF, QUrl, QDateTime, QTimer, QPoint
11 from PyQt6.QtGui import QColor, QPalette, QLinearGradient, QIcon 11 from PyQt6.QtGui import QColor, QPalette, QLinearGradient, QIcon
12 from PyQt6.QtWidgets import QDialog, QApplication 12 from PyQt6.QtWidgets import QDialog, QApplication
13 from PyQt6.QtWebEngineWidgets import QWebEnginePage 13 from PyQt6.QtWebEngineCore import QWebEnginePage
14 try: 14 try:
15 from PyQt6.QtNetwork import QSslCertificate # __IGNORE_EXCEPTION__ 15 from PyQt6.QtNetwork import QSslCertificate # __IGNORE_EXCEPTION__
16 except ImportError: 16 except ImportError:
17 QSslCertificate = None # __IGNORE_WARNING__ 17 QSslCertificate = None # __IGNORE_WARNING__
18 18

eric ide

mercurial