QScintilla/MarkupProviders/MarkupBase.py

changeset 5411
a163fbbf2bea
parent 5407
f833f89571b8
child 6048
82ad8ec9548c
--- a/QScintilla/MarkupProviders/MarkupBase.py	Tue Jan 10 15:35:08 2017 +0100
+++ b/QScintilla/MarkupProviders/MarkupBase.py	Tue Jan 10 19:15:17 2017 +0100
@@ -214,3 +214,39 @@
         @type Editor
         """
         pass
+    
+    def hasBulletedList(self):
+        """
+        Public method to indicate the availability of bulleted list markup.
+        
+        @return flag indicating the availability of bulleted list markup
+        @rtype bool
+        """
+        return False
+    
+    def bulletedList(self, editor):
+        """
+        Public method to generate bulleted list text.
+        
+        @param editor reference to the editor to work on
+        @type Editor
+        """
+        pass
+    
+    def hasNumberedList(self):
+        """
+        Public method to indicate the availability of numbered list markup.
+        
+        @return flag indicating the availability of numbered list markup
+        @rtype bool
+        """
+        return False
+    
+    def numberedList(self, editor):
+        """
+        Public method to generate numbered list text.
+        
+        @param editor reference to the editor to work on
+        @type Editor
+        """
+        pass

eric ide

mercurial