QScintilla/MarkupProviders/MarkupBase.py

changeset 5411
a163fbbf2bea
parent 5407
f833f89571b8
child 6048
82ad8ec9548c
equal deleted inserted replaced
5409:c6f4a6f0d051 5411:a163fbbf2bea
212 212
213 @param editor reference to the editor to work on 213 @param editor reference to the editor to work on
214 @type Editor 214 @type Editor
215 """ 215 """
216 pass 216 pass
217
218 def hasBulletedList(self):
219 """
220 Public method to indicate the availability of bulleted list markup.
221
222 @return flag indicating the availability of bulleted list markup
223 @rtype bool
224 """
225 return False
226
227 def bulletedList(self, editor):
228 """
229 Public method to generate bulleted list text.
230
231 @param editor reference to the editor to work on
232 @type Editor
233 """
234 pass
235
236 def hasNumberedList(self):
237 """
238 Public method to indicate the availability of numbered list markup.
239
240 @return flag indicating the availability of numbered list markup
241 @rtype bool
242 """
243 return False
244
245 def numberedList(self, editor):
246 """
247 Public method to generate numbered list text.
248
249 @param editor reference to the editor to work on
250 @type Editor
251 """
252 pass

eric ide

mercurial