eric7/HelpViewer/HelpViewerImpl.py

branch
eric7
changeset 8693
d51660d6f1b9
parent 8683
e8a907801549
child 8696
7e88f292b1b1
--- a/eric7/HelpViewer/HelpViewerImpl.py	Sat Oct 16 20:37:32 2021 +0200
+++ b/eric7/HelpViewer/HelpViewerImpl.py	Sat Oct 16 20:38:23 2021 +0200
@@ -123,6 +123,26 @@
         """
         raise RuntimeError("Not implemented")
     
+    def isBackwardAvailable(self):
+        """
+        Public method to check, if stepping backward through the history is
+        available.
+        
+        @exception RuntimeError raised when not implemented
+        """
+        raise RuntimeError("Not implemented")
+        return False
+    
+    def isForwardAvailable(self):
+        """
+        Public method to check, if stepping forward through the history is
+        available.
+        
+        @exception RuntimeError raised when not implemented
+        """
+        raise RuntimeError("Not implemented")
+        return False
+    
     def scaleUp(self):
         """
         Public method to zoom in.
@@ -139,6 +159,16 @@
         """
         raise RuntimeError("Not implemented")
     
+    def setScale(self, scale):
+        """
+        Public method to set the zoom level.
+        
+        @param scale zoom level to set
+        @type int
+        @exception RuntimeError raised when not implemented
+        """
+        raise RuntimeError("Not implemented")
+    
     def resetScale(self):
         """
         Public method to reset the zoom level.

eric ide

mercurial