src/eric7/WebBrowser/JavaScript/StartPageJsObject.py

Tue, 10 Dec 2024 15:46:34 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 10 Dec 2024 15:46:34 +0100
branch
eric7
changeset 11090
f5f5f5803935
parent 10439
21c28b0f9e41
permissions
-rw-r--r--

Updated copyright for 2025.

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

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

"""
Module implementing the Python side of the eric home page.
"""

from PyQt6.QtCore import QObject, pyqtSlot


class StartPageJsObject(QObject):
    """
    Class implementing the Python side of the eric home page.
    """

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

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

        self.__external = parent

    @pyqtSlot(result=str)
    def providerString(self):
        """
        Public method to get a string for the search provider.

        @return string for the search provider
        @rtype str
        """
        return self.tr("Search results provided by {0}").format(
            self.__external.page()
            .view()
            .mainWindow()
            .openSearchManager()
            .currentEngineName()
        )

    @pyqtSlot(str, result=str)
    def searchUrl(self, searchStr):
        """
        Public method to get the search URL for the given search term.

        @param searchStr search term
        @type str
        @return search URL
        @rtype str
        """
        return bytes(
            self.__external.page()
            .view()
            .mainWindow()
            .openSearchManager()
            .currentEngine()
            .searchUrl(searchStr)
            .toEncoded()
        ).decode()

eric ide

mercurial