src/eric7/WebBrowser/JavaScript/PasswordManagerJsObject.py

Wed, 13 Jul 2022 14:55:47 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 13 Jul 2022 14:55:47 +0200
branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9413
80c06d472826
permissions
-rw-r--r--

Reformatted the source code using the 'Black' utility.

# -*- coding: utf-8 -*-

# Copyright (c) 2016 - 2022 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing the Python side for calling the password manager.
"""

from PyQt6.QtCore import pyqtSlot, QObject, QByteArray


class PasswordManagerJsObject(QObject):
    """
    Class implementing the Python side for calling the password manager.
    """

    def __init__(self, parent=None):
        """
        Constructor

        @param parent reference to the parent object
        @type ExternalJsObject
        """
        super().__init__(parent)

        self.__external = parent

    @pyqtSlot(str, str, str, QByteArray)
    def formSubmitted(self, urlStr, userName, password, data):
        """
        Public slot passing form data to the password manager.

        @param urlStr form submission URL
        @type str
        @param userName name of the user
        @type str
        @param password user password
        @type str
        @param data data to be submitted
        @type QByteArray
        """
        from WebBrowser.WebBrowserWindow import WebBrowserWindow

        WebBrowserWindow.passwordManager().formSubmitted(
            urlStr, userName, password, data, self.__external.page()
        )

eric ide

mercurial