QScintilla/MarkupProviders/MarkupBase.py

changeset 5404
6b19ad5470a3
parent 5402
ce21a78a5fcf
child 5407
f833f89571b8
equal deleted inserted replaced
5403:d6b43ecf2488 5404:6b19ad5470a3
122 122
123 @param editor reference to the editor to work on 123 @param editor reference to the editor to work on
124 @type Editor 124 @type Editor
125 """ 125 """
126 pass 126 pass
127
128 def hasCodeBlock(self):
129 """
130 Public method to indicate the availability of code block markup.
131
132 @return flag indicating the availability of code block markup
133 @rtype bool
134 """
135 return False
136
137 def codeBlock(self, editor):
138 """
139 Public method to generate code block text.
140
141 @param editor reference to the editor to work on
142 @type Editor
143 """
144 pass
145
146 def hasHyperlink(self):
147 """
148 Public method to indicate the availability of hyperlink markup.
149
150 @return flag indicating the availability of hyperlink markup
151 @rtype bool
152 """
153 return False
154
155 def hyperlink(self, editor):
156 """
157 Public method to generate hyperlink text.
158
159 @param editor reference to the editor to work on
160 @type Editor
161 """
162 pass
163
164 def hasLine(self):
165 """
166 Public method to indicate the availability of a horizontal line markup.
167
168 @return flag indicating the availability of a horizontal line markup
169 @rtype bool
170 """
171 return False
172
173 def line(self, editor):
174 """
175 Public method to generate a horizontal line text.
176
177 @param editor reference to the editor to work on
178 @type Editor
179 """
180 pass
181

eric ide

mercurial