src/eric7/HelpViewer/HelpViewerImpl.py

Wed, 06 Mar 2024 17:00:26 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 06 Mar 2024 17:00:26 +0100
branch
eric7
changeset 10628
6968d6c31b3e
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
permissions
-rw-r--r--

Added the capability to override the type of the internal help viewer.

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

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

"""
Module implementing the help viewer base class.
"""

from PyQt6.QtCore import QUrl, pyqtSignal


class HelpViewerImpl:
    """
    Class implementing the help viewer base class.

    This is the base class of help viewer implementations and defines the
    interface. Als subclasses must implement the these methods.

    @signal titleChanged() emitted to indicate a change of the page title
    @signal loadFinished(ok) emitted to indicate the completion of a page load
    @signal zoomChanged() emitted to indicate a change of the zoom level
    """

    titleChanged = pyqtSignal()
    loadFinished = pyqtSignal(bool)
    zoomChanged = pyqtSignal()

    def __init__(self, engine, viewerType):
        """
        Constructor

        @param engine reference to the help engine
        @type QHelpEngine
        @param viewerType help viewer type
        @type EricTextEditType
        """
        self._engine = engine

        self._viewerType = viewerType

    def setLink(self, url):
        """
        Public method to set the URL of the document to be shown.

        @param url URL of the document
        @type QUrl
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")

    def link(self):
        """
        Public method to get the URL of the shown document.

        @return URL of the document
        @rtype QUrl
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")
        return QUrl()

    def pageTitle(self):
        """
        Public method get the page title.

        @return page title
        @rtype str
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")
        return ""

    def isEmptyPage(self):
        """
        Public method to check, if the current page is the empty page.

        @return flag indicating an empty page is loaded
        @rtype bool
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")
        return False

    def gotoHistory(self, index):
        """
        Public method to step through the history.

        @param index history index (<0 backward, >0 forward)
        @type int
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")

    def isBackwardAvailable(self):
        """
        Public method to check, if stepping backward through the history is
        available.

        @return flag indicating backward stepping is available
        @rtype bool
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")
        return False

    def isForwardAvailable(self):
        """
        Public method to check, if stepping forward through the history is
        available.

        @return flag indicating forward stepping is available
        @rtype bool
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")
        return False

    def scaleUp(self):
        """
        Public method to zoom in.

        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")

    def scaleDown(self):
        """
        Public method to zoom out.

        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")

    def setScale(self, scale):
        """
        Public method to set the zoom level.

        @param scale zoom level to set
        @type int
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")

    def resetScale(self):
        """
        Public method to reset the zoom level.

        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")

    def scale(self):
        """
        Public method to get the zoom level.

        @return current zoom level
        @rtype int
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")
        return 0

    def isScaleUpAvailable(self):
        """
        Public method to check, if the max. zoom level is reached.

        @return flag indicating scale up is available
        @rtype bool
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")
        return False

    def isScaleDownAvailable(self):
        """
        Public method to check, if the min. zoom level is reached.

        @return flag indicating scale down is available
        @rtype bool
        @exception NotImplementedError raised when not implemented
        """
        raise NotImplementedError("Not implemented")
        return False

    def viewerType(self):
        """
        Public method to get the type of the help viewer implementation.

        @return type of the help viewer implementation
        @rtype EricTextEditType
        """
        return self._viewerType

eric ide

mercurial