src/eric7/QScintilla/MarkupProviders/MarkupBase.py

branch
eric7
changeset 10324
168b6f6701c6
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10323:41974276b558 10324:168b6f6701c6
84 @param editor reference to the editor to work on 84 @param editor reference to the editor to work on
85 @type Editor 85 @type Editor
86 """ 86 """
87 pass 87 pass
88 88
89 def hasUnderline(self):
90 """
91 Public method to indicate the availability of underline markup.
92
93 @return flag indicating the availability of underline markup
94 @rtype bool
95 """
96 return False
97
98 def underline(self, editor):
99 """
100 Public method to generate underline text.
101
102 @param editor reference to the editor to work on
103 @type Editor
104 """
105 pass
106
89 def headerLevels(self): 107 def headerLevels(self):
90 """ 108 """
91 Public method to determine the available header levels. 109 Public method to determine the available header levels.
92 110
93 @return supported header levels 111 @return supported header levels

eric ide

mercurial