QScintilla/MarkupProviders/MarkupBase.py

changeset 5407
f833f89571b8
parent 5404
6b19ad5470a3
child 5411
a163fbbf2bea
diff -r 8d09a23a8fdd -r f833f89571b8 QScintilla/MarkupProviders/MarkupBase.py
--- a/QScintilla/MarkupProviders/MarkupBase.py	Sun Jan 08 18:51:55 2017 +0100
+++ b/QScintilla/MarkupProviders/MarkupBase.py	Sun Jan 08 18:52:16 2017 +0100
@@ -178,4 +178,39 @@
         @type Editor
         """
         pass
-
+    
+    def hasQuote(self):
+        """
+        Public method to indicate the availability of block quote markup.
+        
+        @return flag indicating the availability of block quote markup
+        @rtype bool
+        """
+        return False
+    
+    def quote(self, editor):
+        """
+        Public method to generate block quote text.
+        
+        @param editor reference to the editor to work on
+        @type Editor
+        """
+        pass
+    
+    def hasImage(self):
+        """
+        Public method to indicate the availability of image markup.
+        
+        @return flag indicating the availability of image markup
+        @rtype bool
+        """
+        return False
+    
+    def image(self, editor):
+        """
+        Public method to generate image text.
+        
+        @param editor reference to the editor to work on
+        @type Editor
+        """
+        pass

eric ide

mercurial