23 from PyQt6.QtWidgets import ( |
23 from PyQt6.QtWidgets import ( |
24 QWidget, QVBoxLayout, QSizePolicy, QDockWidget, QComboBox, QLabel, QMenu, |
24 QWidget, QVBoxLayout, QSizePolicy, QDockWidget, QComboBox, QLabel, QMenu, |
25 QLineEdit, QApplication, QWhatsThis, QDialog, QHBoxLayout, QProgressBar, |
25 QLineEdit, QApplication, QWhatsThis, QDialog, QHBoxLayout, QProgressBar, |
26 QInputDialog |
26 QInputDialog |
27 ) |
27 ) |
28 from PyQt6.QtWebEngineWidgets import ( |
28 from PyQt6.QtWebEngineCore import ( |
29 QWebEngineSettings, QWebEnginePage, QWebEngineProfile, QWebEngineScript |
29 QWebEngineSettings, QWebEnginePage, QWebEngineProfile, QWebEngineScript |
30 ) |
30 ) |
31 try: |
31 try: |
32 from PyQt6.QtHelp import QHelpEngine, QHelpEngineCore |
32 from PyQt6.QtHelp import QHelpEngine, QHelpEngineCore |
33 QTHELP_AVAILABLE = True |
33 QTHELP_AVAILABLE = True |