11 # |
11 # |
12 # This code was ported from QupZilla and modified. |
12 # This code was ported from QupZilla and modified. |
13 # Copyright (C) David Rosca <nowrep@gmail.com> |
13 # Copyright (C) David Rosca <nowrep@gmail.com> |
14 # |
14 # |
15 |
15 |
16 from PyQt6.QtCore import pyqtProperty, QObject |
16 from PyQt6.QtCore import QObject, pyqtProperty |
17 |
17 |
18 from eric7.WebBrowser.WebBrowserWindow import WebBrowserWindow |
18 from eric7.WebBrowser.WebBrowserWindow import WebBrowserWindow |
19 |
19 |
|
20 from .PasswordManagerJsObject import PasswordManagerJsObject |
20 from .StartPageJsObject import StartPageJsObject |
21 from .StartPageJsObject import StartPageJsObject |
21 from .PasswordManagerJsObject import PasswordManagerJsObject |
|
22 |
22 |
23 |
23 |
24 class ExternalJsObject(QObject): |
24 class ExternalJsObject(QObject): |
25 """ |
25 """ |
26 Class implementing the endpoint of our web channel. |
26 Class implementing the endpoint of our web channel. |